/* ============================================
   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_7800 {
  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_7800:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.outline-9c3b,
header,
.old_9f89,
.lower-b175,
.border-3544,
.message_stale_1e28,
.simple-017e,
.column_2908,
.title-ff63 {
  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
   ============================================ */
.outline-9c3b {
  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);
}

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

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

/* Scrolled state */
.outline-9c3b.search-silver-358d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.backdrop-yellow-772e {
  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;
}

.medium-902d {
  flex: 1;
}

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

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

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

.simple_8d5a.fn-active-fce2 {
  background: var(--color-primary);
  color: white;
}

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

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

.gas-6ac9 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.banner-soft-95f1 {
  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;
}

.banner-soft-95f1:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.banner-soft-95f1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .medium-902d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .medium-902d.in_78bf {
    display: block;
    right: 0;
  }
  
  .breadcrumb-pressed-b685 {
    flex-direction: column;
    gap: 0;
  }
  
  .simple_8d5a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .medium-902d::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;
  }
  
  .medium-902d.in_78bf::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .medium-902d {
    display: none;
  }
  
  .aside_wood_b700 {
    display: flex;
  }
  
  .backdrop-yellow-772e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .banner-soft-95f1,
  .info_simple_d866 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .lower_8d98 {
    position: relative;
  }
  
  .plasma-e938 {
    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;
  }
  
  .gas-6ac9[aria-expanded="true"] + .plasma-e938 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .thick-06a3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .backdrop_dirty_73cb {
    gap: 8px;
  }
  
  .banner-soft-95f1 {
    display: none;
  }
  
  .info_simple_d866 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal_first_b502 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .info_simple_d866 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .info_simple_d866 svg {
    width: 14px;
    height: 14px;
  }
  
  .glass-17d7 {
    gap: var(--space-sm);
  }
}

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

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

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

.input_d0bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-yellow-063d {
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-63af {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.box-last-516d {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .input-ee39 {
    grid-template-columns: 1fr;
  }
  
  .down-3504 {
    font-size: 1.75rem;
  }
  
  .heading-yellow-063d {
    order: -1;
    max-width: 100%;
  }
  
  .glass-63af {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .down-3504 {
    font-size: 1.5rem;
  }
  
  .wood-aa2f {
    font-size: 1rem;
  }
  
  .footer_6058 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .glass-63af {
    max-width: 250px;
  }
}

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

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

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

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

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

.solid-2f4e {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

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

.button-7f7a {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.disabled-78fe {
  list-style: none;
  counter-reset: toc-counter;
}

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

.disabled-78fe 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);
}

.disabled-78fe 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;
}

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

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

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

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

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

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

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

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

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

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

.blue-42a8 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.blue-42a8 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);
}

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

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

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

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

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

.blue-42a8 strong {
  font-weight: 600;
  color: var(--color-text);
}

.blue-42a8 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.blue-42a8 a:hover {
  color: var(--color-primary-dark);
}

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

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

.item_current_99ec 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) {
  .shade_763f {
    grid-template-columns: 1fr;
  }
  
  .banner_plasma_c134 {
    font-size: 1.75rem;
  }
  
  .blue-42a8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .banner_plasma_c134 {
    font-size: 1.5rem;
  }
  
  .blue-42a8 h3 {
    font-size: 1.375rem;
  }
  
  .blue-42a8 h4 {
    font-size: 1.125rem;
  }
}

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

.accordion-403b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.accordion-26b7 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.focus-easy-9d7d {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.outline-hovered-6bcf {
  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;
}

.inner_addd {
  flex-shrink: 0;
}

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

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

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

.static_7c93,
.info-prev-d803,
.panel_orange_9554 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.static_7c93 thead,
.info-prev-d803 thead {
  background: var(--color-primary);
  color: white;
}

.static_7c93 th,
.static_7c93 td,
.info-prev-d803 th,
.info-prev-d803 td,
.panel_orange_9554 th,
.panel_orange_9554 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .static_7c93 th,
  .static_7c93 td,
  .info-prev-d803 th,
  .info-prev-d803 td,
  .panel_orange_9554 th,
  .panel_orange_9554 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .static_7c93,
  .info-prev-d803,
  .panel_orange_9554 {
    min-width: 600px;
  }
}

.static_7c93 th,
.info-prev-d803 th,
.panel_orange_9554 th {
  font-weight: 600;
}

.static_7c93 tbody tr:hover,
.info-prev-d803 tbody tr:hover,
.panel_orange_9554 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.background-new-140a h4 {
  color: white;
}

.tag-fast-507f {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.footer-hot-63f8:hover {
  text-decoration: underline;
}

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

.highlight-gold-4e7b {
  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);
}

.highlight-gold-4e7b span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.hover_d91f {
  font-weight: 600;
  color: white;
}

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

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

.content-4aa0 {
  color: #4caf50;
}

.message_medium_2284 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside_306f .carousel-8462 {
  width: 100%;
  background: white;
}

.badge-4b25 .carousel-8462 {
  color: #667eea;
}

.media-f37f .carousel-8462 {
  color: #f5576c;
}

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

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

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

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

.row-first-82c0 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .row-first-82c0 {
    padding: var(--space-md);
  }
  
  .accent_b9a7 {
    padding: var(--space-md);
  }
  
  .button-ec82 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hover-current-c4e4,
.search-bd49,
.outline_blue_c440,
.fresh-6a09 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

.banner-2dd6 {
  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-2dd6 {
    grid-template-columns: 1fr;
  }
}

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

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

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

.table-1fe6 {
  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);
}

.dropdown_yellow_41a2 .table-1fe6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.form_5d38 .table-1fe6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.hero-gas-0e45 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

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

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

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

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

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

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

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

.notification_prev_b6f1 {
  text-align: center;
}

.old_46c8 {
  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_over_d10d {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.old_46c8 .hover_d91f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-motion-23b4 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.gradient-north-928f {
  text-align: right;
}

.gradient-north-928f .grid-83fe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.primary-stone-df38 {
  background: #e8f5e9;
  color: #2e7d32;
}

.motion-fbcb {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.progress-out-4e25 {
  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);
}

.progress-out-4e25:hover {
  background: var(--color-bg-alt);
}

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

.progress-out-4e25[aria-expanded="true"] .fresh_7446 {
  transform: rotate(180deg);
}

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

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

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

.upper-53f3 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.grid_0b45,
.image-basic-3376 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.grid_0b45 h4,
.image-basic-3376 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.grid_0b45 ul,
.image-basic-3376 ul {
  list-style: none;
  padding: 0;
}

.grid_0b45 li,
.image-basic-3376 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-red-6891 {
  font-style: italic;
}

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

.backdrop-56b1 {
  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;
}

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

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

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

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

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

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

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

.sort-hard-2e83 {
  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);
}

.sort-hard-2e83:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.sort-hard-2e83 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

.narrow_cfb3 {
  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) */
.list_warm_547b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.slow_1532 {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.slow_1532 a:hover {
  color: white;
}

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

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

.box-7f75 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.highlight_steel_3371 a:hover {
  color: white;
}

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

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

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

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

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

.new-27b2 .narrow-0024 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.hidden_hovered_d0ec a:hover {
  color: white;
}

.widget-bd8d {
  list-style: none;
  padding: 0;
}

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

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

.widget-bd8d a:hover {
  color: white;
}

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

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

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

.selected-7a3c {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.pressed-e549:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dirty_ee35 {
    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;
  }
  
  .down-3504 {
    font-size: 2rem;
  }
  
  .banner_plasma_c134 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .input-ee39,
  .shade_763f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .simple_8ffe,
  .banner-2dd6,
  .sidebar-186a,
  .left_bfa8,
  .shadow-dynamic-2bfd,
  .search_dirty_5c94,
  .bottom_d9e0,
  .narrow_cfb3,
  .list_warm_547b {
    grid-template-columns: 1fr;
  }
  
  .banner_8fd5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .simple-017e {
    padding: var(--space-lg) 0;
  }
  
  .disabled-78fe li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .disabled-78fe li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel-8462 {
    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;
  }
  
  .banner_8fd5 {
    grid-template-columns: 1fr;
  }
  
  .new_6a4d,
  .background_b92e,
  .gradient_0220 {
    flex-direction: column;
    width: 100%;
  }
  
  .button-7f7a,
  .pink-a125,
  .new_6a4d .carousel-8462,
  .background_b92e .carousel-8462 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .down-3504 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .banner_plasma_c134 {
    font-size: 1.375rem;
  }
  
  .text_2f72 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .component-f2a2,
  .button_be79,
  .static-5b81,
  .box_left_0f3d,
  .fluid-83cd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .icon-2f88 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .link-liquid-665f {
    gap: var(--space-xs);
  }
  
  .input_d0bc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .highlight-gold-4e7b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .old_46c8 {
    width: 150px;
    height: 150px;
  }
  
  .hidden_over_d10d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline-9c3b,
  .old_9f89,
  .new_6a4d,
  .backdrop-56b1,
  .column_2908,
  .title-ff63,
  .aside_wood_b700 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .simple-017e {
    page-break-inside: avoid;
  }
}

/* css-noise: 48f9 */
.phantom-card-f0 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
