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

.backdrop_old_e6bd:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.aside_7169):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. */
.aside_7169,
header,
.bright-3542,
.detail-hot-f674,
.detail_c1dd,
.paragraph-f0bd,
.tertiary-39fe,
.hard_c5af,
.main_741c {
  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
   ============================================ */
.aside_7169 {
  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);
}

.texture-1a56 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.pagination-9faf {
  flex: 1;
}

.section-hard-afe4 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

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

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

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

/* Dropdown Navigation */
.texture-purple-2940 {
  position: relative;
}

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

.hero-a9a6 svg {
  transition: transform 0.2s ease;
}

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

.detail-brown-28bb {
  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;
}

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

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

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

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

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

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

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

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

.down_14d7 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.primary-warm-f39e {
  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;
}

.primary-warm-f39e: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);
}

.primary-warm-f39e svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.list-dark-ef88 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.title_gold_48d8[aria-expanded="true"] .list-dark-ef88:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.title_gold_48d8[aria-expanded="true"] .list-dark-ef88:nth-child(2) {
  opacity: 0;
}

.title_gold_48d8[aria-expanded="true"] .list-dark-ef88:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .pagination-9faf::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .pagination-9faf.container_lite_ba51 {
    display: block;
    right: 0;
  }
  
  .section-hard-afe4 {
    flex-direction: column;
    gap: 0;
  }
  
  .dropdown_0b4b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .pagination-9faf::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;
  }
  
  .pagination-9faf.container_lite_ba51::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .pagination-9faf {
    display: none;
  }
  
  .title_gold_48d8 {
    display: flex;
  }
  
  .down-6578 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .down_14d7,
  .primary-warm-f39e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .texture-purple-2940 {
    position: relative;
  }
  
  .detail-brown-28bb {
    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;
  }
  
  .hero-a9a6[aria-expanded="true"] + .detail-brown-28bb {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .clean-8ce7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .notice-b1bf {
    gap: 8px;
  }
  
  .down_14d7 {
    display: none;
  }
  
  .primary-warm-f39e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .cold_b28f img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .primary-warm-f39e {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .primary-warm-f39e svg {
    width: 14px;
    height: 14px;
  }
  
  .header_left_f429 {
    gap: var(--space-sm);
  }
}

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

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

.dim-2778 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dim-2778 svg {
  flex-shrink: 0;
}

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

.dim-2778 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper_1765 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tall-3b08 {
  position: relative;
  text-align: center;
}

.tall-3b08 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

@media (max-width: 968px) {
  .thick_732f {
    grid-template-columns: 1fr;
  }
  
  .left-23e5 {
    font-size: 1.75rem;
  }
  
  .paper_1765 {
    order: -1;
    max-width: 100%;
  }
  
  .tall-3b08 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .left-23e5 {
    font-size: 1.5rem;
  }
  
  .glass-df31 {
    font-size: 1rem;
  }
  
  .glass_54d0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tall-3b08 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.pattern-last-08c4 {
  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;
}

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

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

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

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

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

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

.breadcrumb-18c8 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.accent-easy-3d84 {
  list-style: none;
  counter-reset: toc-counter;
}

.accent-easy-3d84 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.accent-easy-3d84 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);
}

.accent-easy-3d84 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;
}

.accent-easy-3d84 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.hero-bottom-b9dc {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.chip-yellow-d47b img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.chip-yellow-d47b 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);
}

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

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

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

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

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

.chip-yellow-d47b strong {
  font-weight: 600;
  color: var(--color-text);
}

.chip-yellow-d47b a {
  color: var(--color-primary);
  text-decoration: underline;
}

.chip-yellow-d47b a:hover {
  color: var(--color-primary-dark);
}

.text-small-52f4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.text-small-52f4 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) {
  .summary-next-9366 {
    grid-template-columns: 1fr;
  }
  
  .element_c62d {
    font-size: 1.75rem;
  }
  
  .chip-yellow-d47b {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .element_c62d {
    font-size: 1.5rem;
  }
  
  .chip-yellow-d47b h3 {
    font-size: 1.375rem;
  }
  
  .chip-yellow-d47b h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.over-9531 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.row-a79c {
  flex-shrink: 0;
}

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

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

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

.column_ab5a,
.thumbnail-prev-6507,
.preview-7376 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.column_ab5a thead,
.thumbnail-prev-6507 thead {
  background: var(--color-primary);
  color: white;
}

.column_ab5a th,
.column_ab5a td,
.thumbnail-prev-6507 th,
.thumbnail-prev-6507 td,
.preview-7376 th,
.preview-7376 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .column_ab5a th,
  .column_ab5a td,
  .thumbnail-prev-6507 th,
  .thumbnail-prev-6507 td,
  .preview-7376 th,
  .preview-7376 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .column_ab5a,
  .thumbnail-prev-6507,
  .preview-7376 {
    min-width: 600px;
  }
}

.column_ab5a th,
.thumbnail-prev-6507 th,
.preview-7376 th {
  font-weight: 600;
}

.column_ab5a tbody tr:hover,
.thumbnail-prev-6507 tbody tr:hover,
.preview-7376 tbody tr:hover {
  background: var(--color-bg-alt);
}

.section-new-4a87 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.texture_under_84ca h4 {
  color: white;
}

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

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

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

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

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

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

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

.tabs-west-704c:hover {
  text-decoration: underline;
}

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

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

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

.element-95b9 {
  font-weight: 600;
  color: white;
}

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

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

.section_1dc5 {
  color: #4caf50;
}

.layout_old_bd6d {
  color: #ff9800;
}

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

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

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

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

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

.accordion-prev-422e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-east-8177 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.slow_18c2 .pattern-last-08c4 {
  width: 100%;
  background: white;
}

.disabled_92ac .pattern-last-08c4 {
  color: #667eea;
}

.photo_5341 .pattern-last-08c4 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.link-in-f5d3 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.hidden-dynamic-b658 {
  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);
}

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

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

@media (max-width: 768px) {
  .stone_b26e {
    padding: var(--space-md);
  }
  
  .menu-a3d4 {
    padding: var(--space-md);
  }
  
  .light-5329 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.dirty-990d ol,
.dirty-990d ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.dirty-990d li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.search_lite_c95d,
.out-8c75,
.fresh-ca6c,
.in-5c50 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

.red-38b4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

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

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

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

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

.cold-5471 {
  border-color: var(--color-success);
}

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

.sort-out-a7e8 {
  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);
}

.cold-5471 .sort-out-a7e8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_89d9 .sort-out-a7e8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-complex-5f70 {
  margin-top: var(--space-xxl);
}

.hero-over-3c4d {
  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);
}

.active-gold-68a7 {
  text-align: center;
}

.lower-72d4 {
  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);
}

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

.lower-72d4 .element-95b9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .hero-over-3c4d {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

.badge-137c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.glass-2056 {
  border: 2px solid #4caf50;
}

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

.popup_b548 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.thumbnail-hovered-2f73 {
  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;
}

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

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

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

.panel-over-f676 {
  text-align: right;
}

.panel-over-f676 .surface-purple-a5a9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.smooth-4cd4 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.mini-7b12 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.badge-brown-a0c9 {
  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);
}

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

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

.hidden-thick-0512 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.hidden-thick-0512 strong {
  color: var(--color-primary);
}

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

.container-50e8 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.accordion-brown-8d1d {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.tiny-4493[aria-expanded="true"] .pattern-cc1f {
  transform: rotate(180deg);
}

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

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

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

.widget-dim-d2f8 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

.popup-green-4023 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

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

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

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

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

.over-f020,
.pressed_33ae {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.over-f020 h4,
.pressed_33ae h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.over-f020 ul,
.pressed_33ae ul {
  list-style: none;
  padding: 0;
}

.over-f020 li,
.pressed_33ae li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.tertiary-blue-1c42 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.row-prev-31a7 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.button-gas-e4c8 {
  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);
}

.button-gas-e4c8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.button-gas-e4c8 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.mask_3405 .content_42b4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.layout-356f {
  list-style: none;
  padding: 0;
}

.layout-356f li {
  margin-bottom: var(--space-xs);
}

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

.layout-356f a:hover {
  color: white;
}

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

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

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

.logo_8425 a:hover {
  color: white;
}

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

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

.surface-next-45fd a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .backdrop-8681 {
    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;
  }
  
  .left-23e5 {
    font-size: 2rem;
  }
  
  .element_c62d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .thick_732f,
  .summary-next-9366 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .badge_ec40,
  .purple-35fb,
  .gas_ae2b,
  .pattern-a97b,
  .feature-9ac1,
  .caption_lower_205e,
  .paragraph-soft-b361,
  .banner-east-7acc {
    grid-template-columns: 1fr;
  }
  
  .frame-e355 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tertiary-39fe {
    padding: var(--space-lg) 0;
  }
  
  .accent-easy-3d84 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .accent-easy-3d84 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pattern-last-08c4 {
    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;
  }
  
  .frame-e355 {
    grid-template-columns: 1fr;
  }
  
  .photo_thick_3c4b,
  .column_steel_b9bd,
  .red-38b4 {
    flex-direction: column;
    width: 100%;
  }
  
  .breadcrumb-18c8,
  .hero_0a7b,
  .photo_thick_3c4b .pattern-last-08c4,
  .column_steel_b9bd .pattern-last-08c4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .left-23e5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element_c62d {
    font-size: 1.375rem;
  }
  
  .description_08e5 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .highlight_3ef4,
  .notification-fd1d,
  .bronze_b341,
  .east_86d9,
  .header-4a4d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .input-f398 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .black-0500 {
    gap: var(--space-xs);
  }
  
  .dim-2778 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .clean_2b2c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .lower-72d4 {
    width: 150px;
    height: 150px;
  }
  
  .image_7e0a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .aside_7169,
  .bright-3542,
  .photo_thick_3c4b,
  .current_d0ae,
  .hard_c5af,
  .main_741c,
  .title_gold_48d8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tertiary-39fe {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 241a */
.promo-block-b9 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.2;
}
