/* ============================================
   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)
   ============================================ */
.hidden-warm-5173 {
  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;
}

.hidden-warm-5173:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.component_under_4b4a,
header,
.up-65be,
.mini-5e0c,
.filter-7fcd,
.up-3991,
.header-b7d8,
.solid-9adf,
.popup-small-61fd {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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
   ============================================ */
.component_under_4b4a {
  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);
}

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

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

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

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

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

.brown-57e9 img {
  height: 36px;
  width: auto;
  display: block;
}

.column_6265 {
  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;
}

.simple-52e2 {
  flex: 1;
}

.up-5f5e {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.disabled-99aa {
  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);
}

.disabled-99aa:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.disabled-99aa.icon-center-56ae {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.over_cbb5 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.focused_8003 {
  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;
}

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

.focused_8003 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.clean-4bfe {
  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;
}

.clean-4bfe: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);
}

.clean-4bfe svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.simple-8147 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.pattern-8fc1[aria-expanded="true"] .simple-8147:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.pattern-8fc1[aria-expanded="true"] .simple-8147:nth-child(2) {
  opacity: 0;
}

.pattern-8fc1[aria-expanded="true"] .simple-8147:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .simple-52e2 {
    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 */
  }

  .simple-52e2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .simple-52e2.component-8955 {
    display: block;
    right: 0;
  }
  
  .up-5f5e {
    flex-direction: column;
    gap: 0;
  }
  
  .disabled-99aa {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .simple-52e2::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;
  }
  
  .simple-52e2.component-8955::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .simple-52e2 {
    display: none;
  }
  
  .pattern-8fc1 {
    display: flex;
  }
  
  .column_6265 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .focused_8003,
  .clean-4bfe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .feature_23f8 {
    position: relative;
  }
  
  .over_cbb5 {
    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;
  }
  
  .menu_b084[aria-expanded="true"] + .over_cbb5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .paragraph_b4c2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tooltip_083f {
    gap: 8px;
  }
  
  .focused_8003 {
    display: none;
  }
  
  .clean-4bfe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .brown-57e9 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .clean-4bfe {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .clean-4bfe svg {
    width: 14px;
    height: 14px;
  }
  
  .article-e8c2 {
    gap: var(--space-sm);
  }
}

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

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

.hero-9400 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-9400 svg {
  flex-shrink: 0;
}

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

.hero-9400 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.narrow-8405 a:hover {
  text-decoration: underline;
}

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

.medium_bde7 {
  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) {
  .medium_bde7 {
    font-size: 2rem;
  }
}

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

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

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

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

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

.gas_abfe {
  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;
}

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

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

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

.fluid-a415 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.carousel-green-922f {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-1bc9 {
  position: relative;
  text-align: center;
}

.advanced-1bc9 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

@media (max-width: 968px) {
  .image-4dcd {
    grid-template-columns: 1fr;
  }
  
  .medium_bde7 {
    font-size: 1.75rem;
  }
  
  .carousel-green-922f {
    order: -1;
    max-width: 100%;
  }
  
  .advanced-1bc9 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .medium_bde7 {
    font-size: 1.5rem;
  }
  
  .fixed-0c71 {
    font-size: 1rem;
  }
  
  .narrow-8405 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .advanced-1bc9 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.paragraph_dirty_c644 {
  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;
}

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

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

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

.detail-6508:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.link-inner-3b2f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.small_0519 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);
}

.small_0519 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;
}

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

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

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

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

.modal-fc94 {
  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);
}

.soft-e56b {
  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);
}

.video_cee8 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.purple_c82a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.purple_c82a 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);
}

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

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

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

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

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

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

.purple_c82a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.purple_c82a a:hover {
  color: var(--color-primary-dark);
}

.focus_058d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.focus_058d 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) {
  .row_down_96a8 {
    grid-template-columns: 1fr;
  }
  
  .soft-e56b {
    font-size: 1.75rem;
  }
  
  .purple_c82a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .soft-e56b {
    font-size: 1.5rem;
  }
  
  .purple_c82a h3 {
    font-size: 1.375rem;
  }
  
  .purple_c82a h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.message-motion-9415 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.hidden-old-ccf4 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.focus_medium_2673 {
  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;
}

.static-3e84 {
  flex-shrink: 0;
}

.full-0fdf strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.hero_109b,
.texture-pro-9773,
.image_up_a4ee {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero_109b thead,
.texture-pro-9773 thead {
  background: var(--color-primary);
  color: white;
}

.hero_109b th,
.hero_109b td,
.texture-pro-9773 th,
.texture-pro-9773 td,
.image_up_a4ee th,
.image_up_a4ee td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero_109b th,
  .hero_109b td,
  .texture-pro-9773 th,
  .texture-pro-9773 td,
  .image_up_a4ee th,
  .image_up_a4ee td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hero_109b,
  .texture-pro-9773,
  .image_up_a4ee {
    min-width: 600px;
  }
}

.hero_109b th,
.texture-pro-9773 th,
.image_up_a4ee th {
  font-weight: 600;
}

.hero_109b tbody tr:hover,
.texture-pro-9773 tbody tr:hover,
.image_up_a4ee tbody tr:hover {
  background: var(--color-bg-alt);
}

.copper-1ab6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.accordion_9eb8 h4 {
  color: white;
}

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

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

.hidden_b088:last-child {
  border-bottom: none;
}

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

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

.container-gold-3e08 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.banner-full-b83b:hover {
  text-decoration: underline;
}

.button-motion-41e1 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.lower_fb7b {
  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);
}

.lower_fb7b span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.description_pro_aa3c {
  font-weight: 600;
  color: white;
}

.texture_4168 {
  list-style: none;
  padding: 0;
}

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

.current-1399 {
  color: #4caf50;
}

.filter-a6b0 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.picture-down-d409:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.table-bronze-7e8a {
  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;
}

.picture-down-d409 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.picture-down-d409 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery_paper_aa07 .paragraph_dirty_c644 {
  width: 100%;
  background: white;
}

.pressed-9566 .paragraph_dirty_c644 {
  color: #667eea;
}

.liquid-2791 .paragraph_dirty_c644 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.slider-22a6 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.overlay_8f5c {
  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);
}

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

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

@media (max-width: 768px) {
  .clean-d7be {
    padding: var(--space-md);
  }
  
  .pagination_0cc4 {
    padding: var(--space-md);
  }
  
  .basic_1f6e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.box-63bb ol,
.box-63bb ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.box-63bb li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.info_c771,
.layout-7c1a,
.banner-d1ac,
.progress-0900 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.steel_588c {
  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) {
  .steel_588c {
    font-size: 0.625rem;
  }
}

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

.slider-e539:hover {
  background: var(--color-primary-dark);
}

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

.soft-72d1 h4 {
  margin-bottom: var(--space-md);
}

.filter-bronze-cb22 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

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

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

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

.short-5c59 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.next-5e4a {
  border-color: var(--color-success);
}

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

.icon_hot_dfeb {
  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);
}

.next-5e4a .icon_hot_dfeb {
  background: #e8f5e9;
  color: var(--color-success);
}

.avatar_blue_0d77 .icon_hot_dfeb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

.short-5c59 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.sort-easy-66b6 {
  margin-top: var(--space-xxl);
}

.feature-dynamic-a280 {
  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);
}

.mini_e60e {
  text-align: center;
}

.short_1c3e {
  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);
}

.pattern-40ac {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.short_1c3e .description_pro_aa3c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.preview-8b9e {
  margin-bottom: var(--space-xl);
}

.module-bright-cfc3 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

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

.fresh-b371 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.shadow-5ddf {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.gas-39b0 {
  border: 2px solid #4caf50;
}

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

.border-fluid-a42a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.media-pink-cc67 {
  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;
}

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

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

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

.lower_641e {
  text-align: right;
}

.lower_641e .feature-outer-1a0e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.selected-1372 {
  background: #e3f2fd;
  color: #1565c0;
}

.wide_41e5 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.south-b20a {
  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);
}

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

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

.picture-over-ce80 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.picture-over-ce80 strong {
  color: var(--color-primary);
}

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

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

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

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

.fast_9b79 {
  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);
}

.fast_9b79:hover {
  background: var(--color-bg-alt);
}

.media-black-46f9 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.fast_9b79[aria-expanded="true"] .media-black-46f9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

.warm-916a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.box-inner-5eb2 {
  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);
}

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

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

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

.pressed-0979,
.element-8bf5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pressed-0979 h4,
.element-8bf5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pressed-0979 ul,
.element-8bf5 ul {
  list-style: none;
  padding: 0;
}

.pressed-0979 li,
.element-8bf5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

.feature-slow-e8d8 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

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

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

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

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

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

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

.table_aa42 {
  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);
}

.mask_left_a1d0 {
  font-style: italic;
}

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

.container_static_6b04 {
  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;
}

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

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

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

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.solid-9adf {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

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

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

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

.title-d321 {
  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);
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .summary_7173 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.full_7cfa {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.full_7cfa .full_934e {
  color: #4caf50;
  font-size: 0.875rem;
}

.media_solid_027b {
  list-style: none;
  padding: 0;
}

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

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

.media_solid_027b a:hover {
  color: white;
}

.glass-3346 {
  list-style: none;
  padding: 0;
}

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

.glass-3346 a {
  color: #b0b0b0;
  text-decoration: none;
}

.glass-3346 a:hover {
  color: white;
}

.purple_1eb2 {
  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);
}

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

.active_pro_7dbd a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .purple_1eb2 {
    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;
  }
  
  .medium_bde7 {
    font-size: 2rem;
  }
  
  .soft-e56b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .image-4dcd,
  .row_down_96a8 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary_bottom_5b69,
  .picture_south_c526,
  .dim-d32d,
  .glass-8986,
  .wrapper_bronze_c71b,
  .overlay-inner-6557,
  .solid_6ffa,
  .summary_7173 {
    grid-template-columns: 1fr;
  }
  
  .next-184c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .header-b7d8 {
    padding: var(--space-lg) 0;
  }
  
  .small_0519 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .small_0519 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paragraph_dirty_c644 {
    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;
  }
  
  .next-184c {
    grid-template-columns: 1fr;
  }
  
  .fluid-a415,
  .overlay-5949,
  .filter-bronze-cb22 {
    flex-direction: column;
    width: 100%;
  }
  
  .bright-d7d9,
  .first_a3e8,
  .fluid-a415 .paragraph_dirty_c644,
  .overlay-5949 .paragraph_dirty_c644 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .medium_bde7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .soft-e56b {
    font-size: 1.375rem;
  }
  
  .icon-medium-4093 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .banner_428a,
  .picture-down-d409,
  .breadcrumb_e01d,
  .border_7d67,
  .tiny_6cf9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .steel_588c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .mask_prev_d4f6 {
    gap: var(--space-xs);
  }
  
  .hero-9400 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .lower_fb7b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .short_1c3e {
    width: 150px;
    height: 150px;
  }
  
  .pattern-40ac {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .component_under_4b4a,
  .up-65be,
  .fluid-a415,
  .container_static_6b04,
  .solid-9adf,
  .popup-small-61fd,
  .pattern-8fc1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .header-b7d8 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.warm_ba39 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: bd9e */
.widget-item-r5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.2;
}
