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

.thumbnail_aca4:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.action_dd60):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. */
.action_dd60,
header,
.chip_middle_1e44,
.backdrop-north-db8a,
.overlay_iron_d536,
.component-glass-70ea,
.orange-3ffb,
.complex_c494,
.active_d778 {
  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
   ============================================ */
.action_dd60 {
  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);
}

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

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

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

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

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

.east-ded0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.caption_684b {
  flex: 1;
}

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

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

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

.photo-8203.outline_liquid_3b9d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.dropdown-011b {
  position: relative;
}

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

.active-bf1c svg {
  transition: transform 0.2s ease;
}

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

.tooltip-89f6 {
  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;
}

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

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

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

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

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

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

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

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

.narrow_df82 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.west_60ed[aria-expanded="true"] .article-6af4:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .caption_684b {
    display: none;
  }
  
  .west_60ed {
    display: flex;
  }
  
  .sort_7a7f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .narrow_df82,
  .copper-cfad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .dropdown-011b {
    position: relative;
  }
  
  .tooltip-89f6 {
    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;
  }
  
  .active-bf1c[aria-expanded="true"] + .tooltip-89f6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gallery_outer_31aa {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery_advanced_7f32 {
    gap: 8px;
  }
  
  .narrow_df82 {
    display: none;
  }
  
  .copper-cfad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .east-ded0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.text-c6cf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.media-1752 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.summary-active-71c8 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .primary-d1b1 {
    grid-template-columns: 1fr;
  }
  
  .box-c34b {
    font-size: 1.75rem;
  }
  
  .block-cf34 {
    order: -1;
    max-width: 100%;
  }
  
  .summary-active-71c8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .box-c34b {
    font-size: 1.5rem;
  }
  
  .secondary_7580 {
    font-size: 1rem;
  }
  
  .hard_85bc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .summary-active-71c8 {
    max-width: 250px;
  }
}

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

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

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

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

.copper-16cb:hover {
  background: var(--color-primary);
  color: white;
}

.backdrop-paper-5b45 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.backdrop-paper-5b45:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-large-7de9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-402d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.notice-402d 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) {
  .focus-844e {
    grid-template-columns: 1fr;
  }
  
  .logo-large-7de9 {
    font-size: 1.75rem;
  }
  
  .texture-a90e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-large-7de9 {
    font-size: 1.5rem;
  }
  
  .texture-a90e h3 {
    font-size: 1.375rem;
  }
  
  .texture-a90e h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.pink-55a8 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.photo_iron_9f87 {
  flex-shrink: 0;
}

.link-center-30cf strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.full-48ed,
.article_pink_5e06,
.avatar-4eb8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.full-48ed thead,
.article_pink_5e06 thead {
  background: var(--color-primary);
  color: white;
}

.full-48ed th,
.full-48ed td,
.article_pink_5e06 th,
.article_pink_5e06 td,
.avatar-4eb8 th,
.avatar-4eb8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .full-48ed th,
  .full-48ed td,
  .article_pink_5e06 th,
  .article_pink_5e06 td,
  .avatar-4eb8 th,
  .avatar-4eb8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .full-48ed,
  .article_pink_5e06,
  .avatar-4eb8 {
    min-width: 600px;
  }
}

.full-48ed th,
.article_pink_5e06 th,
.avatar-4eb8 th {
  font-weight: 600;
}

.full-48ed tbody tr:hover,
.article_pink_5e06 tbody tr:hover,
.avatar-4eb8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.west_0752 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

.nav-new-0e5d {
  text-align: center;
  margin-bottom: var(--space-md);
}

.button-paper-5efd {
  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);
}

.button-paper-5efd span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.sort-up-8337 {
  list-style: none;
  padding: 0;
}

.sort-up-8337 li {
  padding: var(--space-xs) 0;
}

.red_8207 {
  color: #4caf50;
}

.aside_4564 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.progress-cool-9b3a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.progress-cool-9b3a p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.summary-56be {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.new-7f78 .banner-9bf5 {
  width: 100%;
  background: white;
}

.mask_clean_486f .banner-9bf5 {
  color: #667eea;
}

.south-cfe1 .banner-9bf5 {
  color: #f5576c;
}

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

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

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

.mask-light-300b {
  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);
}

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

.panel-upper-a1fa {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .status_fluid_8e34 {
    padding: var(--space-md);
  }
  
  .panel-upper-a1fa {
    padding: var(--space-md);
  }
  
  .stale_4b65 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.background_focused_ab99,
.pattern-lite-9085,
.bright-9fdb,
.copper_be57 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wood-40d6 {
  border-color: var(--color-success);
}

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

.light-8fa6 {
  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);
}

.wood-40d6 .light-8fa6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.over-da23 .light-8fa6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-41cb {
  margin-top: var(--space-xxl);
}

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

.primary_up_8dbc {
  text-align: center;
}

.row-gas-046f {
  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);
}

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

.row-gas-046f .disabled_old_90ac {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.east-7fe3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.gold-4f3d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.container-paper-39ad {
  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;
}

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

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

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

.chip_02ac {
  text-align: right;
}

.chip_02ac .secondary-easy-2b44 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.label-short-1a26 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.pro-4ed9 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.wide-020b {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-iron-83b4 {
  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);
}

.heading-iron-83b4:hover {
  background: var(--color-bg-alt);
}

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

.heading-iron-83b4[aria-expanded="true"] .thumbnail-d291 {
  transform: rotate(180deg);
}

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

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

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

.simple-53f6 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_436f ul,
.dirty_5a70 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast-8a73 {
  font-style: italic;
}

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

.secondary-865e {
  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;
}

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

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

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

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

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

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

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

.menu_bottom_bb3b {
  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_bottom_bb3b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

.gradient-66f3 .content_da00 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.middle_051c a:hover {
  color: white;
}

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

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

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

.dark_24c1 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .search_next_9bfb {
    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;
  }
  
  .box-c34b {
    font-size: 2rem;
  }
  
  .logo-large-7de9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .primary-d1b1,
  .focus-844e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .surface_a594,
  .bronze_3dbf,
  .column-short-af94,
  .table_f70e,
  .rough-9ce7,
  .caption_e5d9,
  .fresh_2bf9,
  .texture_smooth_e5b1 {
    grid-template-columns: 1fr;
  }
  
  .huge-5651 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .orange-3ffb {
    padding: var(--space-lg) 0;
  }
  
  .input_slow_06cd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .input_slow_06cd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .banner-9bf5 {
    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;
  }
  
  .huge-5651 {
    grid-template-columns: 1fr;
  }
  
  .selected-ed58,
  .tiny-b59c,
  .search_3a42 {
    flex-direction: column;
    width: 100%;
  }
  
  .dirty-d1a5,
  .avatar_bf94,
  .selected-ed58 .banner-9bf5,
  .tiny-b59c .banner-9bf5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .box-c34b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .logo-large-7de9 {
    font-size: 1.375rem;
  }
  
  .sidebar_2fd0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .under-6be8,
  .progress-cool-9b3a,
  .accent_23e1,
  .up-2488,
  .focus_5b6c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wrapper_pink_b073 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .widget-9190 {
    gap: var(--space-xs);
  }
  
  .text-c6cf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .button-paper-5efd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .row-gas-046f {
    width: 150px;
    height: 150px;
  }
  
  .layout-slow-5104 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .action_dd60,
  .chip_middle_1e44,
  .selected-ed58,
  .secondary-865e,
  .complex_c494,
  .active_d778,
  .west_60ed {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .orange-3ffb {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a2da */
.phantom-card-c1 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.3;
}
