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

.outer_4338:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.message-soft-f47f):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. */
.message-soft-f47f,
header,
.stone-61ec,
.rough_4903,
.complex-aa36,
.east_6187,
.alert_be3b,
.border-steel-973e,
.frame-e4bb {
  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
   ============================================ */
.message-soft-f47f {
  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);
}

.text-pink-166d {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.message-soft-f47f.next-4b6c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.main_right_e6d3 {
  flex: 1;
}

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

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

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

.box_7d41.background-west-4595 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.bright-9591 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.main-brown-4e77 {
  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;
}

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

.main-brown-4e77 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.sort-stale-c141[aria-expanded="true"] .liquid-97ce:nth-child(2) {
  opacity: 0;
}

.sort-stale-c141[aria-expanded="true"] .liquid-97ce:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .main_right_e6d3 {
    display: none;
  }
  
  .sort-stale-c141 {
    display: flex;
  }
  
  .outline_action_2f81 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main-brown-4e77,
  .link_next_2d14 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .bright-9591 {
    position: relative;
  }
  
  .surface_8b7c {
    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;
  }
  
  .thumbnail_6dfb[aria-expanded="true"] + .surface_8b7c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .widget_active_d500 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .easy_af81 {
    gap: 8px;
  }
  
  .main-brown-4e77 {
    display: none;
  }
  
  .link_next_2d14 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .large_fa69 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.layout-full-2c6c {
  display: flex;
  align-items: center;
  gap: 6px;
}

.layout-full-2c6c svg {
  flex-shrink: 0;
}

.layout-full-2c6c a {
  color: var(--color-primary);
  text-decoration: none;
}

.layout-full-2c6c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.icon-advanced-339c a {
  color: var(--color-primary);
  text-decoration: none;
}

.icon-advanced-339c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.table-699b {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.table-699b strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.accordion-current-a847 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .mask-rough-2a17 {
    grid-template-columns: 1fr;
  }
  
  .notice-pink-5654 {
    font-size: 1.75rem;
  }
  
  .accordion-current-a847 {
    order: -1;
    max-width: 100%;
  }
  
  .status_active_ffd9 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notice-pink-5654 {
    font-size: 1.5rem;
  }
  
  .status_tiny_6c9c {
    font-size: 1rem;
  }
  
  .icon-advanced-339c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .status_active_ffd9 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.shade-hot-f9b9 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-copper-1cc4 {
  background: var(--color-bg-section);
}

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

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

.module-4aac {
  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);
}

.popup-motion-91ef {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.current_d262 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) {
  .gallery-paper-cb3c {
    grid-template-columns: 1fr;
  }
  
  .module-4aac {
    font-size: 1.75rem;
  }
  
  .sidebar_a101 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .module-4aac {
    font-size: 1.5rem;
  }
  
  .sidebar_a101 h3 {
    font-size: 1.375rem;
  }
  
  .sidebar_a101 h4 {
    font-size: 1.125rem;
  }
}

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

.accent-792a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.secondary_0e94 {
  flex-shrink: 0;
}

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

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

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

.last_3a9e,
.slider_07fe,
.logo-green-efff {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.last_3a9e thead,
.slider_07fe thead {
  background: var(--color-primary);
  color: white;
}

.last_3a9e th,
.last_3a9e td,
.slider_07fe th,
.slider_07fe td,
.logo-green-efff th,
.logo-green-efff td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .last_3a9e th,
  .last_3a9e td,
  .slider_07fe th,
  .slider_07fe td,
  .logo-green-efff th,
  .logo-green-efff td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .last_3a9e,
  .slider_07fe,
  .logo-green-efff {
    min-width: 600px;
  }
}

.last_3a9e th,
.slider_07fe th,
.logo-green-efff th {
  font-weight: 600;
}

.last_3a9e tbody tr:hover,
.slider_07fe tbody tr:hover,
.logo-green-efff tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.alert_ee02 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header_south_525c {
  color: #4caf50;
}

.hero-517d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.focus-large-b5be {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.hidden-paper-c15b {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.short-01ed .summary_3e3b {
  width: 100%;
  background: white;
}

.heading-left-1fca .summary_3e3b {
  color: #667eea;
}

.detail_purple_26de .summary_3e3b {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.paragraph-center-35dc {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.hidden-736a {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .old_e355 {
    padding: var(--space-md);
  }
  
  .hidden-736a {
    padding: var(--space-md);
  }
  
  .box_d039 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.last-599c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pagination-f214,
.form-c3b8,
.highlight_c16b,
.short-cd49 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-upper-eed0 {
  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);
}

.badge_fluid_aea2 .button-upper-eed0 {
  background: #e8f5e9;
  color: var(--color-success);
}

.footer_orange_57c7 .button-upper-eed0 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.pagination-5b68 {
  margin-top: var(--space-xxl);
}

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

.frame-rough-ab4b {
  text-align: center;
}

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

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

.top_4aa6 .icon_8cb3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.info-gold-174d {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

.prev-7ef7 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.first-9b13 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.shade-ac78 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.iron_9efe {
  text-align: right;
}

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

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

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

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

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

.active-tall-3e45 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer_bronze_47dd {
  background: #e8f5e9;
  color: #2e7d32;
}

.alert-0c94 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title_fixed_6aa9[aria-expanded="true"] .outline_4ec9 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-hard-9f40,
.message_b5b9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.frame-hard-9f40 h4,
.message_b5b9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.frame-hard-9f40 ul,
.message_b5b9 ul {
  list-style: none;
  padding: 0;
}

.frame-hard-9f40 li,
.message_b5b9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.gallery-a4a7 {
  font-style: italic;
}

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

.form-upper-9126 {
  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;
}

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

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

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

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

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

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

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

.title-wide-c9ce {
  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);
}

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

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

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

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

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

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

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

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

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

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

.narrow-277f .surface_b0bc {
  color: #4caf50;
  font-size: 0.875rem;
}

.grid-tiny-5801 {
  list-style: none;
  padding: 0;
}

.grid-tiny-5801 li {
  margin-bottom: var(--space-xs);
}

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

.grid-tiny-5801 a:hover {
  color: white;
}

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

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

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

.avatar_e6e0 a:hover {
  color: white;
}

.pagination-out-a012 {
  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);
}

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

.red-9e64 a {
  color: #4caf50;
  text-decoration: none;
}

.card-109e {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.hero-a121:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pagination-out-a012 {
    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;
  }
  
  .notice-pink-5654 {
    font-size: 2rem;
  }
  
  .module-4aac {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mask-rough-2a17,
  .gallery-paper-cb3c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .silver_4d5c,
  .component-dim-3068,
  .bright_1b8b,
  .warm_c7cc,
  .pink-2658,
  .caption_bright_1281,
  .dim-d50f,
  .huge-dea9 {
    grid-template-columns: 1fr;
  }
  
  .wide_5dc3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .alert_be3b {
    padding: var(--space-lg) 0;
  }
  
  .thumbnail_9d61 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .thumbnail_9d61 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .summary_3e3b {
    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;
  }
  
  .wide_5dc3 {
    grid-template-columns: 1fr;
  }
  
  .right_204a,
  .list-de48,
  .popup-3dc1 {
    flex-direction: column;
    width: 100%;
  }
  
  .nav-f90f,
  .shade-hot-f9b9,
  .right_204a .summary_3e3b,
  .list-de48 .summary_3e3b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notice-pink-5654 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .module-4aac {
    font-size: 1.375rem;
  }
  
  .selected_b9b7 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .summary-752b,
  .nav-69a6,
  .east_10bb,
  .widget-c421,
  .under_edd4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .lower-e7a0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hover-light-bb6e {
    gap: var(--space-xs);
  }
  
  .layout-full-2c6c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .tall_b4ea {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .top_4aa6 {
    width: 150px;
    height: 150px;
  }
  
  .summary-76c1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .message-soft-f47f,
  .stone-61ec,
  .right_204a,
  .form-upper-9126,
  .border-steel-973e,
  .frame-e4bb,
  .sort-stale-c141 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .alert_be3b {
    page-break-inside: avoid;
  }
}

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

/* css-noise: dc7b */
.ghost-box-f2 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.1;
}
