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

.detail_purple_dd18:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.notification_0420,
header,
.tabs-liquid-32ce,
.bronze-16aa,
.stone_4fd5,
.description-gold-77db,
.component-422a,
.narrow_231e,
.photo_9047 {
  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
   ============================================ */
.notification_0420 {
  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);
}

.accordion-0d50 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.breadcrumb_a5ea {
  flex: 1;
}

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

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

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

.secondary_motion_d524.fn-active-9162 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.paragraph-8da3 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.text-copper-8cc6 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.gradient-6572 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.outline-white-79ba {
  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;
}

.outline-white-79ba: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);
}

.outline-white-79ba svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.column-old-4ca6 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.glass_79c2[aria-expanded="true"] .column-old-4ca6:nth-child(2) {
  opacity: 0;
}

.glass_79c2[aria-expanded="true"] .column-old-4ca6:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .breadcrumb_a5ea::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .breadcrumb_a5ea.popup_gas_ac5d {
    display: block;
    right: 0;
  }
  
  .highlight-soft-89e3 {
    flex-direction: column;
    gap: 0;
  }
  
  .secondary_motion_d524 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .breadcrumb_a5ea::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;
  }
  
  .breadcrumb_a5ea.popup_gas_ac5d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .breadcrumb_a5ea {
    display: none;
  }
  
  .glass_79c2 {
    display: flex;
  }
  
  .picture-da6a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gradient-6572,
  .outline-white-79ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .paragraph-8da3 {
    position: relative;
  }
  
  .stone-3990 {
    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;
  }
  
  .fast_ec3f[aria-expanded="true"] + .stone-3990 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gradient-clean-ec93 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .text-copper-8cc6 {
    gap: 8px;
  }
  
  .gradient-6572 {
    display: none;
  }
  
  .outline-white-79ba {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .chip_pro_1f70 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .outline-white-79ba {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .outline-white-79ba svg {
    width: 14px;
    height: 14px;
  }
  
  .hover-72d2 {
    gap: var(--space-sm);
  }
}

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

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

.thick-2d2e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.thick-2d2e svg {
  flex-shrink: 0;
}

.thick-2d2e a {
  color: var(--color-primary);
  text-decoration: none;
}

.thick-2d2e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.grid-6fe7 a {
  color: var(--color-primary);
  text-decoration: none;
}

.grid-6fe7 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.paper-933a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.paper-933a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.advanced-c17c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.hard-9eed {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tooltip_selected_0f7d {
    grid-template-columns: 1fr;
  }
  
  .widget-15b5 {
    font-size: 1.75rem;
  }
  
  .modal_stone_dd1e {
    order: -1;
    max-width: 100%;
  }
  
  .hard-9eed {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .widget-15b5 {
    font-size: 1.5rem;
  }
  
  .gradient_fast_4804 {
    font-size: 1rem;
  }
  
  .grid-6fe7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hard-9eed {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-bd3c 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;
}

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

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

.purple-0f78 {
  background: var(--color-bg-section);
}

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

.hover-lower-77ae {
  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);
}

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

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

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

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

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

.border-smooth-c523 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.border-smooth-c523 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);
}

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

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

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

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

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

.border-smooth-c523 strong {
  font-weight: 600;
  color: var(--color-text);
}

.border-smooth-c523 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.border-smooth-c523 a:hover {
  color: var(--color-primary-dark);
}

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

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

.aside-4458 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) {
  .overlay_bac5 {
    grid-template-columns: 1fr;
  }
  
  .east_39d8 {
    font-size: 1.75rem;
  }
  
  .border-smooth-c523 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .east_39d8 {
    font-size: 1.5rem;
  }
  
  .border-smooth-c523 h3 {
    font-size: 1.375rem;
  }
  
  .border-smooth-c523 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.section-prev-e0f2 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.avatar-8bb2 {
  flex-shrink: 0;
}

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

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

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

.search-cold-8671,
.badge-42cc,
.fixed_5315 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.search-cold-8671 thead,
.badge-42cc thead {
  background: var(--color-primary);
  color: white;
}

.search-cold-8671 th,
.search-cold-8671 td,
.badge-42cc th,
.badge-42cc td,
.fixed_5315 th,
.fixed_5315 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .search-cold-8671 th,
  .search-cold-8671 td,
  .badge-42cc th,
  .badge-42cc td,
  .fixed_5315 th,
  .fixed_5315 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .search-cold-8671,
  .badge-42cc,
  .fixed_5315 {
    min-width: 600px;
  }
}

.search-cold-8671 th,
.badge-42cc th,
.fixed_5315 th {
  font-weight: 600;
}

.search-cold-8671 tbody tr:hover,
.badge-42cc tbody tr:hover,
.fixed_5315 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gas-4425 h4 {
  color: white;
}

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

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

.block-ede5:last-child {
  border-bottom: none;
}

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

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

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

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

.menu-lite-0a0f:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.heading-narrow-b73e {
  color: #4caf50;
}

.brown-e39b {
  color: #ff9800;
}

.accordion-easy-37e4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.dark-22ae {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.tiny-829f {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.liquid-107a .header-tiny-c866 {
  width: 100%;
  background: white;
}

.preview-ffbf .header-tiny-c866 {
  color: #667eea;
}

.notification_gas_b9f3 .header-tiny-c866 {
  color: #f5576c;
}

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

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

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

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

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

.tertiary-under-cf7e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .dynamic_772d {
    padding: var(--space-md);
  }
  
  .tertiary-under-cf7e {
    padding: var(--space-md);
  }
  
  .menu-old-9130 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.box_450c,
.paragraph-bf80,
.pagination_5cb8,
.dynamic-b9d4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pagination_3c6d .modal_2a3a {
  background: #e8f5e9;
  color: var(--color-success);
}

.header_7285 .modal_2a3a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.label-simple-5eeb {
  margin-top: var(--space-xxl);
}

.gas-6dec {
  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);
}

.dropdown-e21d {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-f759 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.static-ba04 {
  text-align: right;
}

.static-ba04 .main-f548 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.next-c895 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.complex-99a0 {
  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);
}

.complex-99a0:hover {
  background: var(--color-bg-alt);
}

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

.complex-99a0[aria-expanded="true"] .background_top_fe41 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_6a9a,
.solid-ba79 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.description_6a9a h4,
.solid-ba79 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.description_6a9a ul,
.solid-ba79 ul {
  list-style: none;
  padding: 0;
}

.description_6a9a li,
.solid-ba79 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.progress-up-9a1a {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.banner_tiny_d8de {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_gold_1493 a:hover {
  color: white;
}

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

.carousel-0e53 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);
}

.carousel-0e53 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.dim_9b07 a:hover {
  color: white;
}

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

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

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

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

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

.video_f9ac .wood_762c {
  color: #4caf50;
  font-size: 0.875rem;
}

.east-eca5 {
  list-style: none;
  padding: 0;
}

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

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

.east-eca5 a:hover {
  color: white;
}

.sidebar-east-a6ec {
  list-style: none;
  padding: 0;
}

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

.sidebar-east-a6ec a {
  color: #b0b0b0;
  text-decoration: none;
}

.sidebar-east-a6ec a:hover {
  color: white;
}

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

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

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

.element-dirty-5d97 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.heading-8fa3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .disabled-d789 {
    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;
  }
  
  .widget-15b5 {
    font-size: 2rem;
  }
  
  .east_39d8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tooltip_selected_0f7d,
  .overlay_bac5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focus-c08b,
  .breadcrumb-center-b16e,
  .highlight-ad22,
  .tooltip-over-f063,
  .secondary_soft_f033,
  .main_f085,
  .grid_iron_7639,
  .widget_7ce0,
  .hover_4030 {
    grid-template-columns: 1fr;
  }
  
  .shadow-17f6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .component-422a {
    padding: var(--space-lg) 0;
  }
  
  .message-bd3c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .message-bd3c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .header-tiny-c866 {
    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;
  }
  
  .shadow-17f6 {
    grid-template-columns: 1fr;
  }
  
  .advanced-c17c,
  .cold_fc18,
  .status-outer-82c9 {
    flex-direction: column;
    width: 100%;
  }
  
  .mask_brown_44a2,
  .shadow_simple_8ef3,
  .advanced-c17c .header-tiny-c866,
  .cold_fc18 .header-tiny-c866 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .widget-15b5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .east_39d8 {
    font-size: 1.375rem;
  }
  
  .sidebar-378e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .detail_orange_1950,
  .content_7fb7,
  .header_9ffb,
  .dynamic-8b4a,
  .plasma-d653 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .nav-hot-5769 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .disabled_2de0 {
    gap: var(--space-xs);
  }
  
  .thick-2d2e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .info_085a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tall_badb {
    width: 150px;
    height: 150px;
  }
  
  .panel_fresh_2ea1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notification_0420,
  .tabs-liquid-32ce,
  .advanced-c17c,
  .badge-ed1c,
  .narrow_231e,
  .photo_9047,
  .glass_79c2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .component-422a {
    page-break-inside: avoid;
  }
}

/* css-noise: 1d20 */
.phantom-card-q4 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.1;
}
