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

.white_00b8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.nav-6338):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. */
.nav-6338,
header,
.popup-under-cb99,
.widget-wood-d692,
.cool_7d5e,
.narrow_65ed,
.message_624e,
.status-f9dd,
.thumbnail_e604 {
  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
   ============================================ */
.nav-6338 {
  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);
}

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

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

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

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

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

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

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

.column_advanced_f388 {
  flex: 1;
}

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

.backdrop-0cff {
  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);
}

.backdrop-0cff:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.backdrop-0cff.info-9abe {
  background: var(--color-primary);
  color: white;
}

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

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

.button-9dd9 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.video_hovered_c6c5 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.button-south-68fe {
  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;
}

.button-south-68fe: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);
}

.button-south-68fe svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.notification-under-3fd9 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.outline-2d52[aria-expanded="true"] .notification-under-3fd9:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.outline-2d52[aria-expanded="true"] .notification-under-3fd9:nth-child(2) {
  opacity: 0;
}

.outline-2d52[aria-expanded="true"] .notification-under-3fd9:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .column_advanced_f388 {
    display: none;
  }
  
  .outline-2d52 {
    display: flex;
  }
  
  .tabs_b463 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .video_hovered_c6c5,
  .button-south-68fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component_0b6b {
    position: relative;
  }
  
  .small-d89e {
    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;
  }
  
  .button-9dd9[aria-expanded="true"] + .small-d89e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .search_advanced_fd4b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .advanced_c855 {
    gap: 8px;
  }
  
  .video_hovered_c6c5 {
    display: none;
  }
  
  .button-south-68fe {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .accordion_green_c28f img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .button-south-68fe {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .button-south-68fe svg {
    width: 14px;
    height: 14px;
  }
  
  .badge-bbeb {
    gap: var(--space-sm);
  }
}

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

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

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

.filter_purple_0037 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.notification-5a54 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notification-5a54 a:hover {
  text-decoration: underline;
}

.avatar-3aba {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.north-01f5 {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.secondary-hard-d0fc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.secondary-hard-d0fc strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.pattern-next-144d {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.shade-77c3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.tag-pro-9af7 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .section-adfa {
    grid-template-columns: 1fr;
  }
  
  .tabs_north_4de0 {
    font-size: 1.75rem;
  }
  
  .shade-77c3 {
    order: -1;
    max-width: 100%;
  }
  
  .article_2462 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tabs_north_4de0 {
    font-size: 1.5rem;
  }
  
  .lite-0ab4 {
    font-size: 1rem;
  }
  
  .notification-5a54 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .article_2462 {
    max-width: 250px;
  }
}

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

.row-large-1c0f {
  background: var(--color-primary);
  color: white;
}

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

.photo-wide-3de3 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.photo-wide-3de3:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.complex-1459 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;
}

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

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

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

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

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

.widget-bottom-79d1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow_simple_b946 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) {
  .outer_48d1 {
    grid-template-columns: 1fr;
  }
  
  .widget-bottom-79d1 {
    font-size: 1.75rem;
  }
  
  .card_f89c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .widget-bottom-79d1 {
    font-size: 1.5rem;
  }
  
  .card_f89c h3 {
    font-size: 1.375rem;
  }
  
  .card_f89c h4 {
    font-size: 1.125rem;
  }
}

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

.container-6e7f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.block-57d9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.tabs-dirty-4f57 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.accordion-1843 {
  flex-shrink: 0;
}

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

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

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

.pink-dbe2,
.gas-ffdf,
.block_steel_f47b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pink-dbe2 thead,
.gas-ffdf thead {
  background: var(--color-primary);
  color: white;
}

.pink-dbe2 th,
.pink-dbe2 td,
.gas-ffdf th,
.gas-ffdf td,
.block_steel_f47b th,
.block_steel_f47b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pink-dbe2 th,
  .pink-dbe2 td,
  .gas-ffdf th,
  .gas-ffdf td,
  .block_steel_f47b th,
  .block_steel_f47b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pink-dbe2,
  .gas-ffdf,
  .block_steel_f47b {
    min-width: 600px;
  }
}

.pink-dbe2 th,
.gas-ffdf th,
.block_steel_f47b th {
  font-weight: 600;
}

.pink-dbe2 tbody tr:hover,
.gas-ffdf tbody tr:hover,
.block_steel_f47b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.last_26dc h4 {
  color: white;
}

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

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

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

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

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

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

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

.background-cold-3153:hover {
  text-decoration: underline;
}

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

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

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

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

.main-static-7c97 {
  list-style: none;
  padding: 0;
}

.main-static-7c97 li {
  padding: var(--space-xs) 0;
}

.tooltip_smooth_eea5 {
  color: #4caf50;
}

.over_48df {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.paper-2de3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.breadcrumb-full-f868 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar-short-c5b5 .silver-f0a2 {
  width: 100%;
  background: white;
}

.soft-2e80 .silver-f0a2 {
  color: #667eea;
}

.notification-wide-2bfa .silver-f0a2 {
  color: #f5576c;
}

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

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

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

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

.column-silver-1321 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .column-silver-1321 {
    padding: var(--space-md);
  }
  
  .over_290c {
    padding: var(--space-md);
  }
  
  .plasma-a29f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.section_liquid_c580,
.widget_a56e,
.hidden-north-8947,
.slider_7a0a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.under-03c8 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.component-bottom-6fb6 {
  border-color: var(--color-warning);
}

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

.over-4068 .full-f518 {
  background: #e8f5e9;
  color: var(--color-success);
}

.component-bottom-6fb6 .full-f518 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.selected-891e {
  text-align: center;
}

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

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

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

.pattern-mini-7c07 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.info-pink-66eb p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.picture-0de6 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

.column-solid-7d0b {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.hover-37d3 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.action-530d {
  text-align: right;
}

.action-530d .small-10b7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.pro-944c {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.surface-top-c3c0 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.tag_07a2[aria-expanded="true"] .backdrop-5308 {
  transform: rotate(180deg);
}

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

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

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

.new-983e li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.slider_1fe2,
.info-a242 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.slider_1fe2 h4,
.info-a242 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.slider_1fe2 ul,
.info-a242 ul {
  list-style: none;
  padding: 0;
}

.slider_1fe2 li,
.info-a242 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.black-66fd {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.element-huge-29bf {
  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);
}

.element-huge-29bf:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.element-huge-29bf p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.active-b00d .pressed_cb20 {
  color: #4caf50;
  font-size: 0.875rem;
}

.content-f5e9 {
  list-style: none;
  padding: 0;
}

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

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

.content-f5e9 a:hover {
  color: white;
}

.hard-5b2a {
  list-style: none;
  padding: 0;
}

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

.hard-5b2a a {
  color: #b0b0b0;
  text-decoration: none;
}

.hard-5b2a a:hover {
  color: white;
}

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

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

.panel-0101 a {
  color: #4caf50;
  text-decoration: none;
}

.medium-9d48 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.primary-2d2f:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hover_over_4603 {
    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;
  }
  
  .tabs_north_4de0 {
    font-size: 2rem;
  }
  
  .widget-bottom-79d1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .section-adfa,
  .outer_48d1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .iron-b7bb,
  .north_8180,
  .link-2ee9,
  .center_4fa1,
  .focused_f449,
  .header_8be4,
  .description_inner_be9d,
  .list-up-eba9 {
    grid-template-columns: 1fr;
  }
  
  .wrapper_simple_5846 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .message_624e {
    padding: var(--space-lg) 0;
  }
  
  .complex-1459 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .complex-1459 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver-f0a2 {
    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;
  }
  
  .wrapper_simple_5846 {
    grid-template-columns: 1fr;
  }
  
  .pattern-next-144d,
  .button-c0f0,
  .liquid-2606 {
    flex-direction: column;
    width: 100%;
  }
  
  .shadow_tiny_27c5,
  .complex-9650,
  .pattern-next-144d .silver-f0a2,
  .button-c0f0 .silver-f0a2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tabs_north_4de0 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .widget-bottom-79d1 {
    font-size: 1.375rem;
  }
  
  .tag-current-fb1d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .down-313e,
  .paper-2de3,
  .north-a20a,
  .outline_short_0ab5,
  .avatar_paper_929d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .light_210d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .layout_76ec {
    gap: var(--space-xs);
  }
  
  .filter_purple_0037 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hard_912a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop_35d0 {
    width: 150px;
    height: 150px;
  }
  
  .primary_bc6e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .nav-6338,
  .popup-under-cb99,
  .pattern-next-144d,
  .active_e67f,
  .status-f9dd,
  .thumbnail_e604,
  .outline-2d52 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .message_624e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 8191 */
.promo-block-t0 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
