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

.outline_f897:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.item_9dc8,
header,
.east_8c8d,
.icon-9563,
.shadow_inner_65bc,
.link-warm-412f,
.stale_a0bf,
.tertiary_motion_f8bd,
.label-fluid-8652 {
  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
   ============================================ */
.item_9dc8 {
  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);
}

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

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

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

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

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

.border-narrow-7c0b img {
  height: 36px;
  width: auto;
  display: block;
}

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

.form-up-bd2f {
  flex: 1;
}

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

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

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

.carousel_brown_1b2a.fn-active-7546 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern_pro_8200 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.filter-soft-99e9[aria-expanded="true"] .warm_c7d0:nth-child(2) {
  opacity: 0;
}

.filter-soft-99e9[aria-expanded="true"] .warm_c7d0:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .form-up-bd2f::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .form-up-bd2f.notification-6500 {
    display: block;
    right: 0;
  }
  
  .panel_3ae8 {
    flex-direction: column;
    gap: 0;
  }
  
  .carousel_brown_1b2a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .form-up-bd2f::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;
  }
  
  .form-up-bd2f.notification-6500::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .form-up-bd2f {
    display: none;
  }
  
  .filter-soft-99e9 {
    display: flex;
  }
  
  .notice_clean_3c17 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pattern_pro_8200,
  .gradient_medium_a2a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .south_7e60 {
    position: relative;
  }
  
  .backdrop-7ed1 {
    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;
  }
  
  .notification_9ab6[aria-expanded="true"] + .backdrop-7ed1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fixed-f587 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .top_2c75 {
    gap: 8px;
  }
  
  .pattern_pro_8200 {
    display: none;
  }
  
  .gradient_medium_a2a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .border-narrow-7c0b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.notification-7302 svg {
  flex-shrink: 0;
}

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

.notification-7302 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.prev-466e {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.modal-next-f466 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.panel-first-520c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .caption-glass-4174 {
    grid-template-columns: 1fr;
  }
  
  .column-clean-e10e {
    font-size: 1.75rem;
  }
  
  .hovered_d997 {
    order: -1;
    max-width: 100%;
  }
  
  .row_iron_11c7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column-clean-e10e {
    font-size: 1.5rem;
  }
  
  .tabs-1d11 {
    font-size: 1rem;
  }
  
  .tertiary_c3d9 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .row_iron_11c7 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.main-lite-0b19 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

.chip-basic-1e4e {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.tabs-b347 li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.tabs-b347 li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

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

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

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

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

.row-26c0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout_fast_3060 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) {
  .background-4bc5 {
    grid-template-columns: 1fr;
  }
  
  .row-26c0 {
    font-size: 1.75rem;
  }
  
  .orange_a965 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .row-26c0 {
    font-size: 1.5rem;
  }
  
  .orange_a965 h3 {
    font-size: 1.375rem;
  }
  
  .orange_a965 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.column-9d31 {
  flex-shrink: 0;
}

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

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

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

.down-c375,
.hover_6164,
.fixed-ee59 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.down-c375 thead,
.hover_6164 thead {
  background: var(--color-primary);
  color: white;
}

.down-c375 th,
.down-c375 td,
.hover_6164 th,
.hover_6164 td,
.fixed-ee59 th,
.fixed-ee59 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .down-c375 th,
  .down-c375 td,
  .hover_6164 th,
  .hover_6164 td,
  .fixed-ee59 th,
  .fixed-ee59 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .down-c375,
  .hover_6164,
  .fixed-ee59 {
    min-width: 600px;
  }
}

.down-c375 th,
.hover_6164 th,
.fixed-ee59 th {
  font-weight: 600;
}

.down-c375 tbody tr:hover,
.hover_6164 tbody tr:hover,
.fixed-ee59 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gold-803c h4 {
  color: white;
}

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

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

.overlay-tiny-a638:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.tag-5123 {
  font-weight: 600;
  color: white;
}

.up-5ef2 {
  list-style: none;
  padding: 0;
}

.up-5ef2 li {
  padding: var(--space-xs) 0;
}

.label-b0e0 {
  color: #4caf50;
}

.content-e197 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu_d941 .alert_rough_8963 {
  width: 100%;
  background: white;
}

.description_4236 .alert_rough_8963 {
  color: #667eea;
}

.plasma-ab28 .alert_rough_8963 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

.red-58cb li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.hidden-blue-8ded,
.avatar_d0b5,
.sidebar-advanced-2a60,
.gallery_large_4bea {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.border-small-0e46:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.logo-93bd {
  border-color: var(--color-success);
}

.shadow-outer-51db {
  border-color: var(--color-warning);
}

.wrapper-5cac {
  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);
}

.logo-93bd .wrapper-5cac {
  background: #e8f5e9;
  color: var(--color-success);
}

.shadow-outer-51db .wrapper-5cac {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.badge-wood-a44c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.avatar-center-c6e9 {
  margin-top: var(--space-xxl);
}

.link-28d2 {
  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);
}

.gallery_iron_5364 {
  text-align: center;
}

.message-over-913a {
  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);
}

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

.message-over-913a .tag-5123 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.border-static-47a7 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.carousel-narrow-9d42 p {
  margin-bottom: var(--space-md);
}

.disabled-large-14cf {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.header-black-c33e {
  margin-bottom: var(--space-xl);
}

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

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

.component-easy-8763 {
  color: var(--color-text-light);
}

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

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

.old-43e5 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.modal-tiny-a104 {
  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;
}

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

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

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

.paragraph_dca3 {
  text-align: right;
}

.paragraph_dca3 .mask-outer-4a67 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.box-prev-67b6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.wrapper-thick-b9bf {
  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);
}

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

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

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

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

.detail-last-2ca1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.dropdown-fresh-fdc0 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

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

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

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

.status-fd5d[aria-expanded="true"] .orange_d196 {
  transform: rotate(180deg);
}

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

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

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

.tall-42f2 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.tabs-fe89,
.card-8c9e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tabs-fe89 h4,
.card-8c9e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tabs-fe89 ul,
.card-8c9e ul {
  list-style: none;
  padding: 0;
}

.tabs-fe89 li,
.card-8c9e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.bronze-049c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.inner-b3a3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask_7805 a:hover {
  color: white;
}

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

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

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

.fluid-34b6 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.fluid-34b6 a:hover {
  color: white;
}

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

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

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

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

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

.video-1180 .modal-next-f466 {
  color: #4caf50;
  font-size: 0.875rem;
}

.liquid-4163 {
  list-style: none;
  padding: 0;
}

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

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

.liquid-4163 a:hover {
  color: white;
}

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

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

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

.simple_e500 a:hover {
  color: white;
}

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

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

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

.heading-simple-e2a4 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .medium_5dad {
    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;
  }
  
  .column-clean-e10e {
    font-size: 2rem;
  }
  
  .row-26c0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .caption-glass-4174,
  .background-4bc5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade_849e,
  .chip-8cea,
  .highlight-f4f4,
  .thumbnail-1172,
  .widget-263b,
  .detail_middle_8fea,
  .inner-492b,
  .inner-f8c6,
  .hidden_south_9f69 {
    grid-template-columns: 1fr;
  }
  
  .accent-cool-62bf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .stale_a0bf {
    padding: var(--space-lg) 0;
  }
  
  .tabs-b347 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs-b347 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .alert_rough_8963 {
    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;
  }
  
  .accent-cool-62bf {
    grid-template-columns: 1fr;
  }
  
  .panel-first-520c,
  .component_up_7e80,
  .heading_top_118a {
    flex-direction: column;
    width: 100%;
  }
  
  .main-lite-0b19,
  .wrapper_0d3a,
  .panel-first-520c .alert_rough_8963,
  .component_up_7e80 .alert_rough_8963 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column-clean-e10e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .row-26c0 {
    font-size: 1.375rem;
  }
  
  .mask_87df {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .copper-0a1a,
  .fixed_58df,
  .glass_87c8,
  .focused-6870,
  .border-3e27 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tag-a750 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .primary_steel_4801 {
    gap: var(--space-xs);
  }
  
  .notification-7302 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .new_36f9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .message-over-913a {
    width: 150px;
    height: 150px;
  }
  
  .background-silver-c3b1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .item_9dc8,
  .east_8c8d,
  .panel-first-520c,
  .lite-a858,
  .tertiary_motion_f8bd,
  .label-fluid-8652,
  .filter-soft-99e9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .stale_a0bf {
    page-break-inside: avoid;
  }
}

/* css-noise: 9786 */
.shadow-element-s0 {
  padding: 0.5rem;
  font-size: 13px;
  line-height: 1.3;
}
