/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.texture-e5d7 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.texture-e5d7:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.label_b343 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .label_b343 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .label_b343 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.frame-48f7):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.frame-48f7,
header,
.purple-1e8f,
.hot-8536,
.box_fca7,
.east_1ca1,
.block_7e26,
.link-right-ae7d,
.secondary-c6ee {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.frame-48f7 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

.complex-d652 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.frame-48f7.shadow_4352 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.shade_2cb5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.chip_complex_8df4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo_red_60d7 img {
  height: 36px;
  width: auto;
  display: block;
}

.thumbnail_9f89 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.warm-464a {
  flex: 1;
}

.table-hovered-e95e {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.nav-fd52 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-fd52:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-fd52.fn-active-9491 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.huge_6ff1 {
  position: relative;
}

.text_wood_48b1 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.text_wood_48b1 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.huge_6ff1:hover .text_wood_48b1 svg,
.text_wood_48b1[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.slow-037f {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.huge_6ff1:hover .slow-037f {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.slow-037f::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.warm-6686 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.warm-6686:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.warm-6686[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.tabs_stone_d819 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.frame-fast-e04d {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.frame-fast-e04d:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.frame-fast-e04d svg {
  flex-shrink: 0;
}

/* Header Download Button */
.down-8ec5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.down-8ec5:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.down-8ec5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.breadcrumb-gold-eee0 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.progress-54b9 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.breadcrumb-gold-eee0[aria-expanded="true"] .progress-54b9:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.breadcrumb-gold-eee0[aria-expanded="true"] .progress-54b9:nth-child(2) {
  opacity: 0;
}

.breadcrumb-gold-eee0[aria-expanded="true"] .progress-54b9:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .warm-464a {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .warm-464a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .warm-464a.container_48d9 {
    display: block;
    right: 0;
  }
  
  .table-hovered-e95e {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-fd52 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .warm-464a::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .warm-464a.container_48d9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .warm-464a {
    display: none;
  }
  
  .breadcrumb-gold-eee0 {
    display: flex;
  }
  
  .thumbnail_9f89 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .frame-fast-e04d,
  .down-8ec5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .huge_6ff1 {
    position: relative;
  }
  
  .slow-037f {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .text_wood_48b1[aria-expanded="true"] + .slow-037f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm-6686 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tabs_stone_d819 {
    gap: 8px;
  }
  
  .frame-fast-e04d {
    display: none;
  }
  
  .down-8ec5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .logo_red_60d7 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .down-8ec5 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .down-8ec5 svg {
    width: 14px;
    height: 14px;
  }
  
  .shade_2cb5 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.purple-1e8f {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.wrapper_22a8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.title-lite-7342 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.title-lite-7342 svg {
  flex-shrink: 0;
}

.title-lite-7342 a {
  color: var(--color-primary);
  text-decoration: none;
}

.title-lite-7342 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wrapper_22a8 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hot-8536 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.component-83e2 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .component-83e2 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.sort_fluid_0992 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.sort_fluid_0992 a {
  color: var(--color-primary);
  text-decoration: none;
}

.sort_fluid_0992 a:hover {
  text-decoration: underline;
}

.top_d38a {
  color: var(--color-text-lighter);
}

.popup-0a87 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .popup-0a87 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .popup-0a87 {
    font-size: 1.5rem;
  }
}

.title_a443 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.status_hard_e1a9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .status_hard_e1a9 {
    grid-template-columns: 1fr;
  }
}

.backdrop-f542 {
  display: flex;
  gap: var(--space-sm);
}

.basic-0849 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.input_08f6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.input_08f6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.input_08f6 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.focus-3c68 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.search-dynamic-6011 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-last-ad6e {
  position: relative;
  text-align: center;
}

.icon-last-ad6e img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.surface_7378 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.alert-light-5391 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.wide_6f29 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.progress_soft_f657 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.fixed_185e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.media-6e00 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .component-83e2 {
    grid-template-columns: 1fr;
  }
  
  .popup-0a87 {
    font-size: 1.75rem;
  }
  
  .search-dynamic-6011 {
    order: -1;
    max-width: 100%;
  }
  
  .icon-last-ad6e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .popup-0a87 {
    font-size: 1.5rem;
  }
  
  .title_a443 {
    font-size: 1rem;
  }
  
  .sort_fluid_0992 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .icon-last-ad6e {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.primary_top_bade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.static-fc2a {
  background: var(--color-primary);
  color: white;
}

.static-fc2a:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.thick-b7aa {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.thick-b7aa:hover {
  background: var(--color-primary);
  color: white;
}

.active_d302 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.active_d302:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.last_7838 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.hot_78bc {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.box_fca7 {
  padding: var(--space-xl) 0;
  background: white;
}

.outline-9bab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.box-b0ac {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.box-b0ac:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.slow_766c {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.module_69c9 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.green-b030 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.east_1ca1 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.gradient_5fac {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.progress_pink_6634 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.form_fresh_0ae2 {
  list-style: none;
  counter-reset: toc-counter;
}

.form_fresh_0ae2 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.form_fresh_0ae2 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form_fresh_0ae2 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.form_fresh_0ae2 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.block_7e26 {
  padding: var(--space-xxl) 0;
}

.tertiary_8626 {
  background: var(--color-bg-section);
}

.backdrop-361a {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.highlight_cold_3b89 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.current-eba4 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.primary-out-70ff {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.notice_e304 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .notice_e304 {
    grid-template-columns: 1fr 300px;
  }
}

.bronze-40e8 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.bronze-40e8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bronze-40e8 pre,
.bronze-40e8 code {
  overflow-x: auto;
  max-width: 100%;
}

.bronze-40e8 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

.bronze-40e8 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.bronze-40e8 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.bronze-40e8 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.bronze-40e8 ul,
.bronze-40e8 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.bronze-40e8 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.bronze-40e8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.bronze-40e8 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.bronze-40e8 a:hover {
  color: var(--color-primary-dark);
}

.old-7a6d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.old-7a6d li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.old-7a6d li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

@media (max-width: 968px) {
  .notice_e304 {
    grid-template-columns: 1fr;
  }
  
  .current-eba4 {
    font-size: 1.75rem;
  }
  
  .bronze-40e8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .current-eba4 {
    font-size: 1.5rem;
  }
  
  .bronze-40e8 h3 {
    font-size: 1.375rem;
  }
  
  .bronze-40e8 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.preview-right-8dcd {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.lite_4de1 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.avatar_upper_805c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.copper-ed5b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.action-eaff strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.chip_ea02 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.south-2955 {
  flex-shrink: 0;
}

.huge-ab08 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.green-58cd {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .green-58cd {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.slider_rough_9edb,
.west_3286,
.narrow_eb7f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.slider_rough_9edb thead,
.west_3286 thead {
  background: var(--color-primary);
  color: white;
}

.slider_rough_9edb th,
.slider_rough_9edb td,
.west_3286 th,
.west_3286 td,
.narrow_eb7f th,
.narrow_eb7f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .slider_rough_9edb th,
  .slider_rough_9edb td,
  .west_3286 th,
  .west_3286 td,
  .narrow_eb7f th,
  .narrow_eb7f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .slider_rough_9edb,
  .west_3286,
  .narrow_eb7f {
    min-width: 600px;
  }
}

.slider_rough_9edb th,
.west_3286 th,
.narrow_eb7f th {
  font-weight: 600;
}

.slider_rough_9edb tbody tr:hover,
.west_3286 tbody tr:hover,
.narrow_eb7f tbody tr:hover {
  background: var(--color-bg-alt);
}

.inner-50b5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.status-c8db {
  position: sticky;
  top: 80px;
  align-self: start;
}

.paragraph_a90f {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.paragraph_a90f h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.thumbnail-hovered-5679 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.thumbnail-hovered-5679 h4 {
  color: white;
}

.logo_f8d1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.banner-098f {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.banner-098f:last-child {
  border-bottom: none;
}

.banner-098f dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.banner-098f dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.text_black_6f35 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.icon_7802 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.icon_7802:hover {
  text-decoration: underline;
}

.liquid-11b0 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.media-left-65ba {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.media-left-65ba span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.paragraph-rough-e421 {
  font-weight: 600;
  color: white;
}

.slider-b5bc {
  list-style: none;
  padding: 0;
}

.slider-b5bc li {
  padding: var(--space-xs) 0;
}

.shadow_light_5ed5 {
  color: #4caf50;
}

.brown_62c5 {
  color: #ff9800;
}

.full_2040 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.red-1379 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.input-out-f695 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.stale_68bb {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.block_8034 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.soft-07dd {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.text_basic_ad2f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .text_basic_ad2f {
    grid-template-columns: 1fr;
  }
}

.aside-static-7133 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.aside-static-7133:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stale_93c0 {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 48px;
  height: 48px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0.3;
}

.aside-static-7133 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.aside-static-7133 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.easy_2b41 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.paragraph-rough-e421 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.gas_d86f {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.outline_6f2d {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.outline_6f2d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.component-2c63 {
  max-width: 900px;
  margin: 0 auto;
}

.form-over-b66b {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.sort-fresh-dbe1 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .sort-fresh-dbe1 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.module_west_08b7 {
  margin-top: var(--space-xxl);
}

.module_west_08b7 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.frame_6aad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .frame_6aad {
    grid-template-columns: 1fr;
  }
}

.frame_south_fa93 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.texture_d3d6 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.inner_a2ba {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.frame_south_fa93 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.frame_south_fa93 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.frame_south_fa93 li {
  padding: var(--space-xs) 0;
  color: white;
}

.frame_south_fa93 .primary_top_bade {
  width: 100%;
  background: white;
}

.texture_d3d6 .primary_top_bade {
  color: #667eea;
}

.inner_a2ba .primary_top_bade {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.basic-87da {
  max-width: 900px;
  margin: 0 auto;
}

.backdrop-active-8ad5 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.layout_7188 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.dark_63f2 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.layout_7188 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.copper-daa2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .layout_7188 {
    padding: var(--space-md);
  }
  
  .copper-daa2 {
    padding: var(--space-md);
  }
  
  .heading_medium_fa16 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.image-d0d1 ol,
.image-d0d1 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.image-d0d1 li {
  margin-bottom: var(--space-sm);
}

.image-d0d1 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.link-674c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.middle_d86d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.heading_medium_fa16 {
  margin-top: var(--space-lg);
  text-align: center;
}

.heading_medium_fa16 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.copper_3c6c,
.sidebar_medium_315c,
.plasma_6383,
.detail_4e7b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.video_b62b {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.backdrop_yellow_57da {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.feature_9738 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .feature_9738 {
    font-size: 0.625rem;
  }
}

.heading-lower-e227 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.heading-lower-e227:hover {
  background: var(--color-primary-dark);
}

.modal_over_af72 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.modal_over_af72 h4 {
  margin-bottom: var(--space-md);
}

.carousel-hard-4983 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.notice-large-ec8f {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.gallery-solid-a4eb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .gallery-solid-a4eb {
    grid-template-columns: 1fr;
  }
}

.texture-307f {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.header-stale-b8d4 {
  border-color: var(--color-success);
}

.content_last_e0fe {
  border-color: var(--color-warning);
}

.accordion-solid-9f88 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.header-stale-b8d4 .accordion-solid-9f88 {
  background: #e8f5e9;
  color: var(--color-success);
}

.content_last_e0fe .accordion-solid-9f88 {
  background: #fff3e0;
  color: var(--color-warning);
}

.texture-307f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.texture-307f p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.surface_aba2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.row_52a3 {
  margin: var(--space-xxl) 0;
}

.row_52a3 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.row_52a3 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.large_c999 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .large_c999 {
    grid-template-columns: 1fr;
  }
}

.footer_complex_a9ab {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.footer_complex_a9ab h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.clean-dd40 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.clean-dd40 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.panel-a542 {
  margin-top: var(--space-xxl);
}

.tooltip-easy-447f {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-xl);
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.button_2983 {
  text-align: center;
}

.chip-iron-8ca9 {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.box-684d {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.chip-iron-8ca9 .paragraph-rough-e421 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.filter-8ceb {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.primary-ee9c p {
  margin-bottom: var(--space-md);
}

.link_stale_8bc2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .tooltip-easy-447f {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.white_47c8 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.texture_fe38 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.steel_75a2 {
  margin-bottom: var(--space-xl);
}

.status-stone-522a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.picture-a71c {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.primary-f39d {
  color: var(--color-text-light);
}

.panel-7dce {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.panel_5e21 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.iron_3de6 {
  font-weight: 600;
  color: var(--color-text);
}

.notice-c8c9 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.over_4280 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.hero_f0f5 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.easy-9604 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.caption-7274 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.plasma-cb3b {
  border: 2px solid #4caf50;
}

.active-e377 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.accordion-purple-1b12 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.wrapper-2d67 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.description-rough-4afd {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.tall-fd9d {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.under-4aa8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.bottom_669f {
  text-align: right;
}

.bottom_669f .feature_current_da3b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.fixed_54cc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.modal_tiny_a862 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.modal_tiny_a862 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.thumbnail_west_c93d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.picture_4e9c {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.image_f6e5 {
  background: #e8f5e9;
  color: #2e7d32;
}

.row_d56e {
  background: #e3f2fd;
  color: #1565c0;
}

.card-next-6d72 {
  background: #fff3e0;
  color: #e65100;
}

.widget-hovered-2b27 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.widget-hovered-2b27 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.alert_black_8ba7 {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.alert_black_8ba7:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.gradient-inner-fa6a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.image-paper-8c98 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.image-paper-8c98 strong {
  color: var(--color-primary);
}

.yellow_d9c2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.small-b40f {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.frame_silver_1ff2 {
  max-width: 900px;
  margin: 0 auto;
}

.content_b23e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.notification-cold-a6c6 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

.notification-cold-a6c6:hover {
  background: var(--color-bg-alt);
}

.top_94b5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.notification-cold-a6c6[aria-expanded="true"] .top_94b5 {
  transform: rotate(180deg);
}

.complex_fb0e {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.complex_fb0e h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.complex_fb0e ul,
.complex_fb0e ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.complex_fb0e li {
  margin-bottom: var(--space-xs);
}

.liquid_586c {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.sidebar-8b73 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.liquid_586c code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.heading-28cb {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.fresh-7be6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.new-fb78 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.sidebar_c9da {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.table-east-6310 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .table-east-6310 {
    grid-template-columns: 1fr;
  }
}

.grid_b4b2,
.alert_01dd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.grid_b4b2 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.alert_01dd {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.grid_b4b2 h4,
.alert_01dd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.grid_b4b2 ul,
.alert_01dd ul {
  list-style: none;
  padding: 0;
}

.grid_b4b2 li,
.alert_01dd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.card_4c95 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .card_4c95 {
    grid-template-columns: 1fr;
  }
}

.caption_easy_cdc5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.pro_63cf {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.badge-dynamic-4011 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.caption_easy_cdc5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.caption_easy_cdc5 ul {
  list-style: none;
  padding: 0;
}

.caption_easy_cdc5 li {
  padding: var(--space-xs) 0;
  color: white;
}

.pagination_red_4b8f {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.pagination_red_4b8f h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.pagination_red_4b8f p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.media_d2cd {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.stale-80a8 {
  font-style: italic;
}

.accordion-south-fd60 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pressed_8837 {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

.pressed_8837 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.pressed_8837 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.dynamic-a36f {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.link-right-ae7d {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.widget-df97 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.advanced_a299 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .advanced_a299 {
    grid-template-columns: 1fr;
  }
}

.prev-f080 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition-base);
}

.prev-f080:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight_top_797e {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.prev-f080 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.prev-f080 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.secondary-c6ee {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.sort-8e24 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.upper_7cf6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.wrapper_prev_d165 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.wrapper_prev_d165 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.form-5b82 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.form-5b82 li {
  margin-bottom: var(--space-xs);
}

.form-5b82 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.form-5b82 a:hover {
  color: white;
}

.heading_4222 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.heading_4222 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.heading_4222 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.old_55a3 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.old_55a3 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.old_55a3 a:hover {
  color: white;
}

.gradient_5350 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .sort-8e24,
  .upper_7cf6 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.current_d509 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.chip_up_1444 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.active-light-3d1a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.active-light-3d1a .backdrop-f542 {
  color: #4caf50;
  font-size: 0.875rem;
}

.popup-517a {
  list-style: none;
  padding: 0;
}

.popup-517a li {
  margin-bottom: var(--space-xs);
}

.popup-517a a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.popup-517a a:hover {
  color: white;
}

.accordion-narrow-b957 {
  list-style: none;
  padding: 0;
}

.accordion-narrow-b957 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.accordion-narrow-b957 a {
  color: #b0b0b0;
  text-decoration: none;
}

.accordion-narrow-b957 a:hover {
  color: white;
}

.gradient_5350 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.component-tiny-a8cf p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.component-tiny-a8cf a {
  color: #4caf50;
  text-decoration: none;
}

.summary_5e9c {
  font-size: 0.75rem;
  color: #666666;
}

.fixed_59cb {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.fixed_59cb a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.fixed_59cb a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.status-mini-a1f1 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.status-mini-a1f1:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gradient_5350 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .popup-0a87 {
    font-size: 2rem;
  }
  
  .current-eba4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component-83e2,
  .notice_e304 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .text_basic_ad2f,
  .gallery-solid-a4eb,
  .frame_6aad,
  .large_c999,
  .table-east-6310,
  .card_4c95,
  .advanced_a299,
  .sort-8e24,
  .upper_7cf6 {
    grid-template-columns: 1fr;
  }
  
  .outline-9bab {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .block_7e26 {
    padding: var(--space-lg) 0;
  }
  
  .form_fresh_0ae2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .form_fresh_0ae2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .primary_top_bade {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .outline-9bab {
    grid-template-columns: 1fr;
  }
  
  .focus-3c68,
  .dynamic-a36f,
  .carousel-hard-4983 {
    flex-direction: column;
    width: 100%;
  }
  
  .last_7838,
  .hot_78bc,
  .focus-3c68 .primary_top_bade,
  .dynamic-a36f .primary_top_bade {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .popup-0a87 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .current-eba4 {
    font-size: 1.375rem;
  }
  
  .slow_766c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .box-b0ac,
  .aside-static-7133,
  .paragraph_a90f,
  .caption-7274,
  .backdrop-active-8ad5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .feature_9738 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper_22a8 {
    gap: var(--space-xs);
  }
  
  .title-lite-7342 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .media-left-65ba {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-iron-8ca9 {
    width: 150px;
    height: 150px;
  }
  
  .box-684d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .frame-48f7,
  .purple-1e8f,
  .focus-3c68,
  .pressed_8837,
  .link-right-ae7d,
  .secondary-c6ee,
  .breadcrumb-gold-eee0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .block_7e26 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2e4e */
.promo-block-x6 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
