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

.yellow_7f22:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.accent_hard_7f23,
header,
.heading-smooth-fcb8,
.main-aec1,
.panel_black_ba3e,
.backdrop-4867,
.gradient-b6a8,
.solid_5a95,
.black_194e {
  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
   ============================================ */
.accent_hard_7f23 {
  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);
}

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

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

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

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

.preview-first-8a73 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.accordion-14d0 {
  flex: 1;
}

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

.hard-48dd {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

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

.hard-48dd.fn-active-9a05 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.disabled-yellow-5c16 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.prev-906b svg {
  flex-shrink: 0;
}

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

.list-small-ad70: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);
}

.list-small-ad70 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.huge-8302[aria-expanded="true"] .banner-over-2198:nth-child(2) {
  opacity: 0;
}

.huge-8302[aria-expanded="true"] .banner-over-2198:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .accordion-14d0 {
    display: none;
  }
  
  .huge-8302 {
    display: flex;
  }
  
  .gas-aa6d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .prev-906b,
  .list-small-ad70 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .disabled-yellow-5c16 {
    position: relative;
  }
  
  .cool_d835 {
    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;
  }
  
  .badge_wood_5dc0[aria-expanded="true"] + .cool_d835 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .down_ccd7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content_46b3 {
    gap: 8px;
  }
  
  .prev-906b {
    display: none;
  }
  
  .list-small-ad70 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .last_5157 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tertiary_fba5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .overlay_soft_0b2f {
    grid-template-columns: 1fr;
  }
  
  .sort_full_db78 {
    font-size: 1.75rem;
  }
  
  .red-f770 {
    order: -1;
    max-width: 100%;
  }
  
  .card_purple_50d5 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sort_full_db78 {
    font-size: 1.5rem;
  }
  
  .accent_69de {
    font-size: 1rem;
  }
  
  .title_east_e4c1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .card_purple_50d5 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old-5b9b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.old-5b9b 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);
}

.old-5b9b 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide_3e9c 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) {
  .white_8b35 {
    grid-template-columns: 1fr;
  }
  
  .section_blue_0156 {
    font-size: 1.75rem;
  }
  
  .hover_rough_2df3 {
    max-width: 100%;
  }
}

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

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

.south-2cb4 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.photo-df21 {
  flex-shrink: 0;
}

.row-static-821b strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.hovered_55c3,
.accordion-a626,
.green_0de6 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hovered_55c3 thead,
.accordion-a626 thead {
  background: var(--color-primary);
  color: white;
}

.hovered_55c3 th,
.hovered_55c3 td,
.accordion-a626 th,
.accordion-a626 td,
.green_0de6 th,
.green_0de6 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hovered_55c3 th,
  .hovered_55c3 td,
  .accordion-a626 th,
  .accordion-a626 td,
  .green_0de6 th,
  .green_0de6 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hovered_55c3,
  .accordion-a626,
  .green_0de6 {
    min-width: 600px;
  }
}

.hovered_55c3 th,
.accordion-a626 th,
.green_0de6 th {
  font-weight: 600;
}

.hovered_55c3 tbody tr:hover,
.accordion-a626 tbody tr:hover,
.green_0de6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tabs-c053 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.summary-clean-f0bd {
  font-weight: 600;
  color: white;
}

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

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

.thumbnail_c0d7 {
  color: #4caf50;
}

.avatar_8371 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-clean-f0bd {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.black-451f {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.container-glass-dd61 .media-tall-3756 {
  width: 100%;
  background: white;
}

.status-silver-f785 .media-tall-3756 {
  color: #667eea;
}

.highlight-cold-4181 .media-tall-3756 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.status-narrow-6d47 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.background-glass-f3b3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .background-glass-f3b3 {
    padding: var(--space-md);
  }
  
  .solid-cb50 {
    padding: var(--space-md);
  }
  
  .pattern-70aa {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.badge-833b li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.module_9d71,
.tag-blue-a876,
.focus-current-8625,
.detail-add8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.basic-6cf4 {
  border-color: var(--color-success);
}

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

.active-bottom-3532 {
  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);
}

.basic-6cf4 .active-bottom-3532 {
  background: #e8f5e9;
  color: var(--color-success);
}

.slider_de92 .active-bottom-3532 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.medium-07f6 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.module-d413 {
  text-align: center;
}

.message-thick-19cf {
  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);
}

.module-huge-2ad2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.message-thick-19cf .summary-clean-f0bd {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.heading-6b5e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box_6f2e {
  text-align: right;
}

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

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

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

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

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

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

.section-663d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-68fc {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.mask-5804[aria-expanded="true"] .upper-68fc {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron_5a1d ul,
.hard_fdfa ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.sort-wide-c3d0 {
  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);
}

.old_159d {
  font-style: italic;
}

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

.hero-082f {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.stale-5906 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.heading-under-3ea5 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.heading-under-3ea5 li {
  margin-bottom: var(--space-xs);
}

.heading-under-3ea5 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.heading-under-3ea5 a:hover {
  color: white;
}

.link_cold_9d18 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.link_cold_9d18 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.link_cold_9d18 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.feature_dc40 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.feature_dc40 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.feature_dc40 a:hover {
  color: white;
}

.tabs-de8d > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.thumbnail_new_e008 .caption_current_a717 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.chip_selected_3712 a:hover {
  color: white;
}

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

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

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

.active_e8d0 a:hover {
  color: white;
}

.tabs-de8d {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

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

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

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

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

.modal_west_3cd5 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

.feature-thick-cd07:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tabs-de8d {
    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;
  }
  
  .sort_full_db78 {
    font-size: 2rem;
  }
  
  .section_blue_0156 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .overlay_soft_0b2f,
  .white_8b35 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .thumbnail_54be,
  .outer-3a74,
  .row-f81d,
  .component_7214,
  .dirty_ade6,
  .main_047c,
  .white-1892,
  .image_narrow_a3d7,
  .stale-5906 {
    grid-template-columns: 1fr;
  }
  
  .paper_0ff2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gradient-b6a8 {
    padding: var(--space-lg) 0;
  }
  
  .old-5b9b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .old-5b9b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .media-tall-3756 {
    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;
  }
  
  .paper_0ff2 {
    grid-template-columns: 1fr;
  }
  
  .liquid_fc37,
  .pink-1c48,
  .silver_10ce {
    flex-direction: column;
    width: 100%;
  }
  
  .dark_e10c,
  .orange_2f4b,
  .liquid_fc37 .media-tall-3756,
  .pink-1c48 .media-tall-3756 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .sort_full_db78 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .section_blue_0156 {
    font-size: 1.375rem;
  }
  
  .aside-d5c9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .section_fixed_ad66,
  .layout-9a72,
  .purple_346c,
  .card_bottom_0cd7,
  .box_cc4b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mask-motion-ab14 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .card-4359 {
    gap: var(--space-xs);
  }
  
  .tertiary_fba5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .bright_d6e6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .message-thick-19cf {
    width: 150px;
    height: 150px;
  }
  
  .module-huge-2ad2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .accent_hard_7f23,
  .heading-smooth-fcb8,
  .liquid_fc37,
  .hero-082f,
  .solid_5a95,
  .black_194e,
  .huge-8302 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gradient-b6a8 {
    page-break-inside: avoid;
  }
}

/* css-noise: fa67 */
.widget-item-a5 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
