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

.over-78b5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.component_a88f,
header,
.active-west-5d63,
.accordion-static-e581,
.overlay-95f0,
.container_65db,
.soft-fa0b,
.glass-d402,
.block_710c {
  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
   ============================================ */
.component_a88f {
  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);
}

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

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

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

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

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

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

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

.footer-172d {
  flex: 1;
}

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

.logo-gas-23ca {
  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);
}

.logo-gas-23ca:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.logo-gas-23ca.fn-active-c57a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.info-69c6 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.blue-9d9a {
  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;
}

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

.blue-9d9a svg {
  flex-shrink: 0;
}

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

.surface-solid-7fb8: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);
}

.surface-solid-7fb8 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .footer-172d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .footer-172d.grid-a26f {
    display: block;
    right: 0;
  }
  
  .pagination-3d93 {
    flex-direction: column;
    gap: 0;
  }
  
  .logo-gas-23ca {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .footer-172d::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;
  }
  
  .footer-172d.grid-a26f::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .footer-172d {
    display: none;
  }
  
  .highlight-0274 {
    display: flex;
  }
  
  .tag-ff82 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .blue-9d9a,
  .surface-solid-7fb8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .info-69c6 {
    position: relative;
  }
  
  .sidebar_5cf6 {
    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;
  }
  
  .popup_wide_1aef[aria-expanded="true"] + .sidebar_5cf6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notice_c751 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dropdown_b44e {
    gap: 8px;
  }
  
  .blue-9d9a {
    display: none;
  }
  
  .surface-solid-7fb8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .form_065e img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .surface-solid-7fb8 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .surface-solid-7fb8 svg {
    width: 14px;
    height: 14px;
  }
  
  .section-a390 {
    gap: var(--space-sm);
  }
}

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

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

.nav-7d3a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-7d3a svg {
  flex-shrink: 0;
}

.nav-7d3a a {
  color: var(--color-primary);
  text-decoration: none;
}

.nav-7d3a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.dropdown-bronze-e7cf {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.message-prev-253b {
  display: flex;
  gap: var(--space-sm);
}

.card-5a97 {
  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;
}

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

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

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

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

.tag-7dfa {
  display: flex;
  align-items: center;
  justify-content: center;
}

.warm-6d32 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .nav-west-3b5e {
    grid-template-columns: 1fr;
  }
  
  .badge_c1a5 {
    font-size: 1.75rem;
  }
  
  .tag-7dfa {
    order: -1;
    max-width: 100%;
  }
  
  .warm-6d32 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .badge_c1a5 {
    font-size: 1.5rem;
  }
  
  .gold-c6de {
    font-size: 1rem;
  }
  
  .panel_209a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .warm-6d32 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.active-6e6d {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.blue-80b2 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.blue-80b2 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);
}

.blue-80b2 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;
}

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

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

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

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

.surface-soft-337a {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

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

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

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

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

.background-cold-91b6 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.background-cold-91b6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.background-cold-91b6 pre,
.background-cold-91b6 code {
  overflow-x: auto;
  max-width: 100%;
}

.background-cold-91b6 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);
}

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

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

.background-cold-91b6 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.background-cold-91b6 ul,
.background-cold-91b6 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.background-cold-91b6 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.background-cold-91b6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.background-cold-91b6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.background-cold-91b6 a:hover {
  color: var(--color-primary-dark);
}

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

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

.blue_8ba7 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) {
  .highlight_4c7a {
    grid-template-columns: 1fr;
  }
  
  .silver_d89d {
    font-size: 1.75rem;
  }
  
  .background-cold-91b6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .silver_d89d {
    font-size: 1.5rem;
  }
  
  .background-cold-91b6 h3 {
    font-size: 1.375rem;
  }
  
  .background-cold-91b6 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

.element-current-18a3 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.tiny_ca4b {
  flex-shrink: 0;
}

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

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

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

.surface_huge_3937,
.preview-6cf8,
.silver-94af {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.surface_huge_3937 thead,
.preview-6cf8 thead {
  background: var(--color-primary);
  color: white;
}

.surface_huge_3937 th,
.surface_huge_3937 td,
.preview-6cf8 th,
.preview-6cf8 td,
.silver-94af th,
.silver-94af td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .surface_huge_3937 th,
  .surface_huge_3937 td,
  .preview-6cf8 th,
  .preview-6cf8 td,
  .silver-94af th,
  .silver-94af td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .surface_huge_3937,
  .preview-6cf8,
  .silver-94af {
    min-width: 600px;
  }
}

.surface_huge_3937 th,
.preview-6cf8 th,
.silver-94af th {
  font-weight: 600;
}

.surface_huge_3937 tbody tr:hover,
.preview-6cf8 tbody tr:hover,
.silver-94af tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.frame_d6d1 h4 {
  color: white;
}

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

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

.sidebar-first-1ab7:last-child {
  border-bottom: none;
}

.sidebar-first-1ab7 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.sidebar-first-1ab7 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.large-866f:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.list_dirty_688d {
  color: #4caf50;
}

.sidebar_mini_239f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border_6914 .hot_361f {
  width: 100%;
  background: white;
}

.popup-be42 .hot_361f {
  color: #667eea;
}

.focus_in_5d3e .hot_361f {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.video-east-8f7f {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.preview-complex-e99f {
  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);
}

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

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

@media (max-width: 768px) {
  .aside_complex_6c93 {
    padding: var(--space-md);
  }
  
  .photo-a800 {
    padding: var(--space-md);
  }
  
  .disabled_e0cc {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.tooltip-left-538c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.column-north-acd7,
.frame-631b,
.steel_d2bd,
.thick-15d0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-3ae7 {
  border-color: var(--color-success);
}

.background-easy-2ae8 {
  border-color: var(--color-warning);
}

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

.disabled-3ae7 .next_a22d {
  background: #e8f5e9;
  color: var(--color-success);
}

.background-easy-2ae8 .next_a22d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion_e6ca {
  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-bed0 {
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.active-449d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.panel-small-97bb {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.east-4ec1 {
  border: 2px solid #4caf50;
}

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

.tertiary-84df {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.active-3d16 {
  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;
}

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

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

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

.secondary-bright-8db0 {
  text-align: right;
}

.secondary-bright-8db0 .secondary-ba37 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-cold-8dd8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.sidebar_d2a8[aria-expanded="true"] .grid-cold-8dd8 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.aside-fresh-e98c {
  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);
}

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

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

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

.selected-d522,
.gallery_cc42 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.selected-d522 h4,
.gallery_cc42 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.selected-d522 ul,
.gallery_cc42 ul {
  list-style: none;
  padding: 0;
}

.selected-d522 li,
.gallery_cc42 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.search-77df ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.west_5bfc {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.first-8d06 {
  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);
}

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

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

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

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

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

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

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

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

.paragraph-64d9 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paragraph-64d9 li {
  margin-bottom: var(--space-xs);
}

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

.paragraph-64d9 a:hover {
  color: white;
}

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

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

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

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

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

.article_action_45ee a:hover {
  color: white;
}

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

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

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

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

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

.hover-new-d2ad .message-prev-253b {
  color: #4caf50;
  font-size: 0.875rem;
}

.grid-upper-39a7 {
  list-style: none;
  padding: 0;
}

.grid-upper-39a7 li {
  margin-bottom: var(--space-xs);
}

.grid-upper-39a7 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.grid-upper-39a7 a:hover {
  color: white;
}

.container-cold-bc0c {
  list-style: none;
  padding: 0;
}

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

.container-cold-bc0c a {
  color: #b0b0b0;
  text-decoration: none;
}

.container-cold-bc0c a:hover {
  color: white;
}

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

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

.detail-easy-38c2 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.layout-medium-789b a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.layout-medium-789b 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;
}

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

.sort-1f77:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .description-db58 {
    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;
  }
  
  .badge_c1a5 {
    font-size: 2rem;
  }
  
  .silver_d89d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .nav-west-3b5e,
  .highlight_4c7a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hovered_3be7,
  .frame_active_0cc3,
  .inner_5785,
  .gradient_24e6,
  .west-0f64,
  .button_c29f,
  .block_outer_0b68,
  .advanced-1e23,
  .form_a677 {
    grid-template-columns: 1fr;
  }
  
  .fresh-9386 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .soft-fa0b {
    padding: var(--space-lg) 0;
  }
  
  .blue-80b2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .blue-80b2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hot_361f {
    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;
  }
  
  .fresh-9386 {
    grid-template-columns: 1fr;
  }
  
  .block_9527,
  .primary_under_90c0,
  .aside_bd0d {
    flex-direction: column;
    width: 100%;
  }
  
  .item_ef38,
  .active-6e6d,
  .block_9527 .hot_361f,
  .primary_under_90c0 .hot_361f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .badge_c1a5 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .silver_d89d {
    font-size: 1.375rem;
  }
  
  .large-6d8f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .photo-simple-e194,
  .paper-4db8,
  .row-plasma-9d1e,
  .orange-d48a,
  .widget_prev_df73 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hovered_0401 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tertiary_8c1b {
    gap: var(--space-xs);
  }
  
  .nav-7d3a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .box_c92a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dim_9117 {
    width: 150px;
    height: 150px;
  }
  
  .heading_first_cc3e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .component_a88f,
  .active-west-5d63,
  .block_9527,
  .message_a1b9,
  .glass-d402,
  .block_710c,
  .highlight-0274 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .soft-fa0b {
    page-break-inside: avoid;
  }
}

/* css-noise: 197e */
.ghost-box-q4 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
