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

.dropdown_full_587b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.icon_plasma_2dbe,
header,
.dropdown_5c28,
.container-inner-818c,
.lite-446d,
.copper_65a6,
.title_2744,
.static-2ae5,
.list-8f46 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.row-9fb0 img {
  height: 36px;
  width: auto;
  display: block;
}

.stone-4b18 {
  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;
}

.breadcrumb-3d00 {
  flex: 1;
}

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

.notice-black-46c8 {
  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);
}

.notice-black-46c8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.notice-black-46c8.fn-active-7b1f {
  background: var(--color-primary);
  color: white;
}

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

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

.item-d5f8 svg {
  transition: transform 0.2s ease;
}

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

.green-35a9 {
  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;
}

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

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

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

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

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

.filter-huge-74cb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.image_9be9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.section-012c[aria-expanded="true"] .main-blue-b526:nth-child(2) {
  opacity: 0;
}

.section-012c[aria-expanded="true"] .main-blue-b526:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .breadcrumb-3d00::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .breadcrumb-3d00.panel_b63e {
    display: block;
    right: 0;
  }
  
  .disabled_prev_096d {
    flex-direction: column;
    gap: 0;
  }
  
  .notice-black-46c8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .breadcrumb-3d00::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;
  }
  
  .breadcrumb-3d00.panel_b63e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .breadcrumb-3d00 {
    display: none;
  }
  
  .section-012c {
    display: flex;
  }
  
  .stone-4b18 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .image_9be9,
  .item_a2a9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .layout_5bcb {
    position: relative;
  }
  
  .green-35a9 {
    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;
  }
  
  .item-d5f8[aria-expanded="true"] + .green-35a9 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .copper_c36a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .filter-huge-74cb {
    gap: 8px;
  }
  
  .image_9be9 {
    display: none;
  }
  
  .item_a2a9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .row-9fb0 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.grid_37d7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.main-fluid-0bf2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.main-fluid-0bf2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.hidden-8a76 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.solid-c832 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .mask_under_b2db {
    grid-template-columns: 1fr;
  }
  
  .medium-5fca {
    font-size: 1.75rem;
  }
  
  .under-b4eb {
    order: -1;
    max-width: 100%;
  }
  
  .solid-c832 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .medium-5fca {
    font-size: 1.5rem;
  }
  
  .logo-fast-f3a7 {
    font-size: 1rem;
  }
  
  .main-fluid-0bf2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .solid-c832 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.button-middle-0f40 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.article-liquid-f0cf {
  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-pressed-01af {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

.footer-hard-3bcd {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.footer-hard-3bcd img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-hard-3bcd pre,
.footer-hard-3bcd code {
  overflow-x: auto;
  max-width: 100%;
}

.footer-hard-3bcd 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);
}

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

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

.footer-hard-3bcd p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.footer-hard-3bcd ul,
.footer-hard-3bcd ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.footer-hard-3bcd li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.footer-hard-3bcd strong {
  font-weight: 600;
  color: var(--color-text);
}

.footer-hard-3bcd a {
  color: var(--color-primary);
  text-decoration: underline;
}

.footer-hard-3bcd a:hover {
  color: var(--color-primary-dark);
}

.icon-advanced-9fb0 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.icon-advanced-9fb0 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) {
  .focus-brown-9d27 {
    grid-template-columns: 1fr;
  }
  
  .article-liquid-f0cf {
    font-size: 1.75rem;
  }
  
  .footer-hard-3bcd {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .article-liquid-f0cf {
    font-size: 1.5rem;
  }
  
  .footer-hard-3bcd h3 {
    font-size: 1.375rem;
  }
  
  .footer-hard-3bcd h4 {
    font-size: 1.125rem;
  }
}

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

.fast-1dc7 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.liquid-f3d3 {
  flex-shrink: 0;
}

.sort-action-69af strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.list_green_be7b,
.pattern_up_0990,
.disabled_stone_40e1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_green_be7b thead,
.pattern_up_0990 thead {
  background: var(--color-primary);
  color: white;
}

.list_green_be7b th,
.list_green_be7b td,
.pattern_up_0990 th,
.pattern_up_0990 td,
.disabled_stone_40e1 th,
.disabled_stone_40e1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_green_be7b th,
  .list_green_be7b td,
  .pattern_up_0990 th,
  .pattern_up_0990 td,
  .disabled_stone_40e1 th,
  .disabled_stone_40e1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_green_be7b,
  .pattern_up_0990,
  .disabled_stone_40e1 {
    min-width: 600px;
  }
}

.list_green_be7b th,
.pattern_up_0990 th,
.disabled_stone_40e1 th {
  font-weight: 600;
}

.list_green_be7b tbody tr:hover,
.pattern_up_0990 tbody tr:hover,
.disabled_stone_40e1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tertiary-3908 h4 {
  color: white;
}

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

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

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

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

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

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

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

.right-cedd:hover {
  text-decoration: underline;
}

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

.advanced-0d56 {
  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);
}

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

.secondary-in-9c2c {
  font-weight: 600;
  color: white;
}

.slider-59d1 {
  list-style: none;
  padding: 0;
}

.slider-59d1 li {
  padding: var(--space-xs) 0;
}

.input-c3db {
  color: #4caf50;
}

.purple_dc42 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-in-9c2c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.nav-68d0 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.pagination-9e96 .card_light_3055 {
  width: 100%;
  background: white;
}

.card-b95b .card_light_3055 {
  color: #667eea;
}

.description-09cc .card_light_3055 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.chip-fast-64e8 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.button-outer-dc13 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .button-outer-dc13 {
    padding: var(--space-md);
  }
  
  .paragraph_af27 {
    padding: var(--space-md);
  }
  
  .media_smooth_1c38 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.primary-33f6 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.widget_in_a5d3,
.outer_10ee,
.texture_orange_5e07,
.mini-131b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-2358 .badge_soft_ad77 {
  background: #e8f5e9;
  color: var(--color-success);
}

.mask-f8b3 .badge_soft_ad77 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-93b7 {
  margin-top: var(--space-xxl);
}

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

.status_cdf5 {
  text-align: center;
}

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

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

.silver_cc27 .secondary-in-9c2c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer-green-3fbc {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.wrapper-over-ebc8 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.item-73cb {
  text-align: right;
}

.item-73cb .component-f4b4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.avatar-pro-7db8 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.basic-37af {
  background: #e8f5e9;
  color: #2e7d32;
}

.menu-out-fe6a {
  background: #e3f2fd;
  color: #1565c0;
}

.smooth-5e90 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-mini-7408 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.liquid-d4df[aria-expanded="true"] .slider-mini-7408 {
  transform: rotate(180deg);
}

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

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

.hover-short-9f96 ul,
.hover-short-9f96 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.hover-short-9f96 li {
  margin-bottom: var(--space-xs);
}

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

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

.cool-57a9 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

.hidden-next-7706 {
  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);
}

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

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

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

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

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

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

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

.component_c82c ul,
.border_67ca ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower_1d0d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_86d0 .feature_3e35 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.popup_inner_22e0 a:hover {
  color: white;
}

.paper-267d {
  list-style: none;
  padding: 0;
}

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

.paper-267d a {
  color: #b0b0b0;
  text-decoration: none;
}

.paper-267d a:hover {
  color: white;
}

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

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

.pattern-solid-0714 a {
  color: #4caf50;
  text-decoration: none;
}

.texture-27ff {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .column_176c {
    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;
  }
  
  .medium-5fca {
    font-size: 2rem;
  }
  
  .article-liquid-f0cf {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mask_under_b2db,
  .focus-brown-9d27 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search_solid_5bf6,
  .avatar-dd13,
  .hidden_2d71,
  .tall-c24f,
  .under_c370,
  .hovered-6d27,
  .section_under_c421,
  .container-036f {
    grid-template-columns: 1fr;
  }
  
  .input_4b0e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .title_2744 {
    padding: var(--space-lg) 0;
  }
  
  .message_bb70 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .message_bb70 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .card_light_3055 {
    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;
  }
  
  .input_4b0e {
    grid-template-columns: 1fr;
  }
  
  .hidden-8a76,
  .yellow-95e3,
  .fast-2721 {
    flex-direction: column;
    width: 100%;
  }
  
  .description_right_5583,
  .slow-f56a,
  .hidden-8a76 .card_light_3055,
  .yellow-95e3 .card_light_3055 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .medium-5fca {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article-liquid-f0cf {
    font-size: 1.375rem;
  }
  
  .block-clean-9fcc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .glass_a53f,
  .picture_53e6,
  .box-prev-c4bb,
  .hover_light_4d09,
  .menu-silver-9493 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .primary_pro_3560 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper-dim-5558 {
    gap: var(--space-xs);
  }
  
  .grid_37d7 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .advanced-0d56 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .silver_cc27 {
    width: 150px;
    height: 150px;
  }
  
  .secondary-1614 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .icon_plasma_2dbe,
  .dropdown_5c28,
  .hidden-8a76,
  .small_1013,
  .static-2ae5,
  .list-8f46,
  .section-012c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .title_2744 {
    page-break-inside: avoid;
  }
}

/* css-noise: 30a7 */
.phantom-card-v7 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.3;
}
