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

.liquid_33a2:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.left-fb91,
header,
.shadow-action-6d32,
.accent_c77c,
.texture-0db8,
.hard-703f,
.hero-advanced-1ad8,
.avatar_e392,
.secondary_6f78 {
  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
   ============================================ */
.left-fb91 {
  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);
}

.center-17de {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.hidden-73d8 {
  flex: 1;
}

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

.panel-middle-30c3 {
  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);
}

.panel-middle-30c3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.panel-middle-30c3.fn-active-1036 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.avatar-prev-857b {
  position: relative;
}

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

.popup-cf47 svg {
  transition: transform 0.2s ease;
}

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

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

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.avatar-prev-857b:hover .complex-ed9a {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.alert_663e svg {
  flex-shrink: 0;
}

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

.hot-18a1: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);
}

.hot-18a1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

/* Hamburger animation when active */
.primary-pink-8e0c[aria-expanded="true"] .backdrop-clean-bef6:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.primary-pink-8e0c[aria-expanded="true"] .backdrop-clean-bef6:nth-child(2) {
  opacity: 0;
}

.primary-pink-8e0c[aria-expanded="true"] .backdrop-clean-bef6:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .hidden-73d8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hidden-73d8.stone_d138 {
    display: block;
    right: 0;
  }
  
  .fresh_846e {
    flex-direction: column;
    gap: 0;
  }
  
  .panel-middle-30c3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hidden-73d8::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;
  }
  
  .hidden-73d8.stone_d138::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hidden-73d8 {
    display: none;
  }
  
  .primary-pink-8e0c {
    display: flex;
  }
  
  .panel_over_6b46 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .alert_663e,
  .hot-18a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .avatar-prev-857b {
    position: relative;
  }
  
  .complex-ed9a {
    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;
  }
  
  .popup-cf47[aria-expanded="true"] + .complex-ed9a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .caption-7877 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .up-0a16 {
    gap: 8px;
  }
  
  .alert_663e {
    display: none;
  }
  
  .hot-18a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown_slow_5de4 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .hot-18a1 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .hot-18a1 svg {
    width: 14px;
    height: 14px;
  }
  
  .out_502c {
    gap: var(--space-sm);
  }
}

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

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

.search-wood-3662 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-wood-3662 svg {
  flex-shrink: 0;
}

.search-wood-3662 a {
  color: var(--color-primary);
  text-decoration: none;
}

.search-wood-3662 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.over-8e32 a {
  color: var(--color-primary);
  text-decoration: none;
}

.over-8e32 a:hover {
  text-decoration: underline;
}

.item-976c {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.notification-0e58 {
  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;
}

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

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

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

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

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

.form-silver-59d6 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .huge_67ef {
    grid-template-columns: 1fr;
  }
  
  .paragraph_588d {
    font-size: 1.75rem;
  }
  
  .tag_soft_981e {
    order: -1;
    max-width: 100%;
  }
  
  .form-silver-59d6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .paragraph_588d {
    font-size: 1.5rem;
  }
  
  .easy-0737 {
    font-size: 1rem;
  }
  
  .over-8e32 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .form-silver-59d6 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-27ce {
  list-style: none;
  counter-reset: toc-counter;
}

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

.tiny-27ce 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);
}

.tiny-27ce 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.hero-advanced-1ad8 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

.heading-out-4c11 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.heading-out-4c11 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.heading-out-4c11 pre,
.heading-out-4c11 code {
  overflow-x: auto;
  max-width: 100%;
}

.heading-out-4c11 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);
}

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

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

.heading-out-4c11 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.heading-out-4c11 ul,
.heading-out-4c11 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.heading-out-4c11 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.heading-out-4c11 strong {
  font-weight: 600;
  color: var(--color-text);
}

.heading-out-4c11 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.heading-out-4c11 a:hover {
  color: var(--color-primary-dark);
}

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

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

.dirty_b437 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) {
  .modal_3320 {
    grid-template-columns: 1fr;
  }
  
  .chip-e57c {
    font-size: 1.75rem;
  }
  
  .heading-out-4c11 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .chip-e57c {
    font-size: 1.5rem;
  }
  
  .heading-out-4c11 h3 {
    font-size: 1.375rem;
  }
  
  .heading-out-4c11 h4 {
    font-size: 1.125rem;
  }
}

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

.last-1fd2 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.sidebar-active-9b76 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.element-4dd1 {
  flex-shrink: 0;
}

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

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

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

.notice-9e8f,
.frame_pressed_3840,
.bright_34f6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notice-9e8f thead,
.frame_pressed_3840 thead {
  background: var(--color-primary);
  color: white;
}

.notice-9e8f th,
.notice-9e8f td,
.frame_pressed_3840 th,
.frame_pressed_3840 td,
.bright_34f6 th,
.bright_34f6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notice-9e8f th,
  .notice-9e8f td,
  .frame_pressed_3840 th,
  .frame_pressed_3840 td,
  .bright_34f6 th,
  .bright_34f6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notice-9e8f,
  .frame_pressed_3840,
  .bright_34f6 {
    min-width: 600px;
  }
}

.notice-9e8f th,
.frame_pressed_3840 th,
.bright_34f6 th {
  font-weight: 600;
}

.notice-9e8f tbody tr:hover,
.frame_pressed_3840 tbody tr:hover,
.bright_34f6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.bright_37da h4 {
  color: white;
}

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

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

.frame-d87e:last-child {
  border-bottom: none;
}

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

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

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

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

.active-eb2f:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.gallery_2f5a {
  color: #4caf50;
}

.shadow-warm-2de3 {
  color: #ff9800;
}

.label-43d7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.layout-selected-7cfb {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-short-93fa {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.accent-short-93fa ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.accent-short-93fa li {
  padding: var(--space-xs) 0;
  color: white;
}

.accent-short-93fa .accent_d030 {
  width: 100%;
  background: white;
}

.popup-middle-0d3d .accent_d030 {
  color: #667eea;
}

.wrapper_motion_f3f4 .accent_d030 {
  color: #f5576c;
}

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

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

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

.link-mini-4dfb {
  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);
}

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

.green-709e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .aside_fast_edd9 {
    padding: var(--space-md);
  }
  
  .green-709e {
    padding: var(--space-md);
  }
  
  .logo-lower-c1b2 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.gallery-1c3e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.active_5708,
.motion_a994,
.paragraph-70ec,
.summary-copper-c4ac {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool-735f {
  border-color: var(--color-warning);
}

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

.static_583c .caption_small_22aa {
  background: #e8f5e9;
  color: var(--color-success);
}

.cool-735f .caption_small_22aa {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.tabs-dirty-3f80 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.tertiary-top-a999 {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .texture-middle-0a9c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.secondary-7ba3 {
  margin-top: var(--space-xxl);
}

.hero-mini-f016 {
  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);
}

.active_stale_40c7 {
  text-align: center;
}

.hidden-cool-05b8 {
  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);
}

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

.hidden-cool-05b8 .video_huge_7b2f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.logo-inner-bc2e {
  color: var(--color-text-light);
}

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

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

.mini-2ffb {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.cold-380a {
  border: 2px solid #4caf50;
}

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

.outline-0d0d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.button_1602 {
  text-align: right;
}

.button_1602 .pattern_dim_3445 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.hover-east-8d07 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.motion-3fe2 {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.search-tiny-4d4c {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.paragraph-light-88da {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.backdrop_6802[aria-expanded="true"] .paragraph-light-88da {
  transform: rotate(180deg);
}

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

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

.accordion-pressed-171e ul,
.accordion-pressed-171e ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.accordion-pressed-171e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

.prev-f4cd,
.icon-blue-71c2 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.prev-f4cd h4,
.icon-blue-71c2 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.prev-f4cd ul,
.icon-blue-71c2 ul {
  list-style: none;
  padding: 0;
}

.prev-f4cd li,
.icon-blue-71c2 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.filter-5daa {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-a2c8 a:hover {
  color: white;
}

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

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

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

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

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

.clean_275c a:hover {
  color: white;
}

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

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

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

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

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

.light-9633 .thumbnail_9849 {
  color: #4caf50;
  font-size: 0.875rem;
}

.notification-in-ecb4 {
  list-style: none;
  padding: 0;
}

.notification-in-ecb4 li {
  margin-bottom: var(--space-xs);
}

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

.notification-in-ecb4 a:hover {
  color: white;
}

.focused-fd3c {
  list-style: none;
  padding: 0;
}

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

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

.focused-fd3c a:hover {
  color: white;
}

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

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

.pressed-66c9 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .filter_pink_9c07 {
    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;
  }
  
  .paragraph_588d {
    font-size: 2rem;
  }
  
  .chip-e57c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .huge_67ef,
  .modal_3320 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .video-f365,
  .link_middle_f6f4,
  .down_2098,
  .texture-middle-0a9c,
  .secondary_middle_361a,
  .tertiary_61bd,
  .top_f565,
  .container_f4cd,
  .detail-white-c219 {
    grid-template-columns: 1fr;
  }
  
  .notification_21b9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hero-advanced-1ad8 {
    padding: var(--space-lg) 0;
  }
  
  .tiny-27ce li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tiny-27ce li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accent_d030 {
    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;
  }
  
  .notification_21b9 {
    grid-template-columns: 1fr;
  }
  
  .focus-advanced-5a5b,
  .logo-8f98,
  .status-lower-71fc {
    flex-direction: column;
    width: 100%;
  }
  
  .cold_3d92,
  .glass-7925,
  .focus-advanced-5a5b .accent_d030,
  .logo-8f98 .accent_d030 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .paragraph_588d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .chip-e57c {
    font-size: 1.375rem;
  }
  
  .component_5da2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .upper_73b4,
  .photo_14fa,
  .sidebar_31e9,
  .current-2662,
  .avatar-hot-b452 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .white_c607 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .container-bronze-95ad {
    gap: var(--space-xs);
  }
  
  .search-wood-3662 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .surface_68f0 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .hidden-cool-05b8 {
    width: 150px;
    height: 150px;
  }
  
  .pink_bd1c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .left-fb91,
  .shadow-action-6d32,
  .focus-advanced-5a5b,
  .component_huge_9890,
  .avatar_e392,
  .secondary_6f78,
  .primary-pink-8e0c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hero-advanced-1ad8 {
    page-break-inside: avoid;
  }
}

/* css-noise: f724 */
.ghost-box-p0 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
