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

.list-054c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dark-390e,
header,
.fixed_8c92,
.fluid_04ae,
.badge-orange-ac6c,
.outline-stale-f7ed,
.over_b2f9,
.filter-71ed,
.primary-full-4df1 {
  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
   ============================================ */
.dark-390e {
  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);
}

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

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

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

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

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

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

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

.panel-2cb4 {
  flex: 1;
}

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

.box-new-b5a0 {
  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);
}

.box-new-b5a0:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.box-new-b5a0.fn-active-de89 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.warm-ac42 {
  position: relative;
}

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

.clean-cf1f svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.card_gas_9eaa svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.next-b667[aria-expanded="true"] .backdrop-6a41:nth-child(2) {
  opacity: 0;
}

.next-b667[aria-expanded="true"] .backdrop-6a41:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .panel-2cb4::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .panel-2cb4.tabs_0f6c {
    display: block;
    right: 0;
  }
  
  .highlight-c84d {
    flex-direction: column;
    gap: 0;
  }
  
  .box-new-b5a0 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .panel-2cb4::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;
  }
  
  .panel-2cb4.tabs_0f6c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .panel-2cb4 {
    display: none;
  }
  
  .next-b667 {
    display: flex;
  }
  
  .left_9290 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .card_gas_9eaa,
  .highlight_tiny_ae71 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .warm-ac42 {
    position: relative;
  }
  
  .mask-bf34 {
    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;
  }
  
  .clean-cf1f[aria-expanded="true"] + .mask-bf34 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .component_upper_0b86 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hover_west_3ede {
    gap: 8px;
  }
  
  .card_gas_9eaa {
    display: none;
  }
  
  .highlight_tiny_ae71 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .primary_smooth_24e7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.popup_7c67 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo-fluid-acf7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo-fluid-acf7 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.logo-hovered-8045 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .link_slow_1e03 {
    grid-template-columns: 1fr;
  }
  
  .info_soft_c416 {
    font-size: 1.75rem;
  }
  
  .link-1836 {
    order: -1;
    max-width: 100%;
  }
  
  .huge_6971 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .info_soft_c416 {
    font-size: 1.5rem;
  }
  
  .nav_lower_0dce {
    font-size: 1rem;
  }
  
  .selected_ea9a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .huge_6971 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-steel-78ad {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.plasma-6a42 {
  list-style: none;
  counter-reset: toc-counter;
}

.plasma-6a42 li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.plasma-6a42 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);
}

.plasma-6a42 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;
}

.plasma-6a42 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

.mask-light-1a20 {
  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);
}

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

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

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

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

.hero-58ac img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.hero-58ac 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);
}

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

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

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

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

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

.hero-58ac strong {
  font-weight: 600;
  color: var(--color-text);
}

.hero-58ac a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hero-58ac a:hover {
  color: var(--color-primary-dark);
}

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

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

.module_dace 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) {
  .stale_5f04 {
    grid-template-columns: 1fr;
  }
  
  .mask-light-1a20 {
    font-size: 1.75rem;
  }
  
  .hero-58ac {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .mask-light-1a20 {
    font-size: 1.5rem;
  }
  
  .hero-58ac h3 {
    font-size: 1.375rem;
  }
  
  .hero-58ac h4 {
    font-size: 1.125rem;
  }
}

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

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

.bright-610a {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.accent-soft-8336 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.yellow-5698 {
  flex-shrink: 0;
}

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

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

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

.search_6398,
.status_f25d,
.form_fixed_528b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.search_6398 thead,
.status_f25d thead {
  background: var(--color-primary);
  color: white;
}

.search_6398 th,
.search_6398 td,
.status_f25d th,
.status_f25d td,
.form_fixed_528b th,
.form_fixed_528b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .search_6398 th,
  .search_6398 td,
  .status_f25d th,
  .status_f25d td,
  .form_fixed_528b th,
  .form_fixed_528b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .search_6398,
  .status_f25d,
  .form_fixed_528b {
    min-width: 600px;
  }
}

.search_6398 th,
.status_f25d th,
.form_fixed_528b th {
  font-weight: 600;
}

.search_6398 tbody tr:hover,
.status_f25d tbody tr:hover,
.form_fixed_528b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gallery-71c6 h4 {
  color: white;
}

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

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

.aside-8a34:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.article-35f6 {
  color: #4caf50;
}

.purple_8a20 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fresh-2b69 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.accent_easy_c6f9 .notification-8de2 {
  width: 100%;
  background: white;
}

.up-c5ad .notification-8de2 {
  color: #667eea;
}

.sort_153c .notification-8de2 {
  color: #f5576c;
}

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

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

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

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

.accent-5e91 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .accent-5e91 {
    padding: var(--space-md);
  }
  
  .article_065a {
    padding: var(--space-md);
  }
  
  .tall-bc51 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.soft_5f6b,
.table_1866,
.surface_2d32,
.tertiary-5ad1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.item-35c9 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.pressed-41d1 {
  border-color: var(--color-success);
}

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

.gallery-red-70af {
  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);
}

.pressed-41d1 .gallery-red-70af {
  background: #e8f5e9;
  color: var(--color-success);
}

.accordion_easy_4c21 .gallery-red-70af {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wide-1e9b {
  margin-top: var(--space-xxl);
}

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

.down-e05c {
  text-align: center;
}

.background-fast-bf03 {
  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);
}

.focus-lite-91bb {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.background-fast-bf03 .short_c23f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.title-steel-dbd8 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.backdrop-thick-e67a p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.hovered-0e52 {
  color: var(--color-text-light);
}

.feature-glass-6e92 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

.yellow-7f8c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.notification-dynamic-e262 {
  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;
}

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

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

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

.warm_83c4 {
  text-align: right;
}

.warm_83c4 .preview-green-910e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.summary-2be3 {
  background: #e3f2fd;
  color: #1565c0;
}

.link_tiny_b7f2 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.frame-0c03 {
  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);
}

.frame-0c03:hover {
  background: var(--color-bg-alt);
}

.message-orange-072d {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.frame-0c03[aria-expanded="true"] .message-orange-072d {
  transform: rotate(180deg);
}

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

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

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

.grid-9dc4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_f406 ul,
.description_full_ad66 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.list-slow-7ae3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.list-slow-7ae3 ul {
  list-style: none;
  padding: 0;
}

.list-slow-7ae3 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.icon-out-37a9 {
  font-style: italic;
}

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

.text-2f43 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.green-b4ef a:hover {
  color: white;
}

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

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

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

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

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

.huge-4950 a:hover {
  color: white;
}

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

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

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

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

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

.static_1e9e .description-fafc {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.aside_afb0 a:hover {
  color: white;
}

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

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

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

.smooth_f09b a:hover {
  color: white;
}

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

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

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

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

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

.simple-6065 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.simple-6065 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;
}

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

.list-1045:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .selected-5038 {
    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;
  }
  
  .info_soft_c416 {
    font-size: 2rem;
  }
  
  .mask-light-1a20 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .link_slow_1e03,
  .stale_5f04 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .down-837c,
  .last-6989,
  .card-new-fccb,
  .outline-ad02,
  .tag-hard-07c4,
  .badge-5ab7,
  .form-medium-9e58,
  .article_cb6c,
  .slider_solid_84f6 {
    grid-template-columns: 1fr;
  }
  
  .gallery_full_f256 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .over_b2f9 {
    padding: var(--space-lg) 0;
  }
  
  .plasma-6a42 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .plasma-6a42 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .notification-8de2 {
    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;
  }
  
  .gallery_full_f256 {
    grid-template-columns: 1fr;
  }
  
  .logo-hovered-8045,
  .notice-fd45,
  .thick_c33e {
    flex-direction: column;
    width: 100%;
  }
  
  .description_lite_0753,
  .texture_fresh_d512,
  .logo-hovered-8045 .notification-8de2,
  .notice-fd45 .notification-8de2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .info_soft_c416 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .mask-light-1a20 {
    font-size: 1.375rem;
  }
  
  .middle_3a9a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hidden_action_6322,
  .table_cool_6f58,
  .article-c6b6,
  .shadow-purple-58c8,
  .warm-a928 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .container-gas-a27a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .card_silver_f36c {
    gap: var(--space-xs);
  }
  
  .popup_7c67 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container_orange_0f43 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .background-fast-bf03 {
    width: 150px;
    height: 150px;
  }
  
  .focus-lite-91bb {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dark-390e,
  .fixed_8c92,
  .logo-hovered-8045,
  .text-2f43,
  .filter-71ed,
  .primary-full-4df1,
  .next-b667 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .over_b2f9 {
    page-break-inside: avoid;
  }
}

/* css-noise: 0500 */
.promo-block-f9 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
