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

.dim-9b59:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fixed-41db,
header,
.preview-liquid-373a,
.last-29f7,
.card-brown-9bd1,
.filter-glass-da8f,
.silver_663e,
.dim_1da2,
.white-3889 {
  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
   ============================================ */
.fixed-41db {
  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);
}

.filter-easy-2287 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.fixed-41db.notice-last-b4be {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.disabled-prev-46eb img {
  height: 36px;
  width: auto;
  display: block;
}

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

.icon-old-9b83 {
  flex: 1;
}

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

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

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

.media_outer_041c.fn-active-bc0d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.pink-8382 {
  position: relative;
}

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

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

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

.module-full-cbc5 {
  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;
}

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

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

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

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

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

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

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

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

.gallery_18f2 svg {
  flex-shrink: 0;
}

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

.detail-tall-7b69: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);
}

.detail-tall-7b69 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.card-advanced-87f2 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.overlay-first-030d[aria-expanded="true"] .card-advanced-87f2:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.overlay-first-030d[aria-expanded="true"] .card-advanced-87f2:nth-child(2) {
  opacity: 0;
}

.overlay-first-030d[aria-expanded="true"] .card-advanced-87f2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .icon-old-9b83::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .icon-old-9b83.panel-action-7540 {
    display: block;
    right: 0;
  }
  
  .summary_bc9d {
    flex-direction: column;
    gap: 0;
  }
  
  .media_outer_041c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .icon-old-9b83::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;
  }
  
  .icon-old-9b83.panel-action-7540::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .icon-old-9b83 {
    display: none;
  }
  
  .overlay-first-030d {
    display: flex;
  }
  
  .block_lower_82dd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gallery_18f2,
  .detail-tall-7b69 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .pink-8382 {
    position: relative;
  }
  
  .module-full-cbc5 {
    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;
  }
  
  .complex_bd53[aria-expanded="true"] + .module-full-cbc5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .title_active_f3fa {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .item_b948 {
    gap: 8px;
  }
  
  .gallery_18f2 {
    display: none;
  }
  
  .detail-tall-7b69 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .disabled-prev-46eb img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .detail-tall-7b69 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .detail-tall-7b69 svg {
    width: 14px;
    height: 14px;
  }
  
  .list_black_c5b5 {
    gap: var(--space-sm);
  }
}

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

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

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

.carousel_basic_7f22 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.form-424a a:hover {
  text-decoration: underline;
}

.input-dark-9c9a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.feature-4fac {
  display: flex;
  gap: var(--space-sm);
}

.notice-dark-86bc {
  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;
}

.secondary-light-1ffd {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.secondary-light-1ffd strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.basic-af3e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.badge-gold-d1ad {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .icon_d8d9 {
    grid-template-columns: 1fr;
  }
  
  .info_action_b0c3 {
    font-size: 1.75rem;
  }
  
  .accordion_gold_3170 {
    order: -1;
    max-width: 100%;
  }
  
  .badge-gold-d1ad {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .info_action_b0c3 {
    font-size: 1.5rem;
  }
  
  .shade_ecdf {
    font-size: 1rem;
  }
  
  .form-424a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .badge-gold-d1ad {
    max-width: 250px;
  }
}

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

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

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

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

.accordion-dark-b135:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-e538 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;
}

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

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

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

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

.aside-5c80 {
  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);
}

.gallery-fluid-f29c {
  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);
}

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

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

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

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

.fast-2c26 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.fast-2c26 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);
}

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

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

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

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

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

.fast-2c26 strong {
  font-weight: 600;
  color: var(--color-text);
}

.fast-2c26 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.fast-2c26 a:hover {
  color: var(--color-primary-dark);
}

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

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

.brown-a275 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) {
  .nav-narrow-5198 {
    grid-template-columns: 1fr;
  }
  
  .gallery-fluid-f29c {
    font-size: 1.75rem;
  }
  
  .fast-2c26 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-fluid-f29c {
    font-size: 1.5rem;
  }
  
  .fast-2c26 h3 {
    font-size: 1.375rem;
  }
  
  .fast-2c26 h4 {
    font-size: 1.125rem;
  }
}

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

.block-thick-50ad {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.title-11de {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.narrow-36c2 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.tabs-silver-ccc4 {
  flex-shrink: 0;
}

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

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

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

.section_gas_b975,
.text_huge_f2ea,
.hovered-c359 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section_gas_b975 thead,
.text_huge_f2ea thead {
  background: var(--color-primary);
  color: white;
}

.section_gas_b975 th,
.section_gas_b975 td,
.text_huge_f2ea th,
.text_huge_f2ea td,
.hovered-c359 th,
.hovered-c359 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section_gas_b975 th,
  .section_gas_b975 td,
  .text_huge_f2ea th,
  .text_huge_f2ea td,
  .hovered-c359 th,
  .hovered-c359 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .section_gas_b975,
  .text_huge_f2ea,
  .hovered-c359 {
    min-width: 600px;
  }
}

.section_gas_b975 th,
.text_huge_f2ea th,
.hovered-c359 th {
  font-weight: 600;
}

.section_gas_b975 tbody tr:hover,
.text_huge_f2ea tbody tr:hover,
.hovered-c359 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.accordion-center-5b50 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.block-9606 h4 {
  color: white;
}

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

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

.focused-82b8:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.slider-e91f {
  font-weight: 600;
  color: white;
}

.tertiary-lower-13d0 {
  list-style: none;
  padding: 0;
}

.tertiary-lower-13d0 li {
  padding: var(--space-xs) 0;
}

.feature-0b08 {
  color: #4caf50;
}

.full_31b8 {
  color: #ff9800;
}

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

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

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

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

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

.container-fixed-158e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

.link-smooth-87e7 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video_hovered_2146 .layout_inner_b476 {
  width: 100%;
  background: white;
}

.wide-1ad3 .layout_inner_b476 {
  color: #667eea;
}

.active-d3f3 .layout_inner_b476 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media_north_9f30,
.logo_action_9bb8,
.modal-motion-420e,
.border-liquid-5492 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.button-in-4888 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.old-3ed4 {
  border-color: var(--color-success);
}

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

.clean-9f24 {
  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);
}

.old-3ed4 .clean-9f24 {
  background: #e8f5e9;
  color: var(--color-success);
}

.footer-b68a .clean-9f24 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.pattern-out-4fdb {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.tag-bright-ac67 {
  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);
}

.image_e451 {
  text-align: center;
}

.brown-8ad1 {
  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);
}

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

.brown-8ad1 .slider-e91f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.component-next-1e4f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu_selected_4248 {
  text-align: right;
}

.menu_selected_4248 .hovered-0660 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.cool-464b {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.progress-pressed-80e7 {
  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);
}

.progress-pressed-80e7:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

.box-east-7eef {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.avatar-east-086b {
  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);
}

.avatar-east-086b:hover {
  background: var(--color-bg-alt);
}

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

.avatar-east-086b[aria-expanded="true"] .upper_e981 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-3cc9,
.detail-full-2161 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.under-3cc9 h4,
.detail-full-2161 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.under-3cc9 ul,
.detail-full-2161 ul {
  list-style: none;
  padding: 0;
}

.under-3cc9 li,
.detail-full-2161 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.background-bronze-e41f {
  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);
}

.item-70e3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.label-upper-5fcf {
  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);
}

.label-upper-5fcf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.label-upper-5fcf p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.yellow_ac13 a:hover {
  color: white;
}

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

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

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

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

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

.right_7976 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .mask-outer-69a9,
  .up-3afa {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.section_5041 .feature-4fac {
  color: #4caf50;
  font-size: 0.875rem;
}

.row-yellow-49a5 {
  list-style: none;
  padding: 0;
}

.row-yellow-49a5 li {
  margin-bottom: var(--space-xs);
}

.row-yellow-49a5 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.row-yellow-49a5 a:hover {
  color: white;
}

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

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

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

.texture_9bb1 a:hover {
  color: white;
}

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

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

.bright-9eeb a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.list-light-2605 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;
}

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

.component-fb1e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .column_a6e8 {
    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;
  }
  
  .info_action_b0c3 {
    font-size: 2rem;
  }
  
  .gallery-fluid-f29c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon_d8d9,
  .nav-narrow-5198 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .heading_complex_3de1,
  .tiny-ace9,
  .fixed-7e89,
  .layout-prev-bbac,
  .wide-5d04,
  .narrow-ca8b,
  .panel_bottom_3731,
  .mask-outer-69a9,
  .up-3afa {
    grid-template-columns: 1fr;
  }
  
  .cold_e887 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .silver_663e {
    padding: var(--space-lg) 0;
  }
  
  .card-e538 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .card-e538 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .layout_inner_b476 {
    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;
  }
  
  .cold_e887 {
    grid-template-columns: 1fr;
  }
  
  .basic-af3e,
  .soft_1e77,
  .paragraph_0459 {
    flex-direction: column;
    width: 100%;
  }
  
  .main_a683,
  .upper_a9b7,
  .basic-af3e .layout_inner_b476,
  .soft_1e77 .layout_inner_b476 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .info_action_b0c3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gallery-fluid-f29c {
    font-size: 1.375rem;
  }
  
  .last_94a7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .notice_70fe,
  .lower-c156,
  .large-97e0,
  .main-dark-100c,
  .feature_solid_c0a4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .item_07e2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gallery_2f4a {
    gap: var(--space-xs);
  }
  
  .carousel_basic_7f22 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .center-c7fc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .brown-8ad1 {
    width: 150px;
    height: 150px;
  }
  
  .gradient_wood_9749 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fixed-41db,
  .preview-liquid-373a,
  .basic-af3e,
  .element_d636,
  .dim_1da2,
  .white-3889,
  .overlay-first-030d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .silver_663e {
    page-break-inside: avoid;
  }
}

/* css-noise: 40a0 */
.ghost-box-m7 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
