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

.advanced_e418:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.button-7181,
header,
.liquid_f5a7,
.dim-a264,
.steel_c2db,
.block-85eb,
.top_e055,
.fast_455b,
.center_a646 {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.button-7181 {
  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);
}

.dropdown-paper-bde1 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.button-7181.layout-44f4 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.hard_eab2 {
  flex: 1;
}

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

.gradient-over-79e3 {
  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);
}

.gradient-over-79e3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.gradient-over-79e3.fn-active-59f4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.media-solid-e39a {
  position: relative;
}

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

.card-stale-b6bc svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.border_rough_fed5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .hard_eab2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hard_eab2.nav_basic_46aa {
    display: block;
    right: 0;
  }
  
  .breadcrumb-7e65 {
    flex-direction: column;
    gap: 0;
  }
  
  .gradient-over-79e3 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hard_eab2::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;
  }
  
  .hard_eab2.nav_basic_46aa::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hard_eab2 {
    display: none;
  }
  
  .status_5587 {
    display: flex;
  }
  
  .footer_050a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .border_rough_fed5,
  .grid-cc67 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .media-solid-e39a {
    position: relative;
  }
  
  .aside-action-9574 {
    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;
  }
  
  .card-stale-b6bc[aria-expanded="true"] + .aside-action-9574 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .cold_c83c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .preview_mini_60aa {
    gap: 8px;
  }
  
  .border_rough_fed5 {
    display: none;
  }
  
  .grid-cc67 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .liquid_3855 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.caption-first-9ebe {
  display: flex;
  align-items: center;
  gap: 6px;
}

.caption-first-9ebe svg {
  flex-shrink: 0;
}

.caption-first-9ebe a {
  color: var(--color-primary);
  text-decoration: none;
}

.caption-first-9ebe a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wrapper_dim_3e6d {
    grid-template-columns: 1fr;
  }
  
  .left-b129 {
    font-size: 1.75rem;
  }
  
  .new-bd41 {
    order: -1;
    max-width: 100%;
  }
  
  .element_a6ef {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .left-b129 {
    font-size: 1.5rem;
  }
  
  .selected_bacd {
    font-size: 1rem;
  }
  
  .notification_349c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .element_a6ef {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.top-0c49 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.card-outer-297d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.pink-769e {
  list-style: none;
  counter-reset: toc-counter;
}

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

.pink-769e 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);
}

.pink-769e 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;
}

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

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

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

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

.nav-under-ba62 {
  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);
}

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

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

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

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

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

.header-complex-4233 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.header-complex-4233 strong {
  font-weight: 600;
  color: var(--color-text);
}

.header-complex-4233 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.header-complex-4233 a:hover {
  color: var(--color-primary-dark);
}

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

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

.cool_1f0f 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) {
  .tabs-center-e2cc {
    grid-template-columns: 1fr;
  }
  
  .heading_dim_b7bc {
    font-size: 1.75rem;
  }
  
  .header-complex-4233 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .heading_dim_b7bc {
    font-size: 1.5rem;
  }
  
  .header-complex-4233 h3 {
    font-size: 1.375rem;
  }
  
  .header-complex-4233 h4 {
    font-size: 1.125rem;
  }
}

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

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

.box-fixed-d9fe {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.carousel-gas-99a3 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.video-4eec {
  flex-shrink: 0;
}

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

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

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

.photo-over-08e9,
.middle-2331,
.tabs-f073 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-over-08e9 thead,
.middle-2331 thead {
  background: var(--color-primary);
  color: white;
}

.photo-over-08e9 th,
.photo-over-08e9 td,
.middle-2331 th,
.middle-2331 td,
.tabs-f073 th,
.tabs-f073 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .photo-over-08e9 th,
  .photo-over-08e9 td,
  .middle-2331 th,
  .middle-2331 td,
  .tabs-f073 th,
  .tabs-f073 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .photo-over-08e9,
  .middle-2331,
  .tabs-f073 {
    min-width: 600px;
  }
}

.photo-over-08e9 th,
.middle-2331 th,
.tabs-f073 th {
  font-weight: 600;
}

.photo-over-08e9 tbody tr:hover,
.middle-2331 tbody tr:hover,
.tabs-f073 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.highlight_out_e83b h4 {
  color: white;
}

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

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

.picture-14a4:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.left-34ff {
  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);
}

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

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

.aside-fb23 {
  list-style: none;
  padding: 0;
}

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

.content-ed90 {
  color: #4caf50;
}

.header_wide_8040 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.accent-narrow-df8d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.accent-narrow-df8d h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mini-b106 .chip_rough_7cdc {
  width: 100%;
  background: white;
}

.hover_e247 .chip_rough_7cdc {
  color: #667eea;
}

.avatar_west_a06a .chip_rough_7cdc {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .surface_686c {
    padding: var(--space-md);
  }
  
  .article_b885 {
    padding: var(--space-md);
  }
  
  .dirty_9dd0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.summary-brown-769e,
.icon_pro_2c3c,
.bottom-e1ce,
.chip_1245 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.backdrop-1c38:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.tertiary-hard-4aad {
  border-color: var(--color-warning);
}

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

.dim_b866 .shadow_bottom_bc64 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tertiary-hard-4aad .shadow_bottom_bc64 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.breadcrumb-outer-933f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.alert-short-92d1 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.first_08f3 {
  text-align: center;
}

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

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

.stone-b4d4 .main_c3ca {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.mask-lite-2edb {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.selected-2bad {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.button-steel-382e {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.input_28ac {
  text-align: right;
}

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

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

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

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

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

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

.hidden-bright-c2bc {
  background: #e8f5e9;
  color: #2e7d32;
}

.simple-5772 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.mask-thick-1db5 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.sidebar-fixed-06f2 {
  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);
}

.sidebar-fixed-06f2:hover {
  background: var(--color-bg-alt);
}

.fixed-8f1c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.sidebar-fixed-06f2[aria-expanded="true"] .fixed-8f1c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-cool-90b6,
.video_046f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.search-cool-90b6 h4,
.video_046f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.search-cool-90b6 ul,
.video_046f ul {
  list-style: none;
  padding: 0;
}

.search-cool-90b6 li,
.video_046f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.red-6b66 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.component-outer-961b {
  font-style: italic;
}

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

.banner-983e {
  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;
}

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

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

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

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

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

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

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

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

.prev-4701:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.layout-2a2e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.fixed_2e66 a:hover {
  color: white;
}

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

.popup_full_fa5b a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

.list-522b {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.list-522b a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .column-ddaa,
  .layout-2a2e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.grid-pro-ede9 .wrapper_6916 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.cool_9711 a:hover {
  color: white;
}

.menu-8b16 {
  list-style: none;
  padding: 0;
}

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

.menu-8b16 a {
  color: #b0b0b0;
  text-decoration: none;
}

.menu-8b16 a:hover {
  color: white;
}

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

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

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

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

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

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

.solid_d5fc a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .down_d0cb {
    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;
  }
  
  .left-b129 {
    font-size: 2rem;
  }
  
  .heading_dim_b7bc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wrapper_dim_3e6d,
  .tabs-center-e2cc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pressed_7407,
  .under_4f03,
  .item-1379,
  .block_stone_c2e1,
  .primary_next_fe01,
  .wide_de8a,
  .notice-a4fd,
  .column-ddaa,
  .layout-2a2e {
    grid-template-columns: 1fr;
  }
  
  .first-28f1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .top_e055 {
    padding: var(--space-lg) 0;
  }
  
  .pink-769e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pink-769e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .chip_rough_7cdc {
    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;
  }
  
  .first-28f1 {
    grid-template-columns: 1fr;
  }
  
  .highlight-aa4c,
  .active-2acf,
  .current-9d97 {
    flex-direction: column;
    width: 100%;
  }
  
  .logo_fast_800d,
  .top-0c49,
  .highlight-aa4c .chip_rough_7cdc,
  .active-2acf .chip_rough_7cdc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .left-b129 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .heading_dim_b7bc {
    font-size: 1.375rem;
  }
  
  .layout_dc33 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .box_old_728e,
  .accent-narrow-df8d,
  .hot-abad,
  .background_stone_377b,
  .stone-3afc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .purple_79f4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sidebar-focused-1185 {
    gap: var(--space-xs);
  }
  
  .caption-first-9ebe {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .left-34ff {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .stone-b4d4 {
    width: 150px;
    height: 150px;
  }
  
  .item_smooth_9ea3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .button-7181,
  .liquid_f5a7,
  .highlight-aa4c,
  .banner-983e,
  .fast_455b,
  .center_a646,
  .status_5587 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .top_e055 {
    page-break-inside: avoid;
  }
}

/* css-noise: 648a */
.phantom-card-c2 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.1;
}
