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

.list_e050:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.footer_yellow_e42e,
header,
.basic_a112,
.main-cold-3acc,
.backdrop_black_3d4f,
.media_pro_7f54,
.message-small-6ff6,
.complex-3647,
.yellow_d446 {
  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
   ============================================ */
.footer_yellow_e42e {
  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);
}

.caption-8685 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.highlight-liquid-4484 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.gradient-pink-8f87 {
  flex: 1;
}

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

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

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

.tabs-fc0d.fn-active-f3c3 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.element-active-b8e9 {
  position: relative;
}

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

.bronze-6cdd svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.thick-5799 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.label_down_c568[aria-expanded="true"] .over-ddda:nth-child(2) {
  opacity: 0;
}

.label_down_c568[aria-expanded="true"] .over-ddda:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .gradient-pink-8f87::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gradient-pink-8f87.shade-d4de {
    display: block;
    right: 0;
  }
  
  .gallery-tiny-672b {
    flex-direction: column;
    gap: 0;
  }
  
  .tabs-fc0d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gradient-pink-8f87::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;
  }
  
  .gradient-pink-8f87.shade-d4de::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gradient-pink-8f87 {
    display: none;
  }
  
  .label_down_c568 {
    display: flex;
  }
  
  .action-5888 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .thick-5799,
  .first_bf1c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .element-active-b8e9 {
    position: relative;
  }
  
  .accent_f97a {
    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;
  }
  
  .bronze-6cdd[aria-expanded="true"] + .accent_f97a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .section_large_742a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .down-a57f {
    gap: 8px;
  }
  
  .thick-5799 {
    display: none;
  }
  
  .first_bf1c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .highlight-liquid-4484 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.component-c7b1 svg {
  flex-shrink: 0;
}

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

.component-c7b1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-warm-5737 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .component_ffee {
    grid-template-columns: 1fr;
  }
  
  .link-selected-b669 {
    font-size: 1.75rem;
  }
  
  .sidebar_df0b {
    order: -1;
    max-width: 100%;
  }
  
  .card-warm-5737 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .link-selected-b669 {
    font-size: 1.5rem;
  }
  
  .heading_3d64 {
    font-size: 1rem;
  }
  
  .container_866d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .card-warm-5737 {
    max-width: 250px;
  }
}

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

.glass-2df7 {
  background: var(--color-primary);
  color: white;
}

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

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

.slider-8a4d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.row-purple-3de9 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.message-small-6ff6 {
  padding: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

.component-last-0a60 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.component-last-0a60 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.component-last-0a60 pre,
.component-last-0a60 code {
  overflow-x: auto;
  max-width: 100%;
}

.component-last-0a60 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);
}

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

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

.component-last-0a60 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.component-last-0a60 ul,
.component-last-0a60 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.component-last-0a60 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.component-last-0a60 strong {
  font-weight: 600;
  color: var(--color-text);
}

.component-last-0a60 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.component-last-0a60 a:hover {
  color: var(--color-primary-dark);
}

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

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

.row-c40d 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) {
  .accordion-white-ed36 {
    grid-template-columns: 1fr;
  }
  
  .header_blue_960d {
    font-size: 1.75rem;
  }
  
  .component-last-0a60 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .header_blue_960d {
    font-size: 1.5rem;
  }
  
  .component-last-0a60 h3 {
    font-size: 1.375rem;
  }
  
  .component-last-0a60 h4 {
    font-size: 1.125rem;
  }
}

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

.notification-large-cb40 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.frame_upper_8ef9 {
  flex-shrink: 0;
}

.tabs-solid-9a84 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.summary_next_2a08,
.nav_901b,
.logo_57d6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.summary_next_2a08 thead,
.nav_901b thead {
  background: var(--color-primary);
  color: white;
}

.summary_next_2a08 th,
.summary_next_2a08 td,
.nav_901b th,
.nav_901b td,
.logo_57d6 th,
.logo_57d6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .summary_next_2a08 th,
  .summary_next_2a08 td,
  .nav_901b th,
  .nav_901b td,
  .logo_57d6 th,
  .logo_57d6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .summary_next_2a08,
  .nav_901b,
  .logo_57d6 {
    min-width: 600px;
  }
}

.summary_next_2a08 th,
.nav_901b th,
.logo_57d6 th {
  font-weight: 600;
}

.summary_next_2a08 tbody tr:hover,
.nav_901b tbody tr:hover,
.logo_57d6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.active_next_d25c h4 {
  color: white;
}

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

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

.button-old-8505:last-child {
  border-bottom: none;
}

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

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

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

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

.dark-c23d:hover {
  text-decoration: underline;
}

.component-steel-6d47 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.west-2ac8 {
  font-weight: 600;
  color: white;
}

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

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

.label_fresh_267f {
  color: #4caf50;
}

.column_in_ccdb {
  color: #ff9800;
}

.message-316f {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

.text-purple-83e5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.progress-slow-d97f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-hard-9154 .section_paper_66e5 {
  width: 100%;
  background: white;
}

.focus_gold_c0e4 .section_paper_66e5 {
  color: #667eea;
}

.heading_upper_aae0 .section_paper_66e5 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.caption-hovered-4cbb {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.shade-7a2b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .narrow-b1f1 {
    padding: var(--space-md);
  }
  
  .shade-7a2b {
    padding: var(--space-md);
  }
  
  .widget-441b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.popup-gas-8ef5,
.modal-a836,
.tiny_3a80,
.aside_7ab6 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.caption-wide-fec3:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.layout-2f00 {
  border-color: var(--color-success);
}

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

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

.layout-2f00 .outer_4d4d {
  background: #e8f5e9;
  color: var(--color-success);
}

.over-c477 .outer_4d4d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-pro-a0ab {
  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);
}

.icon-a670 {
  text-align: center;
}

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

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

.yellow_f1a9 .west-2ac8 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-hot-00ba {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.up-55ac {
  border: 2px solid #4caf50;
}

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

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

.logo-2cb5 {
  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;
}

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

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

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

.icon-white-0dfd {
  text-align: right;
}

.icon-white-0dfd .hover_dirty_ded2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.active-plasma-772e {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.section-pressed-d25f {
  background: #e8f5e9;
  color: #2e7d32;
}

.section-white-a12f {
  background: #e3f2fd;
  color: #1565c0;
}

.link-white-1ddd {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.grid-selected-39a2 strong {
  color: var(--color-primary);
}

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

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

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

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

.narrow-518d {
  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);
}

.narrow-518d:hover {
  background: var(--color-bg-alt);
}

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

.narrow-518d[aria-expanded="true"] .carousel_up_f8a5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-down-bb3b,
.menu-stone-8c01 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.icon-down-bb3b h4,
.menu-stone-8c01 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-down-bb3b ul,
.menu-stone-8c01 ul {
  list-style: none;
  padding: 0;
}

.icon-down-bb3b li,
.menu-stone-8c01 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.header-stale-af4e ul {
  list-style: none;
  padding: 0;
}

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

.surface-bottom-169d {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.smooth_a674 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.container-new-76fc {
  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);
}

.container-new-76fc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.container-new-76fc p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.plasma_565a a:hover {
  color: white;
}

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

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

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

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

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

.main_large_fb70 a:hover {
  color: white;
}

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

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

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

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

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

.table_3fba .form_dd52 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.frame_short_ac37 a:hover {
  color: white;
}

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

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

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

.green_100e a:hover {
  color: white;
}

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

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

.stale-3aaf a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .label_static_bcd0 {
    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;
  }
  
  .link-selected-b669 {
    font-size: 2rem;
  }
  
  .header_blue_960d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .component_ffee,
  .accordion-white-ed36 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .slider-5a87,
  .dropdown-2862,
  .last_6e86,
  .media-smooth-eec8,
  .hidden-blue-6ef6,
  .slider_iron_b1f1,
  .row_north_0cbc,
  .lower_df33,
  .progress-in-b398 {
    grid-template-columns: 1fr;
  }
  
  .notice-inner-e2d4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .message-small-6ff6 {
    padding: var(--space-lg) 0;
  }
  
  .filter_thick_56a7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .filter_thick_56a7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .section_paper_66e5 {
    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;
  }
  
  .notice-inner-e2d4 {
    grid-template-columns: 1fr;
  }
  
  .gallery_action_006b,
  .tabs_25e5,
  .down-3a38 {
    flex-direction: column;
    width: 100%;
  }
  
  .row-purple-3de9,
  .down-b5cc,
  .gallery_action_006b .section_paper_66e5,
  .tabs_25e5 .section_paper_66e5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .link-selected-b669 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .header_blue_960d {
    font-size: 1.375rem;
  }
  
  .content-basic-f116 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .summary_57f2,
  .text-purple-83e5,
  .column_356b,
  .popup_lower_2254,
  .menu_action_a025 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tabs_narrow_0749 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .orange-0d16 {
    gap: var(--space-xs);
  }
  
  .component-c7b1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature_de56 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .yellow_f1a9 {
    width: 150px;
    height: 150px;
  }
  
  .shade-8238 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .footer_yellow_e42e,
  .basic_a112,
  .gallery_action_006b,
  .background_46ae,
  .complex-3647,
  .yellow_d446,
  .label_down_c568 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .message-small-6ff6 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6349 */
.ghost-box-i2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
