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

.stone_90e1:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.description_7f3d,
header,
.south_6bf3,
.disabled_eaa2,
.media-9b08,
.fixed-ada2,
.hover_advanced_d4e3,
.pink_6d5b,
.tertiary-rough-6292 {
  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
   ============================================ */
.description_7f3d {
  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);
}

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

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

/* Scrolled state */
.description_7f3d.notice-silver-3918 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.card-72e0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.wrapper-pink-c18a {
  flex: 1;
}

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

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

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

.advanced_a77c.fn-active-ce3f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.wrapper-97f9 {
  position: relative;
}

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

.gallery-north-0a28 svg {
  transition: transform 0.2s ease;
}

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

.carousel-stone-196b {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.wrapper-97f9:hover .carousel-stone-196b {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.info-3947 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.label_small_3b98[aria-expanded="true"] .paragraph-1e79:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .wrapper-pink-c18a {
    display: none;
  }
  
  .label_small_3b98 {
    display: flex;
  }
  
  .notice-a3e9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .info-3947,
  .photo_blue_cfae {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .wrapper-97f9 {
    position: relative;
  }
  
  .carousel-stone-196b {
    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;
  }
  
  .gallery-north-0a28[aria-expanded="true"] + .carousel-stone-196b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .focus-inner-0804 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dynamic_3afc {
    gap: 8px;
  }
  
  .info-3947 {
    display: none;
  }
  
  .photo_blue_cfae {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .card-72e0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.disabled_54de svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-7fa4 {
  display: flex;
  gap: var(--space-sm);
}

.widget-light-edb2 {
  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;
}

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

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

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

.overlay-pressed-d97d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .up_7416 {
    grid-template-columns: 1fr;
  }
  
  .shadow-dc4e {
    font-size: 1.75rem;
  }
  
  .liquid_271b {
    order: -1;
    max-width: 100%;
  }
  
  .hero_dafb {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shadow-dc4e {
    font-size: 1.5rem;
  }
  
  .orange_e8d9 {
    font-size: 1rem;
  }
  
  .gallery_silver_3184 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hero_dafb {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.nav-silver-95ea {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-warm-8b9d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.accent_gold_08b2 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;
}

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

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

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

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

.secondary-stone-bbce {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone_d9b0 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) {
  .column_715d {
    grid-template-columns: 1fr;
  }
  
  .label_gas_83a4 {
    font-size: 1.75rem;
  }
  
  .preview_5706 {
    max-width: 100%;
  }
}

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

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

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

.aside-19b4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.cold-73dc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.caption-current-468b strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.wrapper_wide_e05c {
  flex-shrink: 0;
}

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

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

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

.table-cold-6988,
.active-4513,
.surface-cda0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.table-cold-6988 thead,
.active-4513 thead {
  background: var(--color-primary);
  color: white;
}

.table-cold-6988 th,
.table-cold-6988 td,
.active-4513 th,
.active-4513 td,
.surface-cda0 th,
.surface-cda0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .table-cold-6988 th,
  .table-cold-6988 td,
  .active-4513 th,
  .active-4513 td,
  .surface-cda0 th,
  .surface-cda0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .table-cold-6988,
  .active-4513,
  .surface-cda0 {
    min-width: 600px;
  }
}

.table-cold-6988 th,
.active-4513 th,
.surface-cda0 th {
  font-weight: 600;
}

.table-cold-6988 tbody tr:hover,
.active-4513 tbody tr:hover,
.surface-cda0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.easy-b85a h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-2b34 {
  list-style: none;
  padding: 0;
}

.texture-2b34 li {
  padding: var(--space-xs) 0;
}

.video-fixed-c7ca {
  color: #4caf50;
}

.layout-top-dcf7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.surface-89f7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_0a1c .nav-silver-95ea {
  width: 100%;
  background: white;
}

.content_right_c2b1 .nav-silver-95ea {
  color: #667eea;
}

.row_right_b21b .nav-silver-95ea {
  color: #f5576c;
}

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

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

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

.pattern-fluid-d687 {
  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);
}

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

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

@media (max-width: 768px) {
  .gallery_blue_1257 {
    padding: var(--space-md);
  }
  
  .thick-9826 {
    padding: var(--space-md);
  }
  
  .accent_f514 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.nav-8d90 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.gradient_5c7e,
.aside_copper_b816,
.paragraph-outer-f48e,
.picture-stone-f6bc {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.down-9da2:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.carousel-advanced-eb2d {
  border-color: var(--color-success);
}

.disabled-silver-955a {
  border-color: var(--color-warning);
}

.backdrop-bottom-b0da {
  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);
}

.carousel-advanced-eb2d .backdrop-bottom-b0da {
  background: #e8f5e9;
  color: var(--color-success);
}

.disabled-silver-955a .backdrop-bottom-b0da {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.up-1b87 {
  margin-top: var(--space-xxl);
}

.feature-fresh-7332 {
  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);
}

.info_yellow_96e3 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-south-40ea {
  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;
}

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

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

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

.hover-over-b0d8 {
  text-align: right;
}

.hover-over-b0d8 .glass-77c8 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.media-green-7225 {
  background: #e8f5e9;
  color: #2e7d32;
}

.preview-0684 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.cold-a41c[aria-expanded="true"] .silver_29ea {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav_d6e4,
.main-north-f6e3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.nav_d6e4 h4,
.main-north-f6e3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.nav_d6e4 ul,
.main-north-f6e3 ul {
  list-style: none;
  padding: 0;
}

.nav_d6e4 li,
.main-north-f6e3 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.tabs_pro_b491 {
  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_pro_b491 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.border_9e85 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.tall-9567 {
  font-style: italic;
}

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

.gallery-0e26 {
  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;
}

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

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

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

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

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

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

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

.main-medium-559d {
  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);
}

.main-medium-559d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.section-2b68 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

.main-medium-559d p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.green_d90a a:hover {
  color: white;
}

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

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

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

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

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

.image-ec3a a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .component-east-88ad,
  .icon-a21e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.gas-d013 .texture-7fa4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.sort-action-dbdb {
  list-style: none;
  padding: 0;
}

.sort-action-dbdb li {
  margin-bottom: var(--space-xs);
}

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

.sort-action-dbdb a:hover {
  color: white;
}

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

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

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

.gas_c107 a:hover {
  color: white;
}

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

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

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

.tiny-7c0a {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.texture_5411 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;
}

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

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

@media (max-width: 768px) {
  .shadow-8076 {
    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;
  }
  
  .shadow-dc4e {
    font-size: 2rem;
  }
  
  .label_gas_83a4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .up_7416,
  .column_715d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button-c998,
  .image-large-c176,
  .message-0780,
  .sort-d443,
  .modal-in-ce4a,
  .tabs_pro_b491,
  .image_yellow_06f8,
  .component-east-88ad,
  .icon-a21e {
    grid-template-columns: 1fr;
  }
  
  .hard_5e4d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hover_advanced_d4e3 {
    padding: var(--space-lg) 0;
  }
  
  .accent_gold_08b2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .accent_gold_08b2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .nav-silver-95ea {
    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;
  }
  
  .hard_5e4d {
    grid-template-columns: 1fr;
  }
  
  .overlay-pressed-d97d,
  .filter_focused_1aef,
  .last-5631 {
    flex-direction: column;
    width: 100%;
  }
  
  .paper_bd73,
  .up_b0e6,
  .overlay-pressed-d97d .nav-silver-95ea,
  .filter_focused_1aef .nav-silver-95ea {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shadow-dc4e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .label_gas_83a4 {
    font-size: 1.375rem;
  }
  
  .tooltip-6ea6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .fast_d2b8,
  .bottom-5b79,
  .fixed-abfe,
  .white-d6ce,
  .preview_d27e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .block-large-d8a7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .frame-soft-0d12 {
    gap: var(--space-xs);
  }
  
  .disabled_54de {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .prev-3167 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .advanced_30bb {
    width: 150px;
    height: 150px;
  }
  
  .article_green_1ad2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .description_7f3d,
  .south_6bf3,
  .overlay-pressed-d97d,
  .gallery-0e26,
  .pink_6d5b,
  .tertiary-rough-6292,
  .label_small_3b98 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hover_advanced_d4e3 {
    page-break-inside: avoid;
  }
}

/* css-noise: 8812 */
.ghost-box-i0 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.0;
}
