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

.shadow_selected_d891:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.carousel-static-7c76):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. */
.carousel-static-7c76,
header,
.section_slow_c584,
.solid-afc8,
.accent_1f1d,
.wrapper_mini_95d6,
.content-upper-a6da,
.pattern_bottom_2ece,
.short-b02c {
  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
   ============================================ */
.carousel-static-7c76 {
  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);
}

.tag-38ef {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.carousel-static-7c76.chip_f9ae {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.link-9c5a img {
  height: 36px;
  width: auto;
  display: block;
}

.light-1be3 {
  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;
}

.paper_7cb7 {
  flex: 1;
}

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

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

.hard-e111:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hard-e111.feature-2479 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.west-4c26 {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.border-148b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.border-148b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .paper_7cb7::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .paper_7cb7.mask-6e91 {
    display: block;
    right: 0;
  }
  
  .element_hot_3ec7 {
    flex-direction: column;
    gap: 0;
  }
  
  .hard-e111 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .paper_7cb7::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;
  }
  
  .paper_7cb7.mask-6e91::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .paper_7cb7 {
    display: none;
  }
  
  .lite_3543 {
    display: flex;
  }
  
  .light-1be3 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .border-148b,
  .cool-f935 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .easy_0059 {
    position: relative;
  }
  
  .west-4c26 {
    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;
  }
  
  .background_wood_c7d3[aria-expanded="true"] + .west-4c26 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .main-1866 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pink_dfbb {
    gap: 8px;
  }
  
  .border-148b {
    display: none;
  }
  
  .cool-f935 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .link-9c5a img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .cool-f935 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .cool-f935 svg {
    width: 14px;
    height: 14px;
  }
  
  .layout-hard-8eb6 {
    gap: var(--space-sm);
  }
}

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

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

.link-warm-3e9e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.link-warm-3e9e svg {
  flex-shrink: 0;
}

.link-warm-3e9e a {
  color: var(--color-primary);
  text-decoration: none;
}

.link-warm-3e9e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.selected-89c9 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .primary_middle_6bd9 {
    grid-template-columns: 1fr;
  }
  
  .form_c4bb {
    font-size: 1.75rem;
  }
  
  .center_309c {
    order: -1;
    max-width: 100%;
  }
  
  .selected-89c9 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .form_c4bb {
    font-size: 1.5rem;
  }
  
  .item_9a74 {
    font-size: 1rem;
  }
  
  .nav_old_96cc {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .selected-89c9 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.focused-4a9c {
  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-aee0 {
  background: var(--color-primary);
  color: white;
}

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

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

.footer-plasma-efda:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.container-97aa {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.overlay-tall-35a3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-545c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.container-545c 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) {
  .alert-dirty-8320 {
    grid-template-columns: 1fr;
  }
  
  .video_5f07 {
    font-size: 1.75rem;
  }
  
  .article_8ad4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .video_5f07 {
    font-size: 1.5rem;
  }
  
  .article_8ad4 h3 {
    font-size: 1.375rem;
  }
  
  .article_8ad4 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.dynamic-f97c {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: #f1f8ff;
  border: 2px solid #0366d6;
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
}

.video_plasma_8f4f {
  flex-shrink: 0;
}

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

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

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

.center-3ac1,
.layout_stale_bf8a,
.selected_7165 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.center-3ac1 thead,
.layout_stale_bf8a thead {
  background: var(--color-primary);
  color: white;
}

.center-3ac1 th,
.center-3ac1 td,
.layout_stale_bf8a th,
.layout_stale_bf8a td,
.selected_7165 th,
.selected_7165 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .center-3ac1 th,
  .center-3ac1 td,
  .layout_stale_bf8a th,
  .layout_stale_bf8a td,
  .selected_7165 th,
  .selected_7165 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .center-3ac1,
  .layout_stale_bf8a,
  .selected_7165 {
    min-width: 600px;
  }
}

.center-3ac1 th,
.layout_stale_bf8a th,
.selected_7165 th {
  font-weight: 600;
}

.center-3ac1 tbody tr:hover,
.layout_stale_bf8a tbody tr:hover,
.selected_7165 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pro_8569 h4 {
  color: white;
}

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

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

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

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

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

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

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

.liquid-568f:hover {
  text-decoration: underline;
}

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

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

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

.medium-2b93 {
  font-weight: 600;
  color: white;
}

.dropdown-full-8150 {
  list-style: none;
  padding: 0;
}

.dropdown-full-8150 li {
  padding: var(--space-xs) 0;
}

.modal-dc67 {
  color: #4caf50;
}

.picture_8d56 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shadow-small-0e4e .focused-4a9c {
  width: 100%;
  background: white;
}

.backdrop_small_03c6 .focused-4a9c {
  color: #667eea;
}

.aside_b93c .focused-4a9c {
  color: #f5576c;
}

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

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

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

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

.caption-23cc h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .caption-23cc {
    padding: var(--space-md);
  }
  
  .first_168c {
    padding: var(--space-md);
  }
  
  .clean-a3d0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.header_mini_5400,
.tooltip_bceb,
.bronze-64aa,
.main_f533 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.main-mini-3bc6:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.wood_7f5d .first_3fd4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.mask_8d17 .first_3fd4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas-b1fa {
  text-align: center;
}

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

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

.item_76a2 .medium-2b93 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.filter-huge-2a6b {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

.tabs-mini-ba4a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.main-bronze-67ab {
  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;
}

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

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

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

.in-e897 {
  text-align: right;
}

.in-e897 .glass-94f7 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.icon-dirty-9cc9 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.last-9ee1 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.gradient-brown-b8eb {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.layout-gold-61dc strong {
  color: var(--color-primary);
}

.message-fixed-852d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.pagination-wood-5be7 {
  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);
}

.pagination-wood-5be7:hover {
  background: var(--color-bg-alt);
}

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

.pagination-wood-5be7[aria-expanded="true"] .blue_a31b {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_old_3d31,
.picture-a992 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.thumbnail_old_3d31 h4,
.picture-a992 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.thumbnail_old_3d31 ul,
.picture-a992 ul {
  list-style: none;
  padding: 0;
}

.thumbnail_old_3d31 li,
.picture-a992 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block-complex-0f9d {
  font-style: italic;
}

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

.tooltip-5bf1 {
  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;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .container-outer-7c17 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.large-4bb1 .panel_e105 {
  color: #4caf50;
  font-size: 0.875rem;
}

.gold-103c {
  list-style: none;
  padding: 0;
}

.gold-103c li {
  margin-bottom: var(--space-xs);
}

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

.gold-103c a:hover {
  color: white;
}

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

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

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

.alert_selected_35fb a:hover {
  color: white;
}

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

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

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

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

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

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

.thumbnail-selected-b764:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .orange-2f54 {
    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;
  }
  
  .form_c4bb {
    font-size: 2rem;
  }
  
  .video_5f07 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .primary_middle_6bd9,
  .alert-dirty-8320 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .button-paper-a497,
  .warm-196f,
  .video-1c76,
  .shadow-2f0b,
  .stale-49f5,
  .message-e0be,
  .container-outer-7c17,
  .label_dim_e55a {
    grid-template-columns: 1fr;
  }
  
  .dropdown-06aa {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .content-upper-a6da {
    padding: var(--space-lg) 0;
  }
  
  .block_ca2f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .block_ca2f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focused-4a9c {
    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;
  }
  
  .dropdown-06aa {
    grid-template-columns: 1fr;
  }
  
  .disabled-2671,
  .content-complex-9b6e,
  .pink-5fc3 {
    flex-direction: column;
    width: 100%;
  }
  
  .container-97aa,
  .next_cd99,
  .disabled-2671 .focused-4a9c,
  .content-complex-9b6e .focused-4a9c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .form_c4bb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .video_5f07 {
    font-size: 1.375rem;
  }
  
  .steel-098b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .overlay-tall-35a3,
  .middle_5111,
  .hard_452e,
  .bottom_46d4,
  .sidebar_cc02 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .progress-aa61 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fast-08a7 {
    gap: var(--space-xs);
  }
  
  .link-warm-3e9e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner_58cf {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .item_76a2 {
    width: 150px;
    height: 150px;
  }
  
  .cool-6105 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .carousel-static-7c76,
  .section_slow_c584,
  .disabled-2671,
  .tooltip-5bf1,
  .pattern_bottom_2ece,
  .short-b02c,
  .lite_3543 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .content-upper-a6da {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 06d3 */
.ghost-box-j3 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.2;
}
