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

.secondary-orange-c613:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dropdown-3dc3,
header,
.breadcrumb-large-eaa5,
.accent-ea57,
.tabs_black_0599,
.header-ea0c,
.banner_soft_9b32,
.row_brown_7108,
.solid_7f7e {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

.blue-5e9a img {
  height: 36px;
  width: auto;
  display: block;
}

.backdrop-hard-0e24 {
  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;
}

.picture-dfd4 {
  flex: 1;
}

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

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

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

.column_eac9.fn-active-60d5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.thick-1483 {
  position: relative;
}

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

.filter-5428 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.panel-old-4fa5 {
  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;
}

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

.panel-old-4fa5 svg {
  flex-shrink: 0;
}

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

.caption-over-f1da: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);
}

.caption-over-f1da svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.paragraph_mini_bc06[aria-expanded="true"] .overlay-north-e6ec:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .picture-dfd4 {
    display: none;
  }
  
  .paragraph_mini_bc06 {
    display: flex;
  }
  
  .backdrop-hard-0e24 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel-old-4fa5,
  .caption-over-f1da {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .thick-1483 {
    position: relative;
  }
  
  .tabs-0274 {
    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;
  }
  
  .filter-5428[aria-expanded="true"] + .tabs-0274 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .stale_d005 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .huge-9701 {
    gap: 8px;
  }
  
  .panel-old-4fa5 {
    display: none;
  }
  
  .caption-over-f1da {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .blue-5e9a img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .caption-over-f1da {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .caption-over-f1da svg {
    width: 14px;
    height: 14px;
  }
  
  .pattern-26ce {
    gap: var(--space-sm);
  }
}

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

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

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

.link-8771 svg {
  flex-shrink: 0;
}

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

.link-8771 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.table-easy-a2aa a {
  color: var(--color-primary);
  text-decoration: none;
}

.table-easy-a2aa a:hover {
  text-decoration: underline;
}

.current-15b7 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.button-lite-7a40 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.chip-72d6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.soft_3838 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.notice-dim-9e0c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .stone-27f8 {
    grid-template-columns: 1fr;
  }
  
  .column-pro-ae51 {
    font-size: 1.75rem;
  }
  
  .center-a0f4 {
    order: -1;
    max-width: 100%;
  }
  
  .soft_3838 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column-pro-ae51 {
    font-size: 1.5rem;
  }
  
  .down-59d9 {
    font-size: 1rem;
  }
  
  .table-easy-a2aa {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .soft_3838 {
    max-width: 250px;
  }
}

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

.preview-south-b288 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.primary-fixed-a528 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.surface-liquid-3a41 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.out-2aa5 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.out-2aa5 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);
}

.out-2aa5 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-8954 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) {
  .text_active_3801 {
    grid-template-columns: 1fr;
  }
  
  .silver_8f04 {
    font-size: 1.75rem;
  }
  
  .widget_thick_0c08 {
    max-width: 100%;
  }
}

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

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

.pattern-simple-2585 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.notification-1cfc {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.bright_9a62 {
  flex-shrink: 0;
}

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

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

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

.nav-dc41,
.popup-0394,
.border-cool-88bd {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nav-dc41 thead,
.popup-0394 thead {
  background: var(--color-primary);
  color: white;
}

.nav-dc41 th,
.nav-dc41 td,
.popup-0394 th,
.popup-0394 td,
.border-cool-88bd th,
.border-cool-88bd td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-dc41 th,
  .nav-dc41 td,
  .popup-0394 th,
  .popup-0394 td,
  .border-cool-88bd th,
  .border-cool-88bd td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .nav-dc41,
  .popup-0394,
  .border-cool-88bd {
    min-width: 600px;
  }
}

.nav-dc41 th,
.popup-0394 th,
.border-cool-88bd th {
  font-weight: 600;
}

.nav-dc41 tbody tr:hover,
.popup-0394 tbody tr:hover,
.border-cool-88bd tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hard_9477 h4 {
  color: white;
}

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

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

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

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

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

.thumbnail-dynamic-1e2b {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

.preview-02a4 {
  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);
}

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

.fast-731c {
  font-weight: 600;
  color: white;
}

.table-hard-53b3 {
  list-style: none;
  padding: 0;
}

.table-hard-53b3 li {
  padding: var(--space-xs) 0;
}

.summary_top_b4b0 {
  color: #4caf50;
}

.label-2fee {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.hovered-9e4e {
  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;
}

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

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

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

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

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

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

.main-medium-55ed h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.solid-1ea2 .wrapper_gas_fff5 {
  width: 100%;
  background: white;
}

.tertiary-d709 .wrapper_gas_fff5 {
  color: #667eea;
}

.title_e41d .wrapper_gas_fff5 {
  color: #f5576c;
}

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

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

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

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

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

.dropdown-0f49 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .new-dfd8 {
    padding: var(--space-md);
  }
  
  .dropdown-0f49 {
    padding: var(--space-md);
  }
  
  .header-2b75 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.gradient_ce8a,
.outline_a7b7,
.fresh-b8f7,
.static_9485 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.modal-gas-3be6 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.element-18b0:hover {
  background: var(--color-primary-dark);
}

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

.background-south-d6fd h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.media-1e23 {
  border-color: var(--color-success);
}

.tooltip-fresh-0174 {
  border-color: var(--color-warning);
}

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

.media-1e23 .hero-c0d5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tooltip-fresh-0174 .hero-c0d5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .chip-focused-689d {
    grid-template-columns: 1fr;
  }
}

.secondary-black-0e49 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.info-1c93 {
  margin-top: var(--space-xxl);
}

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

.hover-8d2d {
  text-align: center;
}

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

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

.clean_8a1a .fast-731c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.surface-north-9e0e p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.detail-fluid-3fb2 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.right-5c32 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.item-7dcd {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.surface-cold-bb9a {
  text-align: right;
}

.surface-cold-bb9a .caption_tiny_9c7e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.component-38aa {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.menu-818a {
  background: #fff3e0;
  color: #e65100;
}

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

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

.table-64c6 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down-44f6 {
  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);
}

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

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

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

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

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

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

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

.status_new_5a38 ul,
.old_dfd6 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-6c05 {
  font-style: italic;
}

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

.tertiary-soft-7de9 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-3219 .button-lite-7a40 {
  color: #4caf50;
  font-size: 0.875rem;
}

.photo-b8a6 {
  list-style: none;
  padding: 0;
}

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

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

.photo-b8a6 a:hover {
  color: white;
}

.widget-hard-1e2e {
  list-style: none;
  padding: 0;
}

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

.widget-hard-1e2e a {
  color: #b0b0b0;
  text-decoration: none;
}

.widget-hard-1e2e a:hover {
  color: white;
}

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

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

.gas-7d72 a {
  color: #4caf50;
  text-decoration: none;
}

.footer-8e02 {
  font-size: 0.75rem;
  color: #666666;
}

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

.thumbnail-fresh-93ba {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.thumbnail-fresh-93ba:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .steel_b3dd {
    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;
  }
  
  .column-pro-ae51 {
    font-size: 2rem;
  }
  
  .silver_8f04 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .stone-27f8,
  .text_active_3801 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .advanced-fe8c,
  .preview-23b0,
  .tag_small_4496,
  .chip-focused-689d,
  .input_9b0d,
  .aside-left-5269,
  .hover_b0ff,
  .silver_ebd5 {
    grid-template-columns: 1fr;
  }
  
  .info_8713 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .banner_soft_9b32 {
    padding: var(--space-lg) 0;
  }
  
  .out-2aa5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .out-2aa5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper_gas_fff5 {
    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;
  }
  
  .info_8713 {
    grid-template-columns: 1fr;
  }
  
  .chip-72d6,
  .modal_b6ef,
  .media_light_19b4 {
    flex-direction: column;
    width: 100%;
  }
  
  .primary-fixed-a528,
  .surface-liquid-3a41,
  .chip-72d6 .wrapper_gas_fff5,
  .modal_b6ef .wrapper_gas_fff5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column-pro-ae51 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .silver_8f04 {
    font-size: 1.375rem;
  }
  
  .huge-93c8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .blue-8d46,
  .wide_58ec,
  .iron_156d,
  .block_new_569a,
  .heading-30fe {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .breadcrumb-8d9b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tooltip-a155 {
    gap: var(--space-xs);
  }
  
  .link-8771 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .preview-02a4 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .clean_8a1a {
    width: 150px;
    height: 150px;
  }
  
  .thumbnail-pressed-e7c0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dropdown-3dc3,
  .breadcrumb-large-eaa5,
  .chip-72d6,
  .tertiary-soft-7de9,
  .row_brown_7108,
  .solid_7f7e,
  .paragraph_mini_bc06 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .banner_soft_9b32 {
    page-break-inside: avoid;
  }
}

/* css-noise: 659f */
.ghost-box-z4 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
