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

.soft_4382:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.popup-db17):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. */
.popup-db17,
header,
.outline-050f,
.shadow_0b3a,
.card-b96b,
.chip_hard_656f,
.white-7e23,
.form-f904,
.dirty-b3e4 {
  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
   ============================================ */
.popup-db17 {
  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);
}

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

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

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

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

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

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

.tag-tiny-dc53 {
  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;
}

.hover_solid_7de7 {
  flex: 1;
}

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

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

.menu-1318:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.menu-1318.black-94fd {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.surface-93ea {
  position: relative;
}

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

.text-8f33 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.gradient-a75d svg {
  flex-shrink: 0;
}

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

.outer-6ac5: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);
}

.outer-6ac5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .hover_solid_7de7 {
    display: none;
  }
  
  .popup_dim_322c {
    display: flex;
  }
  
  .tag-tiny-dc53 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gradient-a75d,
  .outer-6ac5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .surface-93ea {
    position: relative;
  }
  
  .border_7de8 {
    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;
  }
  
  .text-8f33[aria-expanded="true"] + .border_7de8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .form_e3e8 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .full-0235 {
    gap: 8px;
  }
  
  .gradient-a75d {
    display: none;
  }
  
  .outer-6ac5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hovered_4f18 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.gradient_cold_448a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.mask-6eec a {
  color: var(--color-primary);
  text-decoration: none;
}

.mask-6eec a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-lower-b562 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .shadow_bronze_20af {
    grid-template-columns: 1fr;
  }
  
  .top_4be7 {
    font-size: 1.75rem;
  }
  
  .accordion-6030 {
    order: -1;
    max-width: 100%;
  }
  
  .mask-lower-b562 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .top_4be7 {
    font-size: 1.5rem;
  }
  
  .nav-complex-b539 {
    font-size: 1rem;
  }
  
  .mask-6eec {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask-lower-b562 {
    max-width: 250px;
  }
}

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

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

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

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

.form-22c8:hover {
  background: var(--color-primary);
  color: white;
}

.detail-short-88a1 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.detail-short-88a1:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.main-21fb {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.preview-fresh-5c45 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.content-down-dbe3 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.content-down-dbe3 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);
}

.content-down-dbe3 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;
}

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

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

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

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

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

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

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

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

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

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

.summary-in-a008 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.summary-in-a008 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);
}

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

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

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

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

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

.summary-in-a008 strong {
  font-weight: 600;
  color: var(--color-text);
}

.summary-in-a008 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.summary-in-a008 a:hover {
  color: var(--color-primary-dark);
}

.border-fluid-90a4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.border-fluid-90a4 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) {
  .row_top_3025 {
    grid-template-columns: 1fr;
  }
  
  .table_3622 {
    font-size: 1.75rem;
  }
  
  .summary-in-a008 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .table_3622 {
    font-size: 1.5rem;
  }
  
  .summary-in-a008 h3 {
    font-size: 1.375rem;
  }
  
  .summary-in-a008 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.alert-fast-4a80 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.list_complex_6bba {
  flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
  .shade_665e {
    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-up-5342,
.over_559b,
.dark_3a2b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.module-up-5342 thead,
.over_559b thead {
  background: var(--color-primary);
  color: white;
}

.module-up-5342 th,
.module-up-5342 td,
.over_559b th,
.over_559b td,
.dark_3a2b th,
.dark_3a2b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .module-up-5342 th,
  .module-up-5342 td,
  .over_559b th,
  .over_559b td,
  .dark_3a2b th,
  .dark_3a2b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .module-up-5342,
  .over_559b,
  .dark_3a2b {
    min-width: 600px;
  }
}

.module-up-5342 th,
.over_559b th,
.dark_3a2b th {
  font-weight: 600;
}

.module-up-5342 tbody tr:hover,
.over_559b tbody tr:hover,
.dark_3a2b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tooltip_5ed6 h4 {
  color: white;
}

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

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

.item-wood-529e:last-child {
  border-bottom: none;
}

.item-wood-529e dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.item-wood-529e dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.wrapper-under-5e12 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

.disabled-red-3747:hover {
  text-decoration: underline;
}

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

.heading-full-49e6 {
  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);
}

.heading-full-49e6 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.list-silver-37fc {
  font-weight: 600;
  color: white;
}

.fixed-0e11 {
  list-style: none;
  padding: 0;
}

.fixed-0e11 li {
  padding: var(--space-xs) 0;
}

.picture_c247 {
  color: #4caf50;
}

.static-e8f7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-silver-37fc {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.section-5b9b {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.sort_62fd .tertiary_7a14 {
  width: 100%;
  background: white;
}

.north_6a72 .tertiary_7a14 {
  color: #667eea;
}

.focus-upper-d904 .tertiary_7a14 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.badge-down-3c41 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_c8ae,
.media-pressed-19d6,
.pattern_pro_1a41,
.bronze-52c4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hard-4c99:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.icon_middle_7ccf .purple-f302 {
  background: #e8f5e9;
  color: var(--color-success);
}

.filter_24c1 .purple-f302 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-3a44 {
  text-align: center;
}

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

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

.item_4a25 .list-silver-37fc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.module-soft-7ec7 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer-hovered-ad3e p {
  margin-bottom: var(--space-md);
}

.message-blue-63b8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-lite-7802 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.accent_1670 {
  text-align: right;
}

.accent_1670 .lower-160f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.rough-0a4c {
  background: #fff3e0;
  color: #e65100;
}

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

.heading-full-37eb span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.outer-9b4f {
  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);
}

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

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

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

.upper-7d7a strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.block-cold-fd27 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hero_full_959c[aria-expanded="true"] .block-cold-fd27 {
  transform: rotate(180deg);
}

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

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

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

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

.table-under-5ff8 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

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

.table-under-5ff8 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

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

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

.image-soft-cbcb {
  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);
}

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

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

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

.dynamic-baea,
.content_right_8416 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dynamic-baea h4,
.content_right_8416 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dynamic-baea ul,
.content_right_8416 ul {
  list-style: none;
  padding: 0;
}

.dynamic-baea li,
.content_right_8416 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.list_dd3a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.feature-full-742f {
  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);
}

.feature-full-742f:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.feature-full-742f p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.tag-de21 .fast-e0c6 {
  color: #4caf50;
  font-size: 0.875rem;
}

.selected-9811 {
  list-style: none;
  padding: 0;
}

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

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

.selected-9811 a:hover {
  color: white;
}

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

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

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

.full_82e7 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .filter_9734 {
    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;
  }
  
  .top_4be7 {
    font-size: 2rem;
  }
  
  .table_3622 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow_bronze_20af,
  .row_top_3025 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .east_238b,
  .picture-1c1b,
  .light_a7f2,
  .table_small_5102,
  .status-f328,
  .cold-2c79,
  .media_outer_fd84,
  .info_black_f43f {
    grid-template-columns: 1fr;
  }
  
  .lite_c76b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .white-7e23 {
    padding: var(--space-lg) 0;
  }
  
  .content-down-dbe3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .content-down-dbe3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tertiary_7a14 {
    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;
  }
  
  .lite_c76b {
    grid-template-columns: 1fr;
  }
  
  .bronze-f1c0,
  .widget_5b9e,
  .bottom-4db5 {
    flex-direction: column;
    width: 100%;
  }
  
  .main-21fb,
  .preview-fresh-5c45,
  .bronze-f1c0 .tertiary_7a14,
  .widget_5b9e .tertiary_7a14 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .top_4be7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .table_3622 {
    font-size: 1.375rem;
  }
  
  .disabled-fixed-77a9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .smooth-7428,
  .blue-db33,
  .bronze-6db2,
  .dynamic_e685,
  .title-new-c801 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .summary_west_2b5b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .feature_b1e8 {
    gap: var(--space-xs);
  }
  
  .gradient_cold_448a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .heading-full-49e6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .item_4a25 {
    width: 150px;
    height: 150px;
  }
  
  .outer_d84e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .popup-db17,
  .outline-050f,
  .bronze-f1c0,
  .notification_action_d4b9,
  .form-f904,
  .dirty-b3e4,
  .popup_dim_322c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .white-7e23 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 233c */
.ghost-box-c2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
