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

.smooth-5376:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dim-2032,
header,
.icon_iron_b17d,
.header_bright_0db8,
.outer-52b9,
.box_815a,
.active_steel_0215,
.gas_f599,
.heading_3375 {
  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
   ============================================ */
.dim-2032 {
  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);
}

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

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

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

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

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

.paper-50b7 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.slow_043d {
  flex: 1;
}

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

.surface-glass-d42d {
  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);
}

.surface-glass-d42d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.surface-glass-d42d.fn-active-e9b9 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .slow_043d {
    display: none;
  }
  
  .carousel_1eab {
    display: flex;
  }
  
  .link_silver_b522 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dim-f2f1,
  .overlay_solid_a73a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .huge_af33 {
    position: relative;
  }
  
  .article-a159 {
    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;
  }
  
  .picture_c6e5[aria-expanded="true"] + .article-a159 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .outline_e1a5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .nav_2873 {
    gap: 8px;
  }
  
  .dim-f2f1 {
    display: none;
  }
  
  .overlay_solid_a73a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paper-50b7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.breadcrumb_warm_2fb6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.texture-focused-9545 a {
  color: var(--color-primary);
  text-decoration: none;
}

.texture-focused-9545 a:hover {
  text-decoration: underline;
}

.media-selected-337c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.disabled-15af {
  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;
}

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

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

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

.paper-64e4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .panel_a8b5 {
    grid-template-columns: 1fr;
  }
  
  .layout_2e0c {
    font-size: 1.75rem;
  }
  
  .dirty_fe9e {
    order: -1;
    max-width: 100%;
  }
  
  .full_cf98 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .layout_2e0c {
    font-size: 1.5rem;
  }
  
  .primary-soft-59f3 {
    font-size: 1rem;
  }
  
  .texture-focused-9545 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .full_cf98 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.content-fast-f7d1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.tabs-cold-16a9 {
  list-style: none;
  counter-reset: toc-counter;
}

.tabs-cold-16a9 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.tabs-cold-16a9 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);
}

.tabs-cold-16a9 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;
}

.tabs-cold-16a9 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

.popup-bottom-3a16 {
  background: var(--color-bg-section);
}

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

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

.preview-paper-8ec0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list_f8ae 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) {
  .caption_lower_dbd1 {
    grid-template-columns: 1fr;
  }
  
  .preview-paper-8ec0 {
    font-size: 1.75rem;
  }
  
  .hidden_copper_904f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .preview-paper-8ec0 {
    font-size: 1.5rem;
  }
  
  .hidden_copper_904f h3 {
    font-size: 1.375rem;
  }
  
  .hidden_copper_904f h4 {
    font-size: 1.125rem;
  }
}

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

.hovered-28f1 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.silver-9089 {
  flex-shrink: 0;
}

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

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

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

.block_solid_44db,
.inner-4fb6,
.cool-d2b3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.block_solid_44db thead,
.inner-4fb6 thead {
  background: var(--color-primary);
  color: white;
}

.block_solid_44db th,
.block_solid_44db td,
.inner-4fb6 th,
.inner-4fb6 td,
.cool-d2b3 th,
.cool-d2b3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .block_solid_44db th,
  .block_solid_44db td,
  .inner-4fb6 th,
  .inner-4fb6 td,
  .cool-d2b3 th,
  .cool-d2b3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .block_solid_44db,
  .inner-4fb6,
  .cool-d2b3 {
    min-width: 600px;
  }
}

.block_solid_44db th,
.inner-4fb6 th,
.cool-d2b3 th {
  font-weight: 600;
}

.block_solid_44db tbody tr:hover,
.inner-4fb6 tbody tr:hover,
.cool-d2b3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.outer-0c6c h4 {
  color: white;
}

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

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

.filter-action-4544:last-child {
  border-bottom: none;
}

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

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

.icon-fresh-851e {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

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

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

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

.old-e8ad {
  list-style: none;
  padding: 0;
}

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

.section_12d7 {
  color: #4caf50;
}

.progress_6782 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .highlight-hovered-68c1 {
    grid-template-columns: 1fr;
  }
}

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

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

.search-in-61ed {
  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;
}

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

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

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

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

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

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

.aside-under-5f68 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .progress-basic-070f {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.pressed_dbee .text_af69 {
  width: 100%;
  background: white;
}

.in-8b10 .text_af69 {
  color: #667eea;
}

.fresh-92ec .text_af69 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .lite_aea5 {
    padding: var(--space-md);
  }
  
  .form_next_5269 {
    padding: var(--space-md);
  }
  
  .secondary_103e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.badge-copper-8b8a ol,
.badge-copper-8b8a ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.badge-copper-8b8a li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.search-4247,
.south-ee46,
.steel-cbfe,
.alert_rough_0869 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.photo-last-3f4c {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.highlight-946b:hover {
  background: var(--color-primary-dark);
}

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

.silver-218e h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.primary-92d8 {
  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);
}

.gradient_light_3fb0 .primary-92d8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.basic_74f1 .primary-92d8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.texture-thick-7c23 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.thumbnail_0c8a {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-dirty-1264 {
  color: var(--color-text-light);
}

.button-simple-4b35 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.feature-fresh-3e3c {
  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;
}

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

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

.mask-hard-87c2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.banner_large_75ab {
  text-align: right;
}

.banner_large_75ab .content-clean-645f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.thumbnail-b90a {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.pagination-2c6f {
  background: #fff3e0;
  color: #e65100;
}

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

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

.secondary-center-65bd {
  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);
}

.secondary-center-65bd:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.gallery_dirty_e429[aria-expanded="true"] .thick-0d91 {
  transform: rotate(180deg);
}

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

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

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

.small-90b7 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.input-2a05,
.background_copper_c41d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.input-2a05 h4,
.background_copper_c41d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.input-2a05 ul,
.background_copper_c41d ul {
  list-style: none;
  padding: 0;
}

.input-2a05 li,
.background_copper_c41d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.filter-slow-046e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.filter-slow-046e ul {
  list-style: none;
  padding: 0;
}

.filter-slow-046e li {
  padding: var(--space-xs) 0;
  color: white;
}

.active-0abc {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.accent-fcba {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.tertiary-red-833c {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

.advanced-8467 {
  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) */
.search-solid-d7f8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.tertiary_29d9 a:hover {
  color: white;
}

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

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

.hard-5485 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.layout_4859 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .advanced-8467,
  .search-solid-d7f8 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.section_up_fc27 .paragraph_5a0a {
  color: #4caf50;
  font-size: 0.875rem;
}

.smooth-fd62 {
  list-style: none;
  padding: 0;
}

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

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

.smooth-fd62 a:hover {
  color: white;
}

.pagination-1c94 {
  list-style: none;
  padding: 0;
}

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

.pagination-1c94 a {
  color: #b0b0b0;
  text-decoration: none;
}

.pagination-1c94 a:hover {
  color: white;
}

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

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

.description-soft-e940 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.slow-8f54 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.slow-8f54 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;
}

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

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

@media (max-width: 768px) {
  .wood-aff9 {
    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;
  }
  
  .layout_2e0c {
    font-size: 2rem;
  }
  
  .preview-paper-8ec0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .panel_a8b5,
  .caption_lower_dbd1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .highlight-hovered-68c1,
  .outer_bab4,
  .progress-basic-070f,
  .wide-ac05,
  .hidden-d6b6,
  .red_6cf7,
  .header_22f4,
  .advanced-8467,
  .search-solid-d7f8 {
    grid-template-columns: 1fr;
  }
  
  .gas-0389 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .active_steel_0215 {
    padding: var(--space-lg) 0;
  }
  
  .tabs-cold-16a9 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-cold-16a9 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_af69 {
    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;
  }
  
  .gas-0389 {
    grid-template-columns: 1fr;
  }
  
  .paper-64e4,
  .middle_7b31,
  .accordion_light_d3e7 {
    flex-direction: column;
    width: 100%;
  }
  
  .content-fast-f7d1,
  .hard-d4fa,
  .paper-64e4 .text_af69,
  .middle_7b31 .text_af69 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .layout_2e0c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .preview-paper-8ec0 {
    font-size: 1.375rem;
  }
  
  .black-b088 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .main_c430,
  .dirty_cba4,
  .cool_6ee3,
  .picture-upper-3db4,
  .focus-cd5c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .box_soft_ae29 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .mini_6485 {
    gap: var(--space-xs);
  }
  
  .breadcrumb_warm_2fb6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .header-8226 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail_7eb2 {
    width: 150px;
    height: 150px;
  }
  
  .gas-c9d6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dim-2032,
  .icon_iron_b17d,
  .paper-64e4,
  .north-bdc9,
  .gas_f599,
  .heading_3375,
  .carousel_1eab {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .active_steel_0215 {
    page-break-inside: avoid;
  }
}

/* css-noise: 2e1b */
.phantom-card-s3 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
