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

.media_6bb3:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.badge-573d):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. */
.badge-573d,
header,
.soft_b0ee,
.layout_silver_a1a8,
.dropdown_tiny_1c25,
.input_7b0b,
.focus_bd85,
.badge_lite_7407,
.plasma-6f82 {
  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
   ============================================ */
.badge-573d {
  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);
}

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

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

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

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

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

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

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

.blue-cc6d {
  flex: 1;
}

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

.button-9e2d {
  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);
}

.button-9e2d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.button-9e2d.accordion_new_7266 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.summary-lite-50c5 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.progress_rough_4c0b svg {
  flex-shrink: 0;
}

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

.widget-complex-cade: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);
}

.widget-complex-cade svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .blue-cc6d {
    display: none;
  }
  
  .fast_5c5f {
    display: flex;
  }
  
  .breadcrumb_c117 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .progress_rough_4c0b,
  .widget-complex-cade {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .summary-lite-50c5 {
    position: relative;
  }
  
  .north_3924 {
    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;
  }
  
  .footer_north_177a[aria-expanded="true"] + .north_3924 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .icon-basic-52d3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content_5f81 {
    gap: 8px;
  }
  
  .progress_rough_4c0b {
    display: none;
  }
  
  .widget-complex-cade {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .accordion_8e9a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.pink_9836 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.overlay-ca32 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.right-ca2d {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.focus-dirty-1ec8 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .over-b89b {
    grid-template-columns: 1fr;
  }
  
  .solid_5aa5 {
    font-size: 1.75rem;
  }
  
  .heading_south_5ab1 {
    order: -1;
    max-width: 100%;
  }
  
  .right-ca2d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .solid_5aa5 {
    font-size: 1.5rem;
  }
  
  .gradient_3fda {
    font-size: 1rem;
  }
  
  .overlay-ca32 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .right-ca2d {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.banner-motion-58bf {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.next-55af {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-pressed-77e8 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tiny-6ea0 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.tiny-6ea0 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) {
  .slider_green_4469 {
    grid-template-columns: 1fr;
  }
  
  .message-pressed-77e8 {
    font-size: 1.75rem;
  }
  
  .plasma_d0df {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .message-pressed-77e8 {
    font-size: 1.5rem;
  }
  
  .plasma_d0df h3 {
    font-size: 1.375rem;
  }
  
  .plasma_d0df h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.container-2f03 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.grid-hard-46fd strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.item_dark_e941 {
  flex-shrink: 0;
}

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

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

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

.module-971e,
.shade_upper_5554,
.slow_3681 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.module-971e thead,
.shade_upper_5554 thead {
  background: var(--color-primary);
  color: white;
}

.module-971e th,
.module-971e td,
.shade_upper_5554 th,
.shade_upper_5554 td,
.slow_3681 th,
.slow_3681 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .module-971e th,
  .module-971e td,
  .shade_upper_5554 th,
  .shade_upper_5554 td,
  .slow_3681 th,
  .slow_3681 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .module-971e,
  .shade_upper_5554,
  .slow_3681 {
    min-width: 600px;
  }
}

.module-971e th,
.shade_upper_5554 th,
.slow_3681 th {
  font-weight: 600;
}

.module-971e tbody tr:hover,
.shade_upper_5554 tbody tr:hover,
.slow_3681 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.in_f206 h4 {
  color: white;
}

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

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

.hover-36b2:last-child {
  border-bottom: none;
}

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

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

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

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

.pattern-3246:hover {
  text-decoration: underline;
}

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

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

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

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

.layout-out-7a4c {
  list-style: none;
  padding: 0;
}

.layout-out-7a4c li {
  padding: var(--space-xs) 0;
}

.block_55a8 {
  color: #4caf50;
}

.aside-50c9 {
  color: #ff9800;
}

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

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

.focus-tiny-7ec8 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-iron-fd98 .description_gold_faee {
  width: 100%;
  background: white;
}

.liquid_24e2 .description_gold_faee {
  color: #667eea;
}

.focus-inner-2724 .description_gold_faee {
  color: #f5576c;
}

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

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

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

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

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

.pink-19ce {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .sort_south_e141 {
    padding: var(--space-md);
  }
  
  .pink-19ce {
    padding: var(--space-md);
  }
  
  .steel_5777 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.message-center-25ac,
.outline_fe27,
.progress_pink_50d4,
.overlay-c5c7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.wood-7e50 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.up-9fb8 {
  border-color: var(--color-success);
}

.static-6c33 {
  border-color: var(--color-warning);
}

.description-left-f91d {
  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);
}

.up-9fb8 .description-left-f91d {
  background: #e8f5e9;
  color: var(--color-success);
}

.static-6c33 .description-left-f91d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.text-slow-70c4 {
  margin-top: var(--space-xxl);
}

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

.overlay-dde6 {
  text-align: center;
}

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

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

.dark-d0c2 .dynamic_0304 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.badge-basic-4663 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.container-74b6 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.narrow-030f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.picture-simple-54f9 {
  text-align: right;
}

.picture-simple-54f9 .preview-motion-5002 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.bottom-50b0 {
  background: #e3f2fd;
  color: #1565c0;
}

.left-227e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.iron-5fd1 {
  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);
}

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

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

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

.action-27e0 strong {
  color: var(--color-primary);
}

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

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

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

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

.heading_5a30 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

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

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

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

.alert-light-57b0 ul,
.alert-light-57b0 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.alert-light-57b0 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.cool_4c48 ul,
.plasma_88da ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-gas-6a94 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard_53ba .middle-b136 {
  color: #4caf50;
  font-size: 0.875rem;
}

.tertiary-7bce {
  list-style: none;
  padding: 0;
}

.tertiary-7bce li {
  margin-bottom: var(--space-xs);
}

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

.tertiary-7bce a:hover {
  color: white;
}

.steel-a278 {
  list-style: none;
  padding: 0;
}

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

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

.steel-a278 a:hover {
  color: white;
}

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

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

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

.feature-over-1415 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .complex_d3f1 {
    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;
  }
  
  .solid_5aa5 {
    font-size: 2rem;
  }
  
  .message-pressed-77e8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .over-b89b,
  .slider_green_4469 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .narrow-5331,
  .orange_ae72,
  .gradient_b8e5,
  .basic-ac3b,
  .container_197e,
  .backdrop_e8db,
  .sidebar_hovered_4562,
  .mini_9663 {
    grid-template-columns: 1fr;
  }
  
  .current-4d4b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .focus_bd85 {
    padding: var(--space-lg) 0;
  }
  
  .lower_ab7e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .lower_ab7e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .description_gold_faee {
    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;
  }
  
  .current-4d4b {
    grid-template-columns: 1fr;
  }
  
  .table_d0f0,
  .text-hard-d6b3,
  .primary-basic-8322 {
    flex-direction: column;
    width: 100%;
  }
  
  .banner-motion-58bf,
  .next-55af,
  .table_d0f0 .description_gold_faee,
  .text-hard-d6b3 .description_gold_faee {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .solid_5aa5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .message-pressed-77e8 {
    font-size: 1.375rem;
  }
  
  .bottom-0817 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .logo_rough_3568,
  .stone-5cae,
  .media-active-0100,
  .content-iron-6eaa,
  .focus_0de6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focus-lower-9b55 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .panel-b734 {
    gap: var(--space-xs);
  }
  
  .pink_9836 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .blue_34b9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dark-d0c2 {
    width: 150px;
    height: 150px;
  }
  
  .south-c6e5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .badge-573d,
  .soft_b0ee,
  .table_d0f0,
  .red_fe04,
  .badge_lite_7407,
  .plasma-6f82,
  .fast_5c5f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .focus_bd85 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a6ba */
.widget-item-p4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
