/* ============================================
   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)
   ============================================ */
.element_c2c6 {
  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;
}

.element_c2c6:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.background_fluid_b4ab {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .background_fluid_b4ab {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .background_fluid_b4ab {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.picture-beb5):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.picture-beb5,
header,
.input_ac4c,
.advanced-9997,
.heading-plasma-c8e1,
.soft_3984,
.focused_a959,
.brown-7671,
.under-40d9 {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.picture-beb5 {
  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);
}

.module-7dbb {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.picture-beb5.wrapper-blue-ec52 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.hidden_ad9a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.new_bd16 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.label-hovered-1cca img {
  height: 36px;
  width: auto;
  display: block;
}

.hero_pink_b9f5 {
  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;
}

.purple_eeea {
  flex: 1;
}

.accent-yellow-8b3a {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.pattern_2527 {
  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);
}

.pattern_2527:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.pattern_2527.filter-gas-45b7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.large-f63f {
  position: relative;
}

.paragraph_short_b2b7 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.paragraph_short_b2b7 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.large-f63f:hover .paragraph_short_b2b7 svg,
.paragraph_short_b2b7[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.breadcrumb_6978 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.large-f63f:hover .breadcrumb_6978 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.breadcrumb_6978::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.button_a8d2 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.button_a8d2:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.button_a8d2[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.cold_7a78 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.left-76f5 {
  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;
}

.left-76f5:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.left-76f5 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.wrapper-hovered-3d06 {
  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;
}

.wrapper-hovered-3d06: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);
}

.wrapper-hovered-3d06 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.large_6d8f {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.sort_full_1a46 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.large_6d8f[aria-expanded="true"] .sort_full_1a46:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.large_6d8f[aria-expanded="true"] .sort_full_1a46:nth-child(2) {
  opacity: 0;
}

.large_6d8f[aria-expanded="true"] .sort_full_1a46:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .purple_eeea {
    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 */
  }

  .purple_eeea::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .purple_eeea.link_inner_6514 {
    display: block;
    right: 0;
  }
  
  .accent-yellow-8b3a {
    flex-direction: column;
    gap: 0;
  }
  
  .pattern_2527 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .purple_eeea::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;
  }
  
  .purple_eeea.link_inner_6514::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .purple_eeea {
    display: none;
  }
  
  .large_6d8f {
    display: flex;
  }
  
  .hero_pink_b9f5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .left-76f5,
  .wrapper-hovered-3d06 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .large-f63f {
    position: relative;
  }
  
  .breadcrumb_6978 {
    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;
  }
  
  .paragraph_short_b2b7[aria-expanded="true"] + .breadcrumb_6978 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .button_a8d2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .cold_7a78 {
    gap: 8px;
  }
  
  .left-76f5 {
    display: none;
  }
  
  .wrapper-hovered-3d06 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .label-hovered-1cca img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .wrapper-hovered-3d06 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .wrapper-hovered-3d06 svg {
    width: 14px;
    height: 14px;
  }
  
  .hidden_ad9a {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.input_ac4c {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.selected-99bb {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.column-5eac {
  display: flex;
  align-items: center;
  gap: 6px;
}

.column-5eac svg {
  flex-shrink: 0;
}

.column-5eac a {
  color: var(--color-primary);
  text-decoration: none;
}

.column-5eac a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .selected-99bb {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.advanced-9997 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.new_d29c {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .new_d29c {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.row-5e55 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.row-5e55 a {
  color: var(--color-primary);
  text-decoration: none;
}

.row-5e55 a:hover {
  text-decoration: underline;
}

.footer-fresh-5855 {
  color: var(--color-text-lighter);
}

.title_motion_b9c6 {
  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) {
  .title_motion_b9c6 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .title_motion_b9c6 {
    font-size: 1.5rem;
  }
}

.liquid_0f6a {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.wrapper_cool_9cf6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .wrapper_cool_9cf6 {
    grid-template-columns: 1fr;
  }
}

.table_up_f192 {
  display: flex;
  gap: var(--space-sm);
}

.title-up-a57f {
  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;
}

.texture-upper-f5cd {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.texture-upper-f5cd strong {
  font-weight: 600;
  color: var(--color-text);
}

.texture-upper-f5cd span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.detail-50d0 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.detail_hard_2002 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot_15f2 {
  position: relative;
  text-align: center;
}

.hot_15f2 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.wrapper_medium_6059 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.button-f61d {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.rough_4c0f {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.footer_gas_81ed {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.paper-d5a4 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.up-3c72 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .new_d29c {
    grid-template-columns: 1fr;
  }
  
  .title_motion_b9c6 {
    font-size: 1.75rem;
  }
  
  .detail_hard_2002 {
    order: -1;
    max-width: 100%;
  }
  
  .hot_15f2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title_motion_b9c6 {
    font-size: 1.5rem;
  }
  
  .liquid_0f6a {
    font-size: 1rem;
  }
  
  .row-5e55 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hot_15f2 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.pagination_gold_99b6 {
  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;
}

.gas-4331 {
  background: var(--color-primary);
  color: white;
}

.gas-4331:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.dropdown_medium_fdfc {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.dropdown_medium_fdfc:hover {
  background: var(--color-primary);
  color: white;
}

.nav-slow-3ce2 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.nav-slow-3ce2:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.north-0fbc {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.dirty_e99c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.heading-plasma-c8e1 {
  padding: var(--space-xl) 0;
  background: white;
}

.aside-bronze-09b8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.solid_102b {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.solid_102b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery_b40d {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.fixed_6e6e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.texture_complex_5e6f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.soft_3984 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.overlay_fa4a {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.over-5a4e {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.full_65b3 {
  list-style: none;
  counter-reset: toc-counter;
}

.full_65b3 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.full_65b3 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);
}

.full_65b3 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;
}

.full_65b3 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.focused_a959 {
  padding: var(--space-xxl) 0;
}

.large-31eb {
  background: var(--color-bg-section);
}

.hover_hard_9c65 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.right_f3d2 {
  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);
}

.active_2ca9 {
  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);
}

.preview_4383 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.in-5048 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .in-5048 {
    grid-template-columns: 1fr 300px;
  }
}

.active-5c56 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.active-5c56 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.active-5c56 pre,
.active-5c56 code {
  overflow-x: auto;
  max-width: 100%;
}

.active-5c56 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);
}

.active-5c56 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.active-5c56 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.active-5c56 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.active-5c56 ul,
.active-5c56 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.active-5c56 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.active-5c56 strong {
  font-weight: 600;
  color: var(--color-text);
}

.active-5c56 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.active-5c56 a:hover {
  color: var(--color-primary-dark);
}

.card-4986 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.card-4986 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.card-4986 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) {
  .in-5048 {
    grid-template-columns: 1fr;
  }
  
  .active_2ca9 {
    font-size: 1.75rem;
  }
  
  .active-5c56 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .active_2ca9 {
    font-size: 1.5rem;
  }
  
  .active-5c56 h3 {
    font-size: 1.375rem;
  }
  
  .active-5c56 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.label_pink_7fac {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.easy_3b17 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.accordion_fcc4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.warm-ca7b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.title_selected_c043 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.backdrop_11a0 {
  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;
}

.aside_dynamic_93e1 {
  flex-shrink: 0;
}

.message_narrow_f110 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.article-0f56 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .article-0f56 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.highlight_4755,
.new_4752,
.tertiary_c4b8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.highlight_4755 thead,
.new_4752 thead {
  background: var(--color-primary);
  color: white;
}

.highlight_4755 th,
.highlight_4755 td,
.new_4752 th,
.new_4752 td,
.tertiary_c4b8 th,
.tertiary_c4b8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .highlight_4755 th,
  .highlight_4755 td,
  .new_4752 th,
  .new_4752 td,
  .tertiary_c4b8 th,
  .tertiary_c4b8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .highlight_4755,
  .new_4752,
  .tertiary_c4b8 {
    min-width: 600px;
  }
}

.highlight_4755 th,
.new_4752 th,
.tertiary_c4b8 th {
  font-weight: 600;
}

.highlight_4755 tbody tr:hover,
.new_4752 tbody tr:hover,
.tertiary_c4b8 tbody tr:hover {
  background: var(--color-bg-alt);
}

.focused_1719 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.tooltip-hovered-6599 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.modal-2357 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.modal-2357 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.surface_cold_631f {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.surface_cold_631f h4 {
  color: white;
}

.fluid_dde2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav_d536 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.nav_d536:last-child {
  border-bottom: none;
}

.nav_d536 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.nav_d536 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.simple_f9b9 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.old-bb1f {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.old-bb1f:hover {
  text-decoration: underline;
}

.last-c42c {
  text-align: center;
  margin-bottom: var(--space-md);
}

.table_lite_c889 {
  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);
}

.table_lite_c889 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.background_bee4 {
  font-weight: 600;
  color: white;
}

.lower_79ee {
  list-style: none;
  padding: 0;
}

.lower_79ee li {
  padding: var(--space-xs) 0;
}

.shade_ac49 {
  color: #4caf50;
}

.white_ac7d {
  color: #ff9800;
}

.module_ae7f {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.module-f88d {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.dark-1957 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.layout-solid-29dc {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.alert_smooth_e479 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.heading-65e7 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.item_a642 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .item_a642 {
    grid-template-columns: 1fr;
  }
}

.feature-c03f {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.feature-c03f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.title_clean_e322 {
  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;
}

.feature-c03f h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.feature-c03f p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.motion_d4dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.background_bee4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.aside-pressed-5dac {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.form_2e7a {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.form_2e7a h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.primary_over_72ee {
  max-width: 900px;
  margin: 0 auto;
}

.modal-pink-76f8 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.middle_31d3 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .middle_31d3 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.popup_d4b6 {
  margin-top: var(--space-xxl);
}

.popup_d4b6 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.status-4e1a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .status-4e1a {
    grid-template-columns: 1fr;
  }
}

.outline-easy-8f16 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature_6ed3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.dropdown-thick-b4fc {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.outline-easy-8f16 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.outline-easy-8f16 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.outline-easy-8f16 li {
  padding: var(--space-xs) 0;
  color: white;
}

.outline-easy-8f16 .pagination_gold_99b6 {
  width: 100%;
  background: white;
}

.feature_6ed3 .pagination_gold_99b6 {
  color: #667eea;
}

.dropdown-thick-b4fc .pagination_gold_99b6 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.green_555a {
  max-width: 900px;
  margin: 0 auto;
}

.card_2b08 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.article_dark_5c13 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.column-glass-1c97 {
  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);
}

.article_dark_5c13 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.layout-52cb {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .article_dark_5c13 {
    padding: var(--space-md);
  }
  
  .layout-52cb {
    padding: var(--space-md);
  }
  
  .nav-343a {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.paper_a4b0 ol,
.paper_a4b0 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.paper_a4b0 li {
  margin-bottom: var(--space-sm);
}

.paper_a4b0 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.hidden-0516 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.button-cb50 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.nav-343a {
  margin-top: var(--space-lg);
  text-align: center;
}

.nav-343a img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stale-8fb3,
.container_active_971e,
.overlay_short_1bdc,
.action_e7d8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.active_up_1b59 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.tooltip_dynamic_b051 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.hidden_b9e3 {
  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) {
  .hidden_b9e3 {
    font-size: 0.625rem;
  }
}

.carousel_focused_df31 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.carousel_focused_df31:hover {
  background: var(--color-primary-dark);
}

.cold-dafe {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cold-dafe h4 {
  margin-bottom: var(--space-md);
}

.cool_a389 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.easy-b129 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.brown-7bf7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .brown-7bf7 {
    grid-template-columns: 1fr;
  }
}

.picture-orange-f8c3 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.component_260c {
  border-color: var(--color-success);
}

.texture_gas_e2e4 {
  border-color: var(--color-warning);
}

.dim-8210 {
  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);
}

.component_260c .dim-8210 {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture_gas_e2e4 .dim-8210 {
  background: #fff3e0;
  color: var(--color-warning);
}

.picture-orange-f8c3 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.picture-orange-f8c3 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.box_c579 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.message_light_3c2d {
  margin: var(--space-xxl) 0;
}

.message_light_3c2d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.message_light_3c2d > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.text_fixed_09f4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .text_fixed_09f4 {
    grid-template-columns: 1fr;
  }
}

.grid-0c66 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.grid-0c66 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.sidebar_c0e4 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.sidebar_c0e4 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.pagination-medium-6e25 {
  margin-top: var(--space-xxl);
}

.outline-over-9980 {
  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);
}

.gallery-fluid-5482 {
  text-align: center;
}

.tag_be02 {
  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);
}

.inner_6610 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.tag_be02 .background_bee4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.container_pink_b381 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.gas-802e p {
  margin-bottom: var(--space-md);
}

.aside-b468 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .outline-over-9980 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.component-tiny-e6fc {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.surface-dc30 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.sort-current-f7b9 {
  margin-bottom: var(--space-xl);
}

.title_under_b42a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.purple-4f0d {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.brown-cd71 {
  color: var(--color-text-light);
}

.input-14cb {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.item-wood-5ff7 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.avatar-e0f4 {
  font-weight: 600;
  color: var(--color-text);
}

.tabs-bad1 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.form-691e {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.info_a5db {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.link_iron_3799 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.widget_smooth_721e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.row_wide_bdbc {
  border: 2px solid #4caf50;
}

.lite_fc5c {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.hero-672e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.row-fresh-8b09 {
  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;
}

.center_826f {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.chip_353e {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.breadcrumb_27a9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.current_3c42 {
  text-align: right;
}

.current_3c42 .pressed-33c1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.frame_iron_7e30 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.component-487f h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.component-487f p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.pattern_83bc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.filter_354e {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.video_gas_53a1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.simple-61c7 {
  background: #e3f2fd;
  color: #1565c0;
}

.dark-151a {
  background: #fff3e0;
  color: #e65100;
}

.container_643a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.container_643a span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dirty_7093 {
  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);
}

.dirty_7093:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.module_light_f699 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.search-13fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.search-13fb strong {
  color: var(--color-primary);
}

.caption_fast_1ce9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.widget_38b9 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.summary-77ae {
  max-width: 900px;
  margin: 0 auto;
}

.aside-2650 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.module_pressed_873c {
  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);
}

.module_pressed_873c:hover {
  background: var(--color-bg-alt);
}

.row-paper-0fce {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.module_pressed_873c[aria-expanded="true"] .row-paper-0fce {
  transform: rotate(180deg);
}

.tabs_028b {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.tabs_028b h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.tabs_028b ul,
.tabs_028b ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.tabs_028b li {
  margin-bottom: var(--space-xs);
}

.dark-6da4 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.gradient-motion-057a {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.dark-6da4 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.background_hot_b0ce {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.section_fresh_7597 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.badge-gas-1608 {
  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);
}

.form-55c0 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.summary-soft-005c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .summary-soft-005c {
    grid-template-columns: 1fr;
  }
}

.backdrop_2e31,
.surface_d5bb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.backdrop_2e31 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.surface_d5bb {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.backdrop_2e31 h4,
.surface_d5bb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.backdrop_2e31 ul,
.surface_d5bb ul {
  list-style: none;
  padding: 0;
}

.backdrop_2e31 li,
.surface_d5bb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.fast-35c6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .fast-35c6 {
    grid-template-columns: 1fr;
  }
}

.widget_new_eeed {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.aside-purple-42c8 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.paper-014a {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.widget_new_eeed h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.widget_new_eeed ul {
  list-style: none;
  padding: 0;
}

.widget_new_eeed li {
  padding: var(--space-xs) 0;
  color: white;
}

.layout-yellow-b06b {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.layout-yellow-b06b h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.layout-yellow-b06b p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.short_64ba {
  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);
}

.solid_2f3e {
  font-style: italic;
}

.down_3e95 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.description-e30a {
  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;
}

.description-e30a h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.description-e30a p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.notice_narrow_04e9 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.brown-7671 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.lower-aaa9 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.summary_f367 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .summary_f367 {
    grid-template-columns: 1fr;
  }
}

.background-blue-5bf0 {
  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);
}

.background-blue-5bf0:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article_9822 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.background-blue-5bf0 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.background-blue-5bf0 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.under-40d9 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.main-dark-9406 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.box-huge-3edb {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.detail-fixed-3b45 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.detail-fixed-3b45 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.tabs_581a {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs_581a li {
  margin-bottom: var(--space-xs);
}

.tabs_581a a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tabs_581a a:hover {
  color: white;
}

.sort-7721 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.sort-7721 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.sort-7721 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.tooltip_d756 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.tooltip_d756 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.tooltip_d756 a:hover {
  color: white;
}

.wide-c032 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .main-dark-9406,
  .box-huge-3edb {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.fresh_57a8 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.liquid-ae5b p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.box_1afb {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.box_1afb .table_up_f192 {
  color: #4caf50;
  font-size: 0.875rem;
}

.row_6d44 {
  list-style: none;
  padding: 0;
}

.row_6d44 li {
  margin-bottom: var(--space-xs);
}

.row_6d44 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.row_6d44 a:hover {
  color: white;
}

.menu-d3e5 {
  list-style: none;
  padding: 0;
}

.menu-d3e5 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.menu-d3e5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.menu-d3e5 a:hover {
  color: white;
}

.wide-c032 {
  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);
}

.outline_6349 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.outline_6349 a {
  color: #4caf50;
  text-decoration: none;
}

.logo-up-6f9b {
  font-size: 0.75rem;
  color: #666666;
}

.content_lite_221f {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.content_lite_221f a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.content_lite_221f a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.photo-2d66 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.photo-2d66:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wide-c032 {
    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;
  }
  
  .title_motion_b9c6 {
    font-size: 2rem;
  }
  
  .active_2ca9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .new_d29c,
  .in-5048 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .item_a642,
  .brown-7bf7,
  .status-4e1a,
  .text_fixed_09f4,
  .summary-soft-005c,
  .fast-35c6,
  .summary_f367,
  .main-dark-9406,
  .box-huge-3edb {
    grid-template-columns: 1fr;
  }
  
  .aside-bronze-09b8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .focused_a959 {
    padding: var(--space-lg) 0;
  }
  
  .full_65b3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .full_65b3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pagination_gold_99b6 {
    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;
  }
  
  .aside-bronze-09b8 {
    grid-template-columns: 1fr;
  }
  
  .detail-50d0,
  .notice_narrow_04e9,
  .cool_a389 {
    flex-direction: column;
    width: 100%;
  }
  
  .north-0fbc,
  .dirty_e99c,
  .detail-50d0 .pagination_gold_99b6,
  .notice_narrow_04e9 .pagination_gold_99b6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title_motion_b9c6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .active_2ca9 {
    font-size: 1.375rem;
  }
  
  .gallery_b40d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .solid_102b,
  .feature-c03f,
  .modal-2357,
  .widget_smooth_721e,
  .card_2b08 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hidden_b9e3 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .selected-99bb {
    gap: var(--space-xs);
  }
  
  .column-5eac {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .table_lite_c889 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tag_be02 {
    width: 150px;
    height: 150px;
  }
  
  .inner_6610 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .picture-beb5,
  .input_ac4c,
  .detail-50d0,
  .description-e30a,
  .brown-7671,
  .under-40d9,
  .large_6d8f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .focused_a959 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.panel_hard_c0e7 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 08f7 */
.promo-block-k2 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
