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

.input_green_ff00:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.link_stone_f0c9,
header,
.frame-9b7d,
.mini_f3c8,
.input-warm-5957,
.tooltip_glass_e1a0,
.mask_orange_6343,
.content-e3c0,
.box-d613 {
  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
   ============================================ */
.link_stone_f0c9 {
  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);
}

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

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

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

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

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

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

.breadcrumb-orange-6df8 {
  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;
}

.menu-ee39 {
  flex: 1;
}

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

.caption-middle-84de {
  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);
}

.caption-middle-84de:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.caption-middle-84de.fn-active-fbf0 {
  background: var(--color-primary);
  color: white;
}

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

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

.active-inner-a1f4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.plasma-fe63 svg {
  flex-shrink: 0;
}

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

.header-510c: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);
}

.header-510c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.dropdown-advanced-9424[aria-expanded="true"] .container_8278:nth-child(2) {
  opacity: 0;
}

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

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

  .menu-ee39::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .menu-ee39.tabs-copper-6b1e {
    display: block;
    right: 0;
  }
  
  .text-4b9e {
    flex-direction: column;
    gap: 0;
  }
  
  .caption-middle-84de {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .menu-ee39::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;
  }
  
  .menu-ee39.tabs-copper-6b1e::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .menu-ee39 {
    display: none;
  }
  
  .dropdown-advanced-9424 {
    display: flex;
  }
  
  .breadcrumb-orange-6df8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .plasma-fe63,
  .header-510c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .complex_525d {
    position: relative;
  }
  
  .chip_gas_76d4 {
    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;
  }
  
  .active-inner-a1f4[aria-expanded="true"] + .chip_gas_76d4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fixed-e70f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mask_d509 {
    gap: 8px;
  }
  
  .plasma-fe63 {
    display: none;
  }
  
  .header-510c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hard_dd27 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.surface-over-5b98 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.surface-over-5b98 svg {
  flex-shrink: 0;
}

.surface-over-5b98 a {
  color: var(--color-primary);
  text-decoration: none;
}

.surface-over-5b98 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.short-6f47 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.info-liquid-8476 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .icon-1488 {
    grid-template-columns: 1fr;
  }
  
  .right-5d79 {
    font-size: 1.75rem;
  }
  
  .prev-e96a {
    order: -1;
    max-width: 100%;
  }
  
  .carousel_selected_6b52 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .right-5d79 {
    font-size: 1.5rem;
  }
  
  .picture-liquid-1c10 {
    font-size: 1rem;
  }
  
  .short-6f47 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .carousel_selected_6b52 {
    max-width: 250px;
  }
}

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

.new-900d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.tabs-0d21 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-f848 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column_0678 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) {
  .outline_advanced_42cb {
    grid-template-columns: 1fr;
  }
  
  .nav_51d8 {
    font-size: 1.75rem;
  }
  
  .grid_stone_4f08 {
    max-width: 100%;
  }
}

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

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

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

.hidden-first-3277 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.text_0fa2 {
  flex-shrink: 0;
}

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

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

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

.small_08c8,
.hard-70b4,
.logo_paper_4a59 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.small_08c8 thead,
.hard-70b4 thead {
  background: var(--color-primary);
  color: white;
}

.small_08c8 th,
.small_08c8 td,
.hard-70b4 th,
.hard-70b4 td,
.logo_paper_4a59 th,
.logo_paper_4a59 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .small_08c8 th,
  .small_08c8 td,
  .hard-70b4 th,
  .hard-70b4 td,
  .logo_paper_4a59 th,
  .logo_paper_4a59 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .small_08c8,
  .hard-70b4,
  .logo_paper_4a59 {
    min-width: 600px;
  }
}

.small_08c8 th,
.hard-70b4 th,
.logo_paper_4a59 th {
  font-weight: 600;
}

.small_08c8 tbody tr:hover,
.hard-70b4 tbody tr:hover,
.logo_paper_4a59 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.form-small-dc35 h4 {
  color: white;
}

.media-right-114c {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.dropdown-rough-806e {
  font-weight: 600;
  color: white;
}

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

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

.search-6eef {
  color: #4caf50;
}

.outline_red_14b9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-rough-806e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon_complex_da5d .status_complex_afd4 {
  width: 100%;
  background: white;
}

.picture_b19a .status_complex_afd4 {
  color: #667eea;
}

.main_59b6 .status_complex_afd4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .banner_6f89 {
    padding: var(--space-md);
  }
  
  .hidden_85fd {
    padding: var(--space-md);
  }
  
  .sort-d092 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.row-505e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.label_huge_a7ae,
.label_721a,
.avatar-stone-3a66,
.wood_5af8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.carousel-blue-5acf {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.outline-5a43 {
  border-color: var(--color-warning);
}

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

.lower_ec6a .south_cab2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.outline-5a43 .south_cab2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-1d47 {
  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);
}

.header_7d5a {
  text-align: center;
}

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

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

.primary_4222 .dropdown-rough-806e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.icon-middle-40c5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.mini-1b29 {
  margin-bottom: var(--space-xl);
}

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

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

.pattern-0ef6 {
  color: var(--color-text-light);
}

.header-basic-8bc3 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.pink-9c9e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.paragraph-complex-b263 {
  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;
}

.pattern-small-10aa {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.plasma_5ad0 {
  text-align: right;
}

.plasma_5ad0 .highlight_down_6d56 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.silver_8339 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.link-silver-47da {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.card_short_ed68[aria-expanded="true"] .right-a6cb {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.dark_c8f5,
.status-a6ea {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dark_c8f5 h4,
.status-a6ea h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dark_c8f5 ul,
.status-a6ea ul {
  list-style: none;
  padding: 0;
}

.dark_c8f5 li,
.status-a6ea li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.gradient-under-f50a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.video-bronze-1113 {
  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);
}

.component_gold_cff9 {
  font-style: italic;
}

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

.red_259b {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .border-clean-4c32 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.aside-c4a6 .info-liquid-8476 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.glass_d58c a:hover {
  color: white;
}

.paragraph-6171 {
  list-style: none;
  padding: 0;
}

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

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

.paragraph-6171 a:hover {
  color: white;
}

.component-gold-67ef {
  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);
}

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

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

.tall-195c {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .component-gold-67ef {
    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;
  }
  
  .right-5d79 {
    font-size: 2rem;
  }
  
  .nav_51d8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon-1488,
  .outline_advanced_42cb {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .banner_e74e,
  .lower_9e3d,
  .white-b68c,
  .basic-902a,
  .list-brown-0201,
  .dynamic_896d,
  .border-clean-4c32,
  .feature_tiny_8833 {
    grid-template-columns: 1fr;
  }
  
  .over-781c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .mask_orange_6343 {
    padding: var(--space-lg) 0;
  }
  
  .tall-f848 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tall-f848 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .status_complex_afd4 {
    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;
  }
  
  .over-781c {
    grid-template-columns: 1fr;
  }
  
  .badge-e77d,
  .image_7648,
  .caption-2094 {
    flex-direction: column;
    width: 100%;
  }
  
  .tabs-0d21,
  .banner_e67f,
  .badge-e77d .status_complex_afd4,
  .image_7648 .status_complex_afd4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .right-5d79 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .nav_51d8 {
    font-size: 1.375rem;
  }
  
  .tertiary-short-3d8b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wood_e36f,
  .brown_ddba,
  .bottom_1ab6,
  .preview_tiny_418a,
  .pattern_69ba {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wood_bc46 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .footer_gold_a518 {
    gap: var(--space-xs);
  }
  
  .surface-over-5b98 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hovered_4cad {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .primary_4222 {
    width: 150px;
    height: 150px;
  }
  
  .hidden_e0e0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .link_stone_f0c9,
  .frame-9b7d,
  .badge-e77d,
  .red_259b,
  .content-e3c0,
  .box-d613,
  .dropdown-advanced-9424 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .mask_orange_6343 {
    page-break-inside: avoid;
  }
}

/* css-noise: ee36 */
.ghost-box-p7 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
