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

.simple-74d2:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .row-inner-12fa {
    padding: 0 var(--space-sm);
  }
}

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.stale-b0a4):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. */
.stale-b0a4,
header,
.alert-c956,
.highlight_2c83,
.element-small-5d3b,
.backdrop-narrow-ac4d,
.hard_f5e2,
.secondary_e95f,
.overlay_1ff0 {
  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
   ============================================ */
.stale-b0a4 {
  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_center_5f4f {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.lower-4693 img {
  height: 36px;
  width: auto;
  display: block;
}

.status-dim-b049 {
  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;
}

.glass-27e2 {
  flex: 1;
}

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

.block-down-86df {
  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);
}

.block-down-86df:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.block-down-86df.popup-25b9 {
  background: var(--color-primary);
  color: white;
}

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

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

.small-78eb svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.pagination_hard_d4d0 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.column_hovered_3dfc[aria-expanded="true"] .aside-clean-a3a8:nth-child(2) {
  opacity: 0;
}

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

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

  .glass-27e2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .glass-27e2.table_tiny_478e {
    display: block;
    right: 0;
  }
  
  .notice-f277 {
    flex-direction: column;
    gap: 0;
  }
  
  .block-down-86df {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .glass-27e2::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;
  }
  
  .glass-27e2.table_tiny_478e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .glass-27e2 {
    display: none;
  }
  
  .column_hovered_3dfc {
    display: flex;
  }
  
  .status-dim-b049 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pagination_hard_d4d0,
  .breadcrumb_5817 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .detail-bright-3342 {
    position: relative;
  }
  
  .nav_green_657b {
    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;
  }
  
  .small-78eb[aria-expanded="true"] + .nav_green_657b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .mask-09a9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .lite_7afb {
    gap: 8px;
  }
  
  .pagination_hard_d4d0 {
    display: none;
  }
  
  .breadcrumb_5817 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .lower-4693 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.shadow-plasma-25a4 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shadow-plasma-25a4 svg {
  flex-shrink: 0;
}

.shadow-plasma-25a4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.shadow-plasma-25a4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.thumbnail-upper-06db a {
  color: var(--color-primary);
  text-decoration: none;
}

.thumbnail-upper-06db a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.block-stone-a265 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.block-stone-a265 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.border-up-e2f9 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-4452 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .border_steel_cc58 {
    grid-template-columns: 1fr;
  }
  
  .texture-out-e299 {
    font-size: 1.75rem;
  }
  
  .border-up-e2f9 {
    order: -1;
    max-width: 100%;
  }
  
  .left-4452 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .texture-out-e299 {
    font-size: 1.5rem;
  }
  
  .focus-bronze-89bd {
    font-size: 1rem;
  }
  
  .thumbnail-upper-06db {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .left-4452 {
    max-width: 250px;
  }
}

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

.main-complex-1bb1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.green-1db2 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.text-3e48 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.text-3e48 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);
}

.text-3e48 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;
}

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

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

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

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

.shadow-9aeb {
  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);
}

.image-orange-2a32 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.red_56d1 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) {
  .module_3a94 {
    grid-template-columns: 1fr;
  }
  
  .image-orange-2a32 {
    font-size: 1.75rem;
  }
  
  .breadcrumb_stale_f215 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .image-orange-2a32 {
    font-size: 1.5rem;
  }
  
  .breadcrumb_stale_f215 h3 {
    font-size: 1.375rem;
  }
  
  .breadcrumb_stale_f215 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.cold-1e12 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.main_35cc {
  flex-shrink: 0;
}

.over-386f strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.surface-next-8c1c,
.panel-b165,
.inner_812e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.surface-next-8c1c thead,
.panel-b165 thead {
  background: var(--color-primary);
  color: white;
}

.surface-next-8c1c th,
.surface-next-8c1c td,
.panel-b165 th,
.panel-b165 td,
.inner_812e th,
.inner_812e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .surface-next-8c1c th,
  .surface-next-8c1c td,
  .panel-b165 th,
  .panel-b165 td,
  .inner_812e th,
  .inner_812e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .surface-next-8c1c,
  .panel-b165,
  .inner_812e {
    min-width: 600px;
  }
}

.surface-next-8c1c th,
.panel-b165 th,
.inner_812e th {
  font-weight: 600;
}

.surface-next-8c1c tbody tr:hover,
.panel-b165 tbody tr:hover,
.inner_812e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.fresh_7b52 h4 {
  color: white;
}

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

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

.secondary-3110:last-child {
  border-bottom: none;
}

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

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

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

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

.button-hot-4bcb:hover {
  text-decoration: underline;
}

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

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

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

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

.tall-55de {
  list-style: none;
  padding: 0;
}

.tall-55de li {
  padding: var(--space-xs) 0;
}

.new_95e1 {
  color: #4caf50;
}

.column-26cb {
  color: #ff9800;
}

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

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

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

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

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

.wrapper-top-972e {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_slow_62e5 .liquid_c852 {
  width: 100%;
  background: white;
}

.heading_stone_34ad .liquid_c852 {
  color: #667eea;
}

.plasma-72ed .liquid_c852 {
  color: #f5576c;
}

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

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

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

.hero-rough-1556 {
  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);
}

.active-new-9ad7 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.advanced-344b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .active-new-9ad7 {
    padding: var(--space-md);
  }
  
  .advanced-344b {
    padding: var(--space-md);
  }
  
  .texture-35ef {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.primary-east-52cf ol,
.primary-east-52cf ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.primary-east-52cf li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.image_lower_330c,
.large_3fda,
.list-fast-cc28,
.lite_2b8d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.warm-9516 .link_e577 {
  background: #e8f5e9;
  color: var(--color-success);
}

.breadcrumb_outer_4e91 .link_e577 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-7f3f {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-motion-1523 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.sidebar-d555 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.sidebar_pressed_8f27 {
  text-align: right;
}

.sidebar_pressed_8f27 .hidden-dynamic-459e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.box-static-451b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-soft-54b8 strong {
  color: var(--color-primary);
}

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

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

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

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

.clean-4ca9 {
  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);
}

.clean-4ca9:hover {
  background: var(--color-bg-alt);
}

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

.clean-4ca9[aria-expanded="true"] .warm_6af2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_dfb2 ul,
.silver_bf2a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-cfb1 {
  font-style: italic;
}

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

.pagination-34df {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info_d05a .preview_solid_1cb9 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.basic_f2ac a:hover {
  color: white;
}

.component-fast-89fe {
  list-style: none;
  padding: 0;
}

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

.component-fast-89fe a {
  color: #b0b0b0;
  text-decoration: none;
}

.component-fast-89fe a:hover {
  color: white;
}

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

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

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

.cool-500e {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .border_tiny_8f81 {
    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;
  }
  
  .texture-out-e299 {
    font-size: 2rem;
  }
  
  .image-orange-2a32 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .border_steel_cc58,
  .module_3a94 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .paragraph_6842,
  .hover-last-1f49,
  .background_570a,
  .shade_b05e,
  .item-easy-9fd8,
  .mask-4ca6,
  .avatar_e085,
  .under_1ad1 {
    grid-template-columns: 1fr;
  }
  
  .element_d2f8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hard_f5e2 {
    padding: var(--space-lg) 0;
  }
  
  .text-3e48 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .text-3e48 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .liquid_c852 {
    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;
  }
  
  .element_d2f8 {
    grid-template-columns: 1fr;
  }
  
  .complex_05a9,
  .content_8539,
  .slider-full-da2d {
    flex-direction: column;
    width: 100%;
  }
  
  .green-1db2,
  .container_129e,
  .complex_05a9 .liquid_c852,
  .content_8539 .liquid_c852 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .texture-out-e299 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .image-orange-2a32 {
    font-size: 1.375rem;
  }
  
  .panel_2db9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wide-4701,
  .dirty_32df,
  .rough_1aa7,
  .stale-bf61,
  .panel_8992 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .component_hot_8b9f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .chip-5770 {
    gap: var(--space-xs);
  }
  
  .shadow-plasma-25a4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .dirty_eea1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notice_green_a4e7 {
    width: 150px;
    height: 150px;
  }
  
  .widget_0d59 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .stale-b0a4,
  .alert-c956,
  .complex_05a9,
  .pagination-34df,
  .secondary_e95f,
  .overlay_1ff0,
  .column_hovered_3dfc {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hard_f5e2 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a7c8 */
.widget-item-t2 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.0;
}
