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

.border_soft_f080:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.focus_2972,
header,
.menu_487a,
.small-18e7,
.dropdown-lower-1fcd,
.list-7e2c,
.sort-f659,
.badge-solid-992c,
.heading_025f {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

.secondary-0c47 {
  flex: 1;
}

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

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

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

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

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

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

.down-9a5a svg {
  transition: transform 0.2s ease;
}

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

.search-slow-63aa {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.component-8a99 {
  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;
}

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

.component-8a99 svg {
  flex-shrink: 0;
}

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

.item-active-a4ad: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);
}

.item-active-a4ad svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.icon_lower_61f4[aria-expanded="true"] .status-steel-4244:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .secondary-0c47 {
    display: none;
  }
  
  .icon_lower_61f4 {
    display: flex;
  }
  
  .paper-5801 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .component-8a99,
  .item-active-a4ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .row_9776 {
    position: relative;
  }
  
  .search-slow-63aa {
    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;
  }
  
  .down-9a5a[aria-expanded="true"] + .search-slow-63aa {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shadow-a135 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .soft_fe86 {
    gap: 8px;
  }
  
  .component-8a99 {
    display: none;
  }
  
  .item-active-a4ad {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .easy_7849 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .item-active-a4ad {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .item-active-a4ad svg {
    width: 14px;
    height: 14px;
  }
  
  .top_09e9 {
    gap: var(--space-sm);
  }
}

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

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

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

.under-a918 svg {
  flex-shrink: 0;
}

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

.under-a918 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.basic-049f a {
  color: var(--color-primary);
  text-decoration: none;
}

.basic-049f a:hover {
  text-decoration: underline;
}

.info-south-2445 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.item-dim-a515 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-lower-dfd4 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .sort_wood_e2cd {
    grid-template-columns: 1fr;
  }
  
  .out-1103 {
    font-size: 1.75rem;
  }
  
  .item-dim-a515 {
    order: -1;
    max-width: 100%;
  }
  
  .hero-lower-dfd4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .out-1103 {
    font-size: 1.5rem;
  }
  
  .nav-liquid-d53e {
    font-size: 1rem;
  }
  
  .basic-049f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .hero-lower-dfd4 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-full-622e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-ee4a 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) {
  .shadow-yellow-2c5d {
    grid-template-columns: 1fr;
  }
  
  .modal-full-622e {
    font-size: 1.75rem;
  }
  
  .fresh-2622 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-full-622e {
    font-size: 1.5rem;
  }
  
  .fresh-2622 h3 {
    font-size: 1.375rem;
  }
  
  .fresh-2622 h4 {
    font-size: 1.125rem;
  }
}

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

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

.west-8c6c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.container_f49f {
  flex-shrink: 0;
}

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

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

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

.center-e6d4,
.active_7740,
.active_d88a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.center-e6d4 thead,
.active_7740 thead {
  background: var(--color-primary);
  color: white;
}

.center-e6d4 th,
.center-e6d4 td,
.active_7740 th,
.active_7740 td,
.active_d88a th,
.active_d88a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .center-e6d4 th,
  .center-e6d4 td,
  .active_7740 th,
  .active_7740 td,
  .active_d88a th,
  .active_d88a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .center-e6d4,
  .active_7740,
  .active_d88a {
    min-width: 600px;
  }
}

.center-e6d4 th,
.active_7740 th,
.active_d88a th {
  font-weight: 600;
}

.center-e6d4 tbody tr:hover,
.active_7740 tbody tr:hover,
.active_d88a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.disabled-46d6 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.dark-d418 {
  font-weight: 600;
  color: white;
}

.modal-right-58cc {
  list-style: none;
  padding: 0;
}

.modal-right-58cc li {
  padding: var(--space-xs) 0;
}

.container-c8e3 {
  color: #4caf50;
}

.notification_static_4242 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.complex_aa7e .description_b418 {
  width: 100%;
  background: white;
}

.border_ca24 .description_b418 {
  color: #667eea;
}

.input_67fd .description_b418 {
  color: #f5576c;
}

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

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

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

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

.slider-huge-6a0c h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .slider-huge-6a0c {
    padding: var(--space-md);
  }
  
  .upper_3d66 {
    padding: var(--space-md);
  }
  
  .alert-warm-6819 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.chip-wide-85ed ol,
.chip-wide-85ed ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.chip-wide-85ed li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.background-a15d,
.dirty_20da,
.hover_3357,
.slider-next-fe40 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.icon-63d2 {
  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-63d2 {
    font-size: 0.625rem;
  }
}

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

.widget-tall-e2e6:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.lite_11cf .frame-ef0a {
  background: #e8f5e9;
  color: var(--color-success);
}

.modal-a34e .frame-ef0a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay_d167 {
  text-align: center;
}

.notice-39db {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

.notice-39db .dark-d418 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.footer-silver-dda9 {
  color: var(--color-text-light);
}

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

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

.notice-gas-663d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.detail-1e9e {
  text-align: right;
}

.detail-1e9e .notification-lower-946d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.thumbnail-01ea {
  background: #fff3e0;
  color: #e65100;
}

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

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

.content-active-25be {
  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);
}

.content-active-25be:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.video-simple-6bea strong {
  color: var(--color-primary);
}

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

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

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

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

.inner-8e17 {
  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);
}

.inner-8e17:hover {
  background: var(--color-bg-alt);
}

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

.inner-8e17[aria-expanded="true"] .photo-0204 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-9694,
.accordion-8cbd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.header-9694 h4,
.accordion-8cbd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.header-9694 ul,
.accordion-8cbd ul {
  list-style: none;
  padding: 0;
}

.header-9694 li,
.accordion-8cbd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.black-173e {
  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);
}

.container-6ccb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled_4fb7 .smooth_eb73 {
  color: #4caf50;
  font-size: 0.875rem;
}

.text-up-034c {
  list-style: none;
  padding: 0;
}

.text-up-034c li {
  margin-bottom: var(--space-xs);
}

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

.text-up-034c a:hover {
  color: white;
}

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

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

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

.paragraph_19d5 a:hover {
  color: white;
}

.highlight-new-5a7f {
  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);
}

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

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

.hero-plasma-86e7 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .highlight-new-5a7f {
    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;
  }
  
  .out-1103 {
    font-size: 2rem;
  }
  
  .modal-full-622e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .sort_wood_e2cd,
  .shadow-yellow-2c5d {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .glass-c4da,
  .main_0938,
  .in_d954,
  .menu-7bb7,
  .summary_under_8e05,
  .tooltip-3708,
  .active_c207,
  .black-35d0 {
    grid-template-columns: 1fr;
  }
  
  .mask_complex_a790 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort-f659 {
    padding: var(--space-lg) 0;
  }
  
  .notification_a655 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .notification_a655 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .description_b418 {
    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;
  }
  
  .mask_complex_a790 {
    grid-template-columns: 1fr;
  }
  
  .large_e22d,
  .clean_5a77,
  .form_7dff {
    flex-direction: column;
    width: 100%;
  }
  
  .picture_silver_3942,
  .current_99d9,
  .large_e22d .description_b418,
  .clean_5a77 .description_b418 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .out-1103 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .modal-full-622e {
    font-size: 1.375rem;
  }
  
  .border-warm-4dbd {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .thumbnail_5e8d,
  .menu_medium_d1f5,
  .solid_b6f6,
  .module_slow_1559,
  .over_25cb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .icon-63d2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .thumbnail_5850 {
    gap: var(--space-xs);
  }
  
  .under-a918 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gas_21ca {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notice-39db {
    width: 150px;
    height: 150px;
  }
  
  .module-out-a745 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus_2972,
  .menu_487a,
  .large_e22d,
  .current_c3df,
  .badge-solid-992c,
  .heading_025f,
  .icon_lower_61f4 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort-f659 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.paper-3ec8 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 067d */
.phantom-card-k3 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
