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

.element-fbb7:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.photo-e34e,
header,
.list-02a5,
.alert_d729,
.summary_last_5872,
.mask_hot_d29f,
.input_bottom_9b63,
.feature_ceb1,
.cold-8392 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

.gold_6499 {
  flex: 1;
}

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

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

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

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

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

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

.search-lite-768b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.header-86bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .gold_6499::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gold_6499.summary_outer_e54c {
    display: block;
    right: 0;
  }
  
  .status-wide-9c58 {
    flex-direction: column;
    gap: 0;
  }
  
  .fixed_eb6f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gold_6499::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;
  }
  
  .gold_6499.summary_outer_e54c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gold_6499 {
    display: none;
  }
  
  .center_5cd5 {
    display: flex;
  }
  
  .wrapper_887c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .header-86bc,
  .wood-8098 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .background_yellow_06d8 {
    position: relative;
  }
  
  .white-ee19 {
    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;
  }
  
  .search-lite-768b[aria-expanded="true"] + .white-ee19 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider-up-7880 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .west_b3d3 {
    gap: 8px;
  }
  
  .header-86bc {
    display: none;
  }
  
  .wood-8098 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dark_d9d4 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .wood-8098 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .wood-8098 svg {
    width: 14px;
    height: 14px;
  }
  
  .hover-plasma-3a24 {
    gap: var(--space-sm);
  }
}

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

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

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

.hard_f31a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.upper-3a0d a {
  color: var(--color-primary);
  text-decoration: none;
}

.upper-3a0d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.row-green-5ad8 {
  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;
}

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

.column-bright-2f83 strong {
  font-weight: 600;
  color: var(--color-text);
}

.column-bright-2f83 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.yellow-2d8a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.focus-under-5939 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.progress-slow-83fd {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .sort-acd4 {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-351d {
    font-size: 1.75rem;
  }
  
  .focus-under-5939 {
    order: -1;
    max-width: 100%;
  }
  
  .sidebar_1063 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .thumbnail-351d {
    font-size: 1.5rem;
  }
  
  .static-d1d7 {
    font-size: 1rem;
  }
  
  .upper-3a0d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .sidebar_1063 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.header-focused-d871 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

.badge-plasma-c553:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast-0210 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;
}

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

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

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

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

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

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

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

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

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

.photo-slow-8e92 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.photo-slow-8e92 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.photo-slow-8e92 pre,
.photo-slow-8e92 code {
  overflow-x: auto;
  max-width: 100%;
}

.photo-slow-8e92 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);
}

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

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

.photo-slow-8e92 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.photo-slow-8e92 ul,
.photo-slow-8e92 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.photo-slow-8e92 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

.photo-slow-8e92 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.photo-slow-8e92 a:hover {
  color: var(--color-primary-dark);
}

.over-99a9 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.over-99a9 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) {
  .east_7c9f {
    grid-template-columns: 1fr;
  }
  
  .orange-e611 {
    font-size: 1.75rem;
  }
  
  .photo-slow-8e92 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .orange-e611 {
    font-size: 1.5rem;
  }
  
  .photo-slow-8e92 h3 {
    font-size: 1.375rem;
  }
  
  .photo-slow-8e92 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.sidebar-gas-24e1 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.input_a7c6 {
  flex-shrink: 0;
}

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

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

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

.stone-4a75,
.info_dark_23f3,
.panel-b7c8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stone-4a75 thead,
.info_dark_23f3 thead {
  background: var(--color-primary);
  color: white;
}

.stone-4a75 th,
.stone-4a75 td,
.info_dark_23f3 th,
.info_dark_23f3 td,
.panel-b7c8 th,
.panel-b7c8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stone-4a75 th,
  .stone-4a75 td,
  .info_dark_23f3 th,
  .info_dark_23f3 td,
  .panel-b7c8 th,
  .panel-b7c8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .stone-4a75,
  .info_dark_23f3,
  .panel-b7c8 {
    min-width: 600px;
  }
}

.stone-4a75 th,
.info_dark_23f3 th,
.panel-b7c8 th {
  font-weight: 600;
}

.stone-4a75 tbody tr:hover,
.info_dark_23f3 tbody tr:hover,
.panel-b7c8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.paragraph-narrow-9d3e {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.overlay_dark_44de h4 {
  color: white;
}

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

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

.text_light_b168:last-child {
  border-bottom: none;
}

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

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

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

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

.middle-af3d:hover {
  text-decoration: underline;
}

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

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

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

.hero-thick-a979 {
  font-weight: 600;
  color: white;
}

.filter-black-a786 {
  list-style: none;
  padding: 0;
}

.filter-black-a786 li {
  padding: var(--space-xs) 0;
}

.heading-dark-a654 {
  color: #4caf50;
}

.content-plasma-4eca {
  color: #ff9800;
}

.slow-7ca5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_fluid_9357 .header-focused-d871 {
  width: 100%;
  background: white;
}

.notice_next_aaac .header-focused-d871 {
  color: #667eea;
}

.dark-f142 .header-focused-d871 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hard-b29a {
    padding: var(--space-md);
  }
  
  .shadow-bead {
    padding: var(--space-md);
  }
  
  .next-774c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.section-f853,
.liquid_3280,
.bottom-7329,
.section-red-5060 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focus_west_020d .complex_36e9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.wrapper-fd10 .complex_36e9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.grid-inner-9b3c {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

.motion-4d2d {
  margin-top: var(--space-xxl);
}

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

.section_432f {
  text-align: center;
}

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

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

.main_motion_0ae6 .hero-thick-a979 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.green-1b28 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.notice-7b80 {
  margin-bottom: var(--space-xl);
}

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

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

.nav-prev-ae00 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.caption-fast-a69f {
  border: 2px solid #4caf50;
}

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

.layout-liquid-6e9e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.right_f105 {
  text-align: right;
}

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

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

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

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

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

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

.pink-2242 {
  background: #e8f5e9;
  color: #2e7d32;
}

.narrow-f07a {
  background: #e3f2fd;
  color: #1565c0;
}

.nav-edf1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.dim-804f {
  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);
}

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

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

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

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

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

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

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

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

.dynamic-963e {
  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);
}

.dynamic-963e:hover {
  background: var(--color-bg-alt);
}

.info-4cdc {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.dynamic-963e[aria-expanded="true"] .info-4cdc {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_373a h4,
.left_1386 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.heading_373a ul,
.left_1386 ul {
  list-style: none;
  padding: 0;
}

.heading_373a li,
.left_1386 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.frame-advanced-d920 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.primary-simple-bf11 {
  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);
}

.paper_2962 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.menu-simple-0164 {
  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);
}

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

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

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

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

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

.title-e4d0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

.image_pro_c427 .wood_8691 {
  color: #4caf50;
  font-size: 0.875rem;
}

.cool-3695 {
  list-style: none;
  padding: 0;
}

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

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

.cool-3695 a:hover {
  color: white;
}

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

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

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

.gradient_simple_3790 a:hover {
  color: white;
}

.focus-dark-35c8 {
  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);
}

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

.highlight-88fd a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.box-dynamic-c535:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .focus-dark-35c8 {
    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;
  }
  
  .thumbnail-351d {
    font-size: 2rem;
  }
  
  .orange-e611 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .sort-acd4,
  .east_7c9f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shadow_158e,
  .logo-5e51,
  .block-d312,
  .sidebar-099c,
  .dynamic_d533,
  .main_802b,
  .black_c371,
  .title-e4d0 {
    grid-template-columns: 1fr;
  }
  
  .focus_dynamic_8caa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .input_bottom_9b63 {
    padding: var(--space-lg) 0;
  }
  
  .fast-0210 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fast-0210 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .header-focused-d871 {
    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;
  }
  
  .focus_dynamic_8caa {
    grid-template-columns: 1fr;
  }
  
  .yellow-2d8a,
  .media-solid-af47,
  .input-clean-122b {
    flex-direction: column;
    width: 100%;
  }
  
  .slow_7140,
  .logo_focused_c1c9,
  .yellow-2d8a .header-focused-d871,
  .media-solid-af47 .header-focused-d871 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .thumbnail-351d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .orange-e611 {
    font-size: 1.375rem;
  }
  
  .module-glass-3a34 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .narrow-4d41,
  .image-east-7969,
  .soft-d6f0,
  .north_3df5,
  .info_d6ac {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .filter-e79a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .image_12dd {
    gap: var(--space-xs);
  }
  
  .hard_f31a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accordion_b330 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .main_motion_0ae6 {
    width: 150px;
    height: 150px;
  }
  
  .lower-6643 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .photo-e34e,
  .list-02a5,
  .yellow-2d8a,
  .short_8636,
  .feature_ceb1,
  .cold-8392,
  .center_5cd5 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .input_bottom_9b63 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.glass-feca {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 0561 */
.ghost-box-s8 {
  padding: 0.4rem;
  font-size: 13px;
  line-height: 1.3;
}
