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

.paragraph_south_63da:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.main-glass-ce58):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. */
.main-glass-ce58,
header,
.table-0544,
.box_smooth_ba83,
.dirty-278b,
.silver_40e6,
.hovered-9c0f,
.footer_active_c5e3,
.dynamic_b801 {
  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
   ============================================ */
.main-glass-ce58 {
  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);
}

.image-white-ecca {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.out_dbb4 {
  flex: 1;
}

.tag-1b84 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

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

.title-solid-a5a9:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.title-solid-a5a9.focus_1037 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-right-ffff svg {
  flex-shrink: 0;
}

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

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

.slow_be44 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.secondary-top-7221 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.fluid-cc94[aria-expanded="true"] .secondary-top-7221:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fluid-cc94[aria-expanded="true"] .secondary-top-7221:nth-child(2) {
  opacity: 0;
}

.fluid-cc94[aria-expanded="true"] .secondary-top-7221:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .out_dbb4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .out_dbb4.inner-fedc {
    display: block;
    right: 0;
  }
  
  .tag-1b84 {
    flex-direction: column;
    gap: 0;
  }
  
  .title-solid-a5a9 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .out_dbb4::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;
  }
  
  .out_dbb4.inner-fedc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .out_dbb4 {
    display: none;
  }
  
  .fluid-cc94 {
    display: flex;
  }
  
  .simple_0d6f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .label-right-ffff,
  .slow_be44 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade_e192 {
    position: relative;
  }
  
  .iron-b831 {
    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;
  }
  
  .block_hard_2e18[aria-expanded="true"] + .iron-b831 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .alert_hot_2a1f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .modal_3eba {
    gap: 8px;
  }
  
  .label-right-ffff {
    display: none;
  }
  
  .slow_be44 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .bronze_9420 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .slow_be44 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .slow_be44 svg {
    width: 14px;
    height: 14px;
  }
  
  .menu-pink-4d05 {
    gap: var(--space-sm);
  }
}

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

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

.section-gas-af40 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.section-gas-af40 svg {
  flex-shrink: 0;
}

.section-gas-af40 a {
  color: var(--color-primary);
  text-decoration: none;
}

.section-gas-af40 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel_red_217b {
  position: relative;
  text-align: center;
}

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

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

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

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

.banner-clean-40d2 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .summary_fb58 {
    grid-template-columns: 1fr;
  }
  
  .caption-easy-f898 {
    font-size: 1.75rem;
  }
  
  .element_left_b10e {
    order: -1;
    max-width: 100%;
  }
  
  .panel_red_217b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .caption-easy-f898 {
    font-size: 1.5rem;
  }
  
  .banner_focused_9b14 {
    font-size: 1rem;
  }
  
  .dynamic_ec85 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .panel_red_217b {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.article-black-2c0b {
  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;
}

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

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

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

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

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

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

.surface-94cc {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.disabled-prev-294e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.overlay-dim-8a86 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.rough-a248 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;
}

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

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

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

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

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

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

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

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

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

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

.sidebar-fresh-f9fc img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.sidebar-fresh-f9fc 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);
}

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

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

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

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

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

.sidebar-fresh-f9fc strong {
  font-weight: 600;
  color: var(--color-text);
}

.sidebar-fresh-f9fc a {
  color: var(--color-primary);
  text-decoration: underline;
}

.sidebar-fresh-f9fc a:hover {
  color: var(--color-primary-dark);
}

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

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

.liquid_3455 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) {
  .filter-pink-ab98 {
    grid-template-columns: 1fr;
  }
  
  .grid-1037 {
    font-size: 1.75rem;
  }
  
  .sidebar-fresh-f9fc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-1037 {
    font-size: 1.5rem;
  }
  
  .sidebar-fresh-f9fc h3 {
    font-size: 1.375rem;
  }
  
  .sidebar-fresh-f9fc h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.wrapper-2cca {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sort-green-964a strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.search-cdcc {
  flex-shrink: 0;
}

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

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

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

.detail-0e64,
.hard_e0b2,
.active-top-f76f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail-0e64 thead,
.hard_e0b2 thead {
  background: var(--color-primary);
  color: white;
}

.detail-0e64 th,
.detail-0e64 td,
.hard_e0b2 th,
.hard_e0b2 td,
.active-top-f76f th,
.active-top-f76f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail-0e64 th,
  .detail-0e64 td,
  .hard_e0b2 th,
  .hard_e0b2 td,
  .active-top-f76f th,
  .active-top-f76f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail-0e64,
  .hard_e0b2,
  .active-top-f76f {
    min-width: 600px;
  }
}

.detail-0e64 th,
.hard_e0b2 th,
.active-top-f76f th {
  font-weight: 600;
}

.detail-0e64 tbody tr:hover,
.hard_e0b2 tbody tr:hover,
.active-top-f76f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.card_f40c h4 {
  color: white;
}

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

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

.card-red-da96:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.input-c060 {
  font-weight: 600;
  color: white;
}

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

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

.text-70b6 {
  color: #4caf50;
}

.bright_c33c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-smooth-7f04 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

.widget-bronze-051e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.widget-bronze-051e ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.widget-bronze-051e li {
  padding: var(--space-xs) 0;
  color: white;
}

.widget-bronze-051e .article-black-2c0b {
  width: 100%;
  background: white;
}

.black_e60f .article-black-2c0b {
  color: #667eea;
}

.green_5c25 .article-black-2c0b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .under-d3d9 {
    padding: var(--space-md);
  }
  
  .secondary_gas_3d0b {
    padding: var(--space-md);
  }
  
  .block-middle-6e0e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.advanced-e742 li {
  margin-bottom: var(--space-sm);
}

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

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

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

.block-middle-6e0e {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.secondary_5c4c,
.liquid-7d4f,
.media-f50b,
.pro-d6f4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.wrapper-75ad:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.paper-352c {
  border-color: var(--color-success);
}

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

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

.paper-352c .dark-e137 {
  background: #e8f5e9;
  color: var(--color-success);
}

.alert_7d36 .dark-e137 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.old-1c9c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.carousel-red-10fb {
  text-align: center;
}

.wrapper-last-5982 {
  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);
}

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

.wrapper-last-5982 .input-c060 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_south_c66b {
  border: 2px solid #4caf50;
}

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

.thumbnail-0dd1 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.media-soft-918b {
  text-align: right;
}

.media-soft-918b .bronze_461f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.full-c8d0 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.dark_898e strong {
  color: var(--color-primary);
}

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

.table-58e6 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

.alert_yellow_d5fa[aria-expanded="true"] .picture_7493 {
  transform: rotate(180deg);
}

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

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

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

.column-56b1 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus_red_d684 ul,
.highlight_96c3 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.border-old-bc73 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.aside_af5d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_bdf1 .lower_7b71 {
  color: #4caf50;
  font-size: 0.875rem;
}

.box-e238 {
  list-style: none;
  padding: 0;
}

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

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

.box-e238 a:hover {
  color: white;
}

.south-dafc {
  list-style: none;
  padding: 0;
}

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

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

.south-dafc a:hover {
  color: white;
}

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

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

.dark-3cca a {
  color: #4caf50;
  text-decoration: none;
}

.highlight-4e0f {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .narrow_4c23 {
    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;
  }
  
  .caption-easy-f898 {
    font-size: 2rem;
  }
  
  .grid-1037 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .summary_fb58,
  .filter-pink-ab98 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .wrapper-bcc7,
  .narrow-1f4f,
  .full_2cf8,
  .input-31ee,
  .widget_088d,
  .gallery-2974,
  .icon_971f,
  .center_b274 {
    grid-template-columns: 1fr;
  }
  
  .picture-a16c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hovered-9c0f {
    padding: var(--space-lg) 0;
  }
  
  .rough-a248 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .rough-a248 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .article-black-2c0b {
    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;
  }
  
  .picture-a16c {
    grid-template-columns: 1fr;
  }
  
  .chip_upper_aaf3,
  .link_ebdb,
  .advanced_529c {
    flex-direction: column;
    width: 100%;
  }
  
  .surface-94cc,
  .disabled-prev-294e,
  .chip_upper_aaf3 .article-black-2c0b,
  .link_ebdb .article-black-2c0b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .caption-easy-f898 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .grid-1037 {
    font-size: 1.375rem;
  }
  
  .dropdown_fixed_99de {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .grid_solid_520c,
  .input_steel_7b89,
  .solid_1353,
  .form_full_a041,
  .next-bc5e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .dim-c1eb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .link-east-afd3 {
    gap: var(--space-xs);
  }
  
  .section-gas-af40 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner-dd2f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .wrapper-last-5982 {
    width: 150px;
    height: 150px;
  }
  
  .wood_f9e1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main-glass-ce58,
  .table-0544,
  .chip_upper_aaf3,
  .dark-fa4d,
  .footer_active_c5e3,
  .dynamic_b801,
  .fluid-cc94 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hovered-9c0f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9dc1 */
.ghost-box-y9 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
