/* ============================================
   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)
   ============================================ */
.hover_795c {
  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;
}

.hover_795c:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.down_73a2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .down_73a2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .down_73a2 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.top_a152):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.top_a152,
header,
.notice_wide_7df4,
.menu-advanced-a5d4,
.pro-6c55,
.feature-liquid-065e,
.status-901e,
.out_1247,
.header-dim-90e6 {
  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
   ============================================ */
.top_a152 {
  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);
}

.container-6f58 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.top_a152.table-plasma-840a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.summary_soft_77c9 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.lower_ba30 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.grid_fd7a img {
  height: 36px;
  width: auto;
  display: block;
}

.slider_thick_f519 {
  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;
}

.copper-d0e2 {
  flex: 1;
}

.nav_12b5 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.content_928d {
  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);
}

.content_928d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.content_928d.gallery_ecb5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.nav_ee18 {
  position: relative;
}

.highlight-7b16 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.highlight-7b16 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.nav_ee18:hover .highlight-7b16 svg,
.highlight-7b16[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.article-3dee {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.nav_ee18:hover .article-3dee {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.article-3dee::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.element_c1de {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.element_c1de:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.element_c1de[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.banner_center_a22c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.silver_e58a {
  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;
}

.silver_e58a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.silver_e58a svg {
  flex-shrink: 0;
}

/* Header Download Button */
.shadow_3044 {
  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;
}

.shadow_3044: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);
}

.shadow_3044 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.panel_smooth_0c6a {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.complex-9e56 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.panel_smooth_0c6a[aria-expanded="true"] .complex-9e56:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.panel_smooth_0c6a[aria-expanded="true"] .complex-9e56:nth-child(2) {
  opacity: 0;
}

.panel_smooth_0c6a[aria-expanded="true"] .complex-9e56:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .copper-d0e2 {
    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 */
  }

  .copper-d0e2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .copper-d0e2.background_medium_1ff3 {
    display: block;
    right: 0;
  }
  
  .nav_12b5 {
    flex-direction: column;
    gap: 0;
  }
  
  .content_928d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .copper-d0e2::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;
  }
  
  .copper-d0e2.background_medium_1ff3::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .copper-d0e2 {
    display: none;
  }
  
  .panel_smooth_0c6a {
    display: flex;
  }
  
  .slider_thick_f519 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .silver_e58a,
  .shadow_3044 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav_ee18 {
    position: relative;
  }
  
  .article-3dee {
    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;
  }
  
  .highlight-7b16[aria-expanded="true"] + .article-3dee {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .element_c1de {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .banner_center_a22c {
    gap: 8px;
  }
  
  .silver_e58a {
    display: none;
  }
  
  .shadow_3044 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .grid_fd7a img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .shadow_3044 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .shadow_3044 svg {
    width: 14px;
    height: 14px;
  }
  
  .summary_soft_77c9 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.notice_wide_7df4 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.first_79ee {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.current_eb24 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.current_eb24 svg {
  flex-shrink: 0;
}

.current_eb24 a {
  color: var(--color-primary);
  text-decoration: none;
}

.current_eb24 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .first_79ee {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.menu-advanced-a5d4 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.modal-6d1a {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .modal-6d1a {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.soft_64fe {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.soft_64fe a {
  color: var(--color-primary);
  text-decoration: none;
}

.soft_64fe a:hover {
  text-decoration: underline;
}

.over-d3b9 {
  color: var(--color-text-lighter);
}

.wrapper-advanced-2df9 {
  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) {
  .wrapper-advanced-2df9 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wrapper-advanced-2df9 {
    font-size: 1.5rem;
  }
}

.dark-03d5 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.easy_d9c3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .easy_d9c3 {
    grid-template-columns: 1fr;
  }
}

.slider_tall_4fd0 {
  display: flex;
  gap: var(--space-sm);
}

.dark_5edb {
  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;
}

.container-stone-1b15 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.container-stone-1b15 strong {
  font-weight: 600;
  color: var(--color-text);
}

.container-stone-1b15 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.aside_steel_3181 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.easy_a268 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-bronze-42da {
  position: relative;
  text-align: center;
}

.thumbnail-bronze-42da img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.gradient_dirty_3e01 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.thick_386e {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.accent_yellow_f1b9 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.button_clean_8253 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.backdrop-5333 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.alert_0a0a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .modal-6d1a {
    grid-template-columns: 1fr;
  }
  
  .wrapper-advanced-2df9 {
    font-size: 1.75rem;
  }
  
  .easy_a268 {
    order: -1;
    max-width: 100%;
  }
  
  .thumbnail-bronze-42da {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper-advanced-2df9 {
    font-size: 1.5rem;
  }
  
  .dark-03d5 {
    font-size: 1rem;
  }
  
  .soft_64fe {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .thumbnail-bronze-42da {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.accordion-0d8a {
  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;
}

.texture_action_2dd5 {
  background: var(--color-primary);
  color: white;
}

.texture_action_2dd5:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.widget-ddee {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.widget-ddee:hover {
  background: var(--color-primary);
  color: white;
}

.popup-c354 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.popup-c354:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.logo-paper-c884 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.icon_gas_2f4e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.pro-6c55 {
  padding: var(--space-xl) 0;
  background: white;
}

.chip-focused-aaf6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.plasma_095d {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.plasma_095d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.narrow-0a5a {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.disabled-pro-d4a6 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.dirty-102f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.feature-liquid-065e {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.icon_421a {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.feature-small-a375 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.lower-a57d {
  list-style: none;
  counter-reset: toc-counter;
}

.lower-a57d li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.lower-a57d 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);
}

.lower-a57d 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;
}

.lower-a57d li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.status-901e {
  padding: var(--space-xxl) 0;
}

.mask_down_3bc5 {
  background: var(--color-bg-section);
}

.link-ba06 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.thick_ee51 {
  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);
}

.block_dynamic_f1fb {
  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);
}

.picture-slow-eca9 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.hover_stale_bf5b {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .hover_stale_bf5b {
    grid-template-columns: 1fr 300px;
  }
}

.stale-0ede {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.stale-0ede img {
  max-width: 100%;
  height: auto;
  display: block;
}

.stale-0ede pre,
.stale-0ede code {
  overflow-x: auto;
  max-width: 100%;
}

.stale-0ede 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);
}

.stale-0ede h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.stale-0ede h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.stale-0ede p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.stale-0ede ul,
.stale-0ede ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.stale-0ede li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.stale-0ede strong {
  font-weight: 600;
  color: var(--color-text);
}

.stale-0ede a {
  color: var(--color-primary);
  text-decoration: underline;
}

.stale-0ede a:hover {
  color: var(--color-primary-dark);
}

.advanced_43df {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.advanced_43df li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.advanced_43df 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) {
  .hover_stale_bf5b {
    grid-template-columns: 1fr;
  }
  
  .block_dynamic_f1fb {
    font-size: 1.75rem;
  }
  
  .stale-0ede {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .block_dynamic_f1fb {
    font-size: 1.5rem;
  }
  
  .stale-0ede h3 {
    font-size: 1.375rem;
  }
  
  .stale-0ede h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.component-17d7 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.grid_cold_90d6 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.green_641a {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.overlay-3cf8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.background_over_245d strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.alert_7af0 {
  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;
}

.icon_short_e6bb {
  flex-shrink: 0;
}

.overlay_c16f strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.accordion-b1f5 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .accordion-b1f5 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.paragraph_392c,
.banner_c92b,
.message-action-8e79 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.paragraph_392c thead,
.banner_c92b thead {
  background: var(--color-primary);
  color: white;
}

.paragraph_392c th,
.paragraph_392c td,
.banner_c92b th,
.banner_c92b td,
.message-action-8e79 th,
.message-action-8e79 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .paragraph_392c th,
  .paragraph_392c td,
  .banner_c92b th,
  .banner_c92b td,
  .message-action-8e79 th,
  .message-action-8e79 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .paragraph_392c,
  .banner_c92b,
  .message-action-8e79 {
    min-width: 600px;
  }
}

.paragraph_392c th,
.banner_c92b th,
.message-action-8e79 th {
  font-weight: 600;
}

.paragraph_392c tbody tr:hover,
.banner_c92b tbody tr:hover,
.message-action-8e79 tbody tr:hover {
  background: var(--color-bg-alt);
}

.pattern-smooth-1530 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.tooltip-fc50 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.detail-3226 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.detail-3226 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.mask-9ef7 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.mask-9ef7 h4 {
  color: white;
}

.current-73ee {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.surface_steel_da6a {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.surface_steel_da6a:last-child {
  border-bottom: none;
}

.surface_steel_da6a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.surface_steel_da6a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.alert_liquid_da1e {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.column_bottom_12af {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.column_bottom_12af:hover {
  text-decoration: underline;
}

.column-pink-deea {
  text-align: center;
  margin-bottom: var(--space-md);
}

.accent-86bc {
  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);
}

.accent-86bc span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.sidebar-99b1 {
  font-weight: 600;
  color: white;
}

.large_bd08 {
  list-style: none;
  padding: 0;
}

.large_bd08 li {
  padding: var(--space-xs) 0;
}

.gallery_upper_b59d {
  color: #4caf50;
}

.slider-static-60ce {
  color: #ff9800;
}

.basic-8bf9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.article-selected-f9f0 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.widget_6544 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.outer_4b9d {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.primary-gas-0b43 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.disabled_99c9 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.red_b559 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .red_b559 {
    grid-template-columns: 1fr;
  }
}

.huge_e9d5 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.huge_e9d5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.glass-7483 {
  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;
}

.huge_e9d5 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.huge_e9d5 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.slider-390e {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.sidebar-99b1 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.surface-short-7316 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.sort-smooth-f06c {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.sort-smooth-f06c h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.logo-hot-f453 {
  max-width: 900px;
  margin: 0 auto;
}

.first-66ce {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.wide_7c98 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .wide_7c98 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.label-soft-74fa {
  margin-top: var(--space-xxl);
}

.label-soft-74fa h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tooltip_fixed_588c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .tooltip_fixed_588c {
    grid-template-columns: 1fr;
  }
}

.dropdown_3ae5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.purple-df7a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.fixed_8ebf {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.dropdown_3ae5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.dropdown_3ae5 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.dropdown_3ae5 li {
  padding: var(--space-xs) 0;
  color: white;
}

.dropdown_3ae5 .accordion-0d8a {
  width: 100%;
  background: white;
}

.purple-df7a .accordion-0d8a {
  color: #667eea;
}

.fixed_8ebf .accordion-0d8a {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.content_cold_c9ee {
  max-width: 900px;
  margin: 0 auto;
}

.thumbnail_4b04 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.pagination-right-37c6 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.new-176c {
  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);
}

.pagination-right-37c6 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.caption-138d {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .pagination-right-37c6 {
    padding: var(--space-md);
  }
  
  .caption-138d {
    padding: var(--space-md);
  }
  
  .surface-under-46a9 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.complex_0c11 ol,
.complex_0c11 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.complex_0c11 li {
  margin-bottom: var(--space-sm);
}

.complex_0c11 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.notice-b142 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.hot_a44e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.surface-under-46a9 {
  margin-top: var(--space-lg);
  text-align: center;
}

.surface-under-46a9 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.gallery-first-332c,
.tabs_bc97,
.description-a5b4,
.highlight-f00f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.component_selected_69a1 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.container_brown_31f1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.logo-last-a371 {
  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) {
  .logo-last-a371 {
    font-size: 0.625rem;
  }
}

.accent-wide-a575 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.accent-wide-a575:hover {
  background: var(--color-primary-dark);
}

.description-brown-0e6b {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.description-brown-0e6b h4 {
  margin-bottom: var(--space-md);
}

.menu-next-dc66 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.accordion_pink_a4a2 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.slider-plasma-0e7d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .slider-plasma-0e7d {
    grid-template-columns: 1fr;
  }
}

.element_9843 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.text-north-6bd4 {
  border-color: var(--color-success);
}

.old_a031 {
  border-color: var(--color-warning);
}

.hot_d2c4 {
  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);
}

.text-north-6bd4 .hot_d2c4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.old_a031 .hot_d2c4 {
  background: #fff3e0;
  color: var(--color-warning);
}

.element_9843 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.element_9843 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.container_27c5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.button-pressed-a57d {
  margin: var(--space-xxl) 0;
}

.button-pressed-a57d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.button-pressed-a57d > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.tag_dfab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .tag_dfab {
    grid-template-columns: 1fr;
  }
}

.bright-47e5 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.bright-47e5 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.breadcrumb_rough_5c57 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.breadcrumb_rough_5c57 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.grid_4639 {
  margin-top: var(--space-xxl);
}

.avatar_middle_0957 {
  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);
}

.tall-c8a5 {
  text-align: center;
}

.preview-wide-8548 {
  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);
}

.backdrop_ebd0 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.preview-wide-8548 .sidebar-99b1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.north_c1c5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.focused-a309 p {
  margin-bottom: var(--space-md);
}

.stale_fbc0 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .avatar_middle_0957 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.wrapper_dirty_4e48 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.search_63ff {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hidden_2327 {
  margin-bottom: var(--space-xl);
}

.button_58c2 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.shadow-static-16d4 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.in-0d25 {
  color: var(--color-text-light);
}

.image_active_07de {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.container_ec74 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.last-0e2c {
  font-weight: 600;
  color: var(--color-text);
}

.complex-ec11 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.heading_short_acfe {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.inner-2f76 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.caption-hovered-5111 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.pattern_a71e {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.container_715d {
  border: 2px solid #4caf50;
}

.content-stale-17eb {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.west_1249 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.disabled-d759 {
  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;
}

.aside-lite-1f5c {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.notification-full-7c91 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.button_active_b731 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.block_advanced_28aa {
  text-align: right;
}

.block_advanced_28aa .grid-smooth-e1d0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.layout-f6b2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.simple_b0ad h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.simple_b0ad p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.thumbnail-inner-c6de {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.filter_fa86 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.notice-f19f {
  background: #e8f5e9;
  color: #2e7d32;
}

.chip_9d22 {
  background: #e3f2fd;
  color: #1565c0;
}

.chip-dim-618d {
  background: #fff3e0;
  color: #e65100;
}

.narrow-6a2e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.narrow-6a2e span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.short_9d75 {
  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);
}

.short_9d75:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.pagination_f7d7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.accent_new_0cb2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.accent_new_0cb2 strong {
  color: var(--color-primary);
}

.sidebar-8e6d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.outline-liquid-698b {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.notice-middle-4f08 {
  max-width: 900px;
  margin: 0 auto;
}

.solid-b60c {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.top-009e {
  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);
}

.top-009e:hover {
  background: var(--color-bg-alt);
}

.backdrop-c648 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.top-009e[aria-expanded="true"] .backdrop-c648 {
  transform: rotate(180deg);
}

.box_6801 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.box_6801 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.box_6801 ul,
.box_6801 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.box_6801 li {
  margin-bottom: var(--space-xs);
}

.text_slow_15bb {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.grid-yellow-d7f8 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.text_slow_15bb code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.plasma_0412 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.tooltip_dirty_db79 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.static_b9a5 {
  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);
}

.block-9d78 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.avatar-orange-7806 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .avatar-orange-7806 {
    grid-template-columns: 1fr;
  }
}

.stone-df4a,
.search_steel_676f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stone-df4a {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.search_steel_676f {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.stone-df4a h4,
.search_steel_676f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.stone-df4a ul,
.search_steel_676f ul {
  list-style: none;
  padding: 0;
}

.stone-df4a li,
.search_steel_676f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.tabs-35c5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .tabs-35c5 {
    grid-template-columns: 1fr;
  }
}

.input-248f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.fresh-8eae {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.main-755a {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.input-248f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.input-248f ul {
  list-style: none;
  padding: 0;
}

.input-248f li {
  padding: var(--space-xs) 0;
  color: white;
}

.hero_48b7 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.hero_48b7 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.hero_48b7 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.slider_copper_666b {
  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);
}

.section-first-00c7 {
  font-style: italic;
}

.panel-155e {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.bronze-fc44 {
  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;
}

.bronze-fc44 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.bronze-fc44 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.first_c5a5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.out_1247 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.overlay-up-3744 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section_1e50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .section_1e50 {
    grid-template-columns: 1fr;
  }
}

.pro-5508 {
  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);
}

.pro-5508:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wide-bb8b {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.pro-5508 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.pro-5508 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.header-dim-90e6 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.last_b60d {
  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) */
.gold_5777 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.up_3f63 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.up_3f63 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.box_8632 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.box_8632 li {
  margin-bottom: var(--space-xs);
}

.box_8632 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.box_8632 a:hover {
  color: white;
}

.input_action_7b9c {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.input_action_7b9c 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);
}

.input_action_7b9c a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.bright-0c81 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.bright-0c81 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.bright-0c81 a:hover {
  color: white;
}

.gallery-821e > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .last_b60d,
  .gold_5777 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.shade_in_ef0e h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.secondary_412a p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.alert-orange-fa17 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.alert-orange-fa17 .slider_tall_4fd0 {
  color: #4caf50;
  font-size: 0.875rem;
}

.badge-down-51e3 {
  list-style: none;
  padding: 0;
}

.badge-down-51e3 li {
  margin-bottom: var(--space-xs);
}

.badge-down-51e3 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.badge-down-51e3 a:hover {
  color: white;
}

.tooltip_3e91 {
  list-style: none;
  padding: 0;
}

.tooltip_3e91 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.tooltip_3e91 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tooltip_3e91 a:hover {
  color: white;
}

.gallery-821e {
  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);
}

.list-89c7 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.list-89c7 a {
  color: #4caf50;
  text-decoration: none;
}

.form-1f36 {
  font-size: 0.75rem;
  color: #666666;
}

.dropdown_5a58 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.dropdown_5a58 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.dropdown_5a58 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;
}

.logo-79af {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.logo-79af:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gallery-821e {
    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;
  }
  
  .wrapper-advanced-2df9 {
    font-size: 2rem;
  }
  
  .block_dynamic_f1fb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .modal-6d1a,
  .hover_stale_bf5b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .red_b559,
  .slider-plasma-0e7d,
  .tooltip_fixed_588c,
  .tag_dfab,
  .avatar-orange-7806,
  .tabs-35c5,
  .section_1e50,
  .last_b60d,
  .gold_5777 {
    grid-template-columns: 1fr;
  }
  
  .chip-focused-aaf6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .status-901e {
    padding: var(--space-lg) 0;
  }
  
  .lower-a57d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .lower-a57d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accordion-0d8a {
    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;
  }
  
  .chip-focused-aaf6 {
    grid-template-columns: 1fr;
  }
  
  .aside_steel_3181,
  .first_c5a5,
  .menu-next-dc66 {
    flex-direction: column;
    width: 100%;
  }
  
  .logo-paper-c884,
  .icon_gas_2f4e,
  .aside_steel_3181 .accordion-0d8a,
  .first_c5a5 .accordion-0d8a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper-advanced-2df9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .block_dynamic_f1fb {
    font-size: 1.375rem;
  }
  
  .narrow-0a5a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .plasma_095d,
  .huge_e9d5,
  .detail-3226,
  .pattern_a71e,
  .thumbnail_4b04 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .logo-last-a371 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .first_79ee {
    gap: var(--space-xs);
  }
  
  .current_eb24 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accent-86bc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .preview-wide-8548 {
    width: 150px;
    height: 150px;
  }
  
  .backdrop_ebd0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .top_a152,
  .notice_wide_7df4,
  .aside_steel_3181,
  .bronze-fc44,
  .out_1247,
  .header-dim-90e6,
  .panel_smooth_0c6a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .status-901e {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.action_a62f {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 4e80 */
.ghost-box-x6 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
