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

.slider_cool_7177:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.accordion-fast-0d44,
header,
.cold_747f,
.current_93ee,
.slider-7246,
.hard-5455,
.wide-9c0f,
.outline-inner-96a4,
.info_e40d {
  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
   ============================================ */
.accordion-fast-0d44 {
  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);
}

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

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

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

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

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

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

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

.focused_0454 {
  flex: 1;
}

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

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

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

.over-3947.fn-active-9c10 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.carousel-bronze-cf58 {
  position: relative;
}

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

.input-last-350a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.primary-clean-9ca8 {
  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;
}

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

.primary-clean-9ca8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.gradient_b42e[aria-expanded="true"] .background_94ea:nth-child(2) {
  opacity: 0;
}

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

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

  .focused_0454::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .focused_0454.filter-dd56 {
    display: block;
    right: 0;
  }
  
  .panel_static_a08e {
    flex-direction: column;
    gap: 0;
  }
  
  .over-3947 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .focused_0454::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;
  }
  
  .focused_0454.filter-dd56::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .focused_0454 {
    display: none;
  }
  
  .gradient_b42e {
    display: flex;
  }
  
  .stone_c352 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .primary-clean-9ca8,
  .thick_f84f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .carousel-bronze-cf58 {
    position: relative;
  }
  
  .pattern-5959 {
    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;
  }
  
  .input-last-350a[aria-expanded="true"] + .pattern-5959 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .brown_d1d4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pagination-steel-f98a {
    gap: 8px;
  }
  
  .primary-clean-9ca8 {
    display: none;
  }
  
  .thick_f84f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gas_fa2b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.media-left-1592 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.media-left-1592 svg {
  flex-shrink: 0;
}

.media-left-1592 a {
  color: var(--color-primary);
  text-decoration: none;
}

.media-left-1592 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.prev-c0ce a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.shadow-5bfc {
  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;
}

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

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

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

.chip-liquid-093f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

.feature-inner-32cd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .first_8bc5 {
    grid-template-columns: 1fr;
  }
  
  .hard-5a5c {
    font-size: 1.75rem;
  }
  
  .north_d891 {
    order: -1;
    max-width: 100%;
  }
  
  .medium_db02 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hard-5a5c {
    font-size: 1.5rem;
  }
  
  .wood-abf9 {
    font-size: 1rem;
  }
  
  .prev-c0ce {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .medium_db02 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh-79fd {
  list-style: none;
  counter-reset: toc-counter;
}

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

.fresh-79fd 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);
}

.fresh-79fd 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;
}

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

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

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

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

.title-brown-5f02 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal_soft_0868 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) {
  .search_current_6630 {
    grid-template-columns: 1fr;
  }
  
  .highlight-c2f5 {
    font-size: 1.75rem;
  }
  
  .form_bottom_da11 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .highlight-c2f5 {
    font-size: 1.5rem;
  }
  
  .form_bottom_da11 h3 {
    font-size: 1.375rem;
  }
  
  .form_bottom_da11 h4 {
    font-size: 1.125rem;
  }
}

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

.status-out-8c8d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.border-up-6db4 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.article_dark_7e97 {
  flex-shrink: 0;
}

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

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

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

.list_brown_e3a5,
.dropdown-in-9336,
.surface_in_d6f2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_brown_e3a5 thead,
.dropdown-in-9336 thead {
  background: var(--color-primary);
  color: white;
}

.list_brown_e3a5 th,
.list_brown_e3a5 td,
.dropdown-in-9336 th,
.dropdown-in-9336 td,
.surface_in_d6f2 th,
.surface_in_d6f2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_brown_e3a5 th,
  .list_brown_e3a5 td,
  .dropdown-in-9336 th,
  .dropdown-in-9336 td,
  .surface_in_d6f2 th,
  .surface_in_d6f2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_brown_e3a5,
  .dropdown-in-9336,
  .surface_in_d6f2 {
    min-width: 600px;
  }
}

.list_brown_e3a5 th,
.dropdown-in-9336 th,
.surface_in_d6f2 th {
  font-weight: 600;
}

.list_brown_e3a5 tbody tr:hover,
.dropdown-in-9336 tbody tr:hover,
.surface_in_d6f2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.caption-2548 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old-f080 {
  color: #4caf50;
}

.medium-938b {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .block-easy-92db {
    grid-template-columns: 1fr;
  }
}

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

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

.logo-east-26ef {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-c491 .text_8307 {
  width: 100%;
  background: white;
}

.primary_9eb1 .text_8307 {
  color: #667eea;
}

.tall-40ec .text_8307 {
  color: #f5576c;
}

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

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

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

.hard-1c42 {
  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);
}

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

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

@media (max-width: 768px) {
  .wide_731a {
    padding: var(--space-md);
  }
  
  .detail_83c1 {
    padding: var(--space-md);
  }
  
  .aside-fixed-3b32 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.aside-fixed-3b32 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.south-b835,
.photo-dirty-1790,
.new_2956,
.photo-172c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-fe60 {
  border-color: var(--color-success);
}

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

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

.hidden-fe60 .element-fef0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.pressed-b38b .element-fef0 {
  background: #fff3e0;
  color: var(--color-warning);
}

.background-orange-8f64 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.background-orange-8f64 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

.preview-37da {
  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);
}

.list_thick_f9e1 {
  text-align: center;
}

.header-pro-cc2e {
  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);
}

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

.header-pro-cc2e .solid_1c05 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.hero-east-f45a p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.button-basic-8e70 {
  margin-bottom: var(--space-xl);
}

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

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

.sidebar-clean-2135 {
  color: var(--color-text-light);
}

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

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

.outer-79ac {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.block-0bda {
  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;
}

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

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

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

.outline_992a {
  text-align: right;
}

.outline_992a .notification-82a1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.text-4542 {
  background: #e3f2fd;
  color: #1565c0;
}

.highlight-77d6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.thumbnail-warm-2a1f {
  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);
}

.thumbnail-warm-2a1f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.top-97d7 strong {
  color: var(--color-primary);
}

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

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

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

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

.row-46a3 {
  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);
}

.row-46a3:hover {
  background: var(--color-bg-alt);
}

.sort-tiny-2f1b {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.row-46a3[aria-expanded="true"] .sort-tiny-2f1b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh_18a6 ul,
.caption_gas_d782 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.primary-next-bcda ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.avatar_silver_b8a3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.surface-hard-8b5f {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.breadcrumb_033d {
  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) */
.description-thick-0f7f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.next-f046 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.next-f046 a:hover {
  color: white;
}

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

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

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

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

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

.brown-8220 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .breadcrumb_033d,
  .description-thick-0f7f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.dropdown-db36 .filter_7010 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.avatar_34a3 a:hover {
  color: white;
}

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

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

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

.background_old_ca9c a:hover {
  color: white;
}

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

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

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

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

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

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

.tabs-fluid-c6d2 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;
}

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

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

@media (max-width: 768px) {
  .status-bfa6 {
    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;
  }
  
  .hard-5a5c {
    font-size: 2rem;
  }
  
  .highlight-c2f5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .first_8bc5,
  .search_current_6630 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block-easy-92db,
  .bronze_95ef,
  .pattern-fdd2,
  .active-0b9c,
  .content-87f6,
  .form-d395,
  .hard-d304,
  .breadcrumb_033d,
  .description-thick-0f7f {
    grid-template-columns: 1fr;
  }
  
  .thumbnail_4cd1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .wide-9c0f {
    padding: var(--space-lg) 0;
  }
  
  .fresh-79fd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fresh-79fd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_8307 {
    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;
  }
  
  .thumbnail_4cd1 {
    grid-template-columns: 1fr;
  }
  
  .chip-liquid-093f,
  .copper_115b,
  .easy_83cb {
    flex-direction: column;
    width: 100%;
  }
  
  .title_small_a443,
  .gold-c4e6,
  .chip-liquid-093f .text_8307,
  .copper_115b .text_8307 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hard-5a5c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .highlight-c2f5 {
    font-size: 1.375rem;
  }
  
  .message-liquid-cada {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tertiary_dynamic_8415,
  .video-c394,
  .thumbnail_dim_96ef,
  .soft-7803,
  .notification_95fa {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focused_871c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .backdrop-5fee {
    gap: var(--space-xs);
  }
  
  .media-left-1592 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .progress-5908 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .header-pro-cc2e {
    width: 150px;
    height: 150px;
  }
  
  .active_4853 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .accordion-fast-0d44,
  .cold_747f,
  .chip-liquid-093f,
  .wide_4aa4,
  .outline-inner-96a4,
  .info_e40d,
  .gradient_b42e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .wide-9c0f {
    page-break-inside: avoid;
  }
}

/* css-noise: 36de */
.phantom-card-f9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
