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

.pagination-white-bb74:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.alert-gold-f984,
header,
.feature-84e9,
.outer-5d62,
.container_hard_d3bc,
.hot-186c,
.banner-focused-f8cc,
.first-dae6,
.aside-selected-af86 {
  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
   ============================================ */
.alert-gold-f984 {
  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);
}

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

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

/* Scrolled state */
.alert-gold-f984.disabled-ff2b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.inner-06e3 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.modal_tall_37aa {
  flex: 1;
}

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

.fast-9d53 {
  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);
}

.fast-9d53:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.fast-9d53.fn-active-7043 {
  background: var(--color-primary);
  color: white;
}

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

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

.hidden-yellow-a338 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.iron-7ac7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .modal_tall_37aa {
    display: none;
  }
  
  .warm_6797 {
    display: flex;
  }
  
  .hard_def1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .iron-7ac7,
  .purple_1231 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .narrow_82bf {
    position: relative;
  }
  
  .form_50a3 {
    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;
  }
  
  .hidden-yellow-a338[aria-expanded="true"] + .form_50a3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .stone-1bb0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .smooth_10ef {
    gap: 8px;
  }
  
  .iron-7ac7 {
    display: none;
  }
  
  .purple_1231 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .inner-06e3 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .purple_1231 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .purple_1231 svg {
    width: 14px;
    height: 14px;
  }
  
  .in-0b82 {
    gap: var(--space-sm);
  }
}

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

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

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

.filter_orange_5f73 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero-stale-d88f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stale-d88f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.wide-6fdd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .filter_6f54 {
    grid-template-columns: 1fr;
  }
  
  .focus-3746 {
    font-size: 1.75rem;
  }
  
  .outline_rough_9759 {
    order: -1;
    max-width: 100%;
  }
  
  .wide-6fdd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focus-3746 {
    font-size: 1.5rem;
  }
  
  .chip_1c9b {
    font-size: 1rem;
  }
  
  .banner_mini_cbad {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wide-6fdd {
    max-width: 250px;
  }
}

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

.shadow-0f05 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-ef02 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;
}

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

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

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

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

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

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

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

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

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

.alert-tiny-420e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.alert-tiny-420e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.alert-tiny-420e pre,
.alert-tiny-420e code {
  overflow-x: auto;
  max-width: 100%;
}

.alert-tiny-420e 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);
}

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

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

.alert-tiny-420e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.alert-tiny-420e ul,
.alert-tiny-420e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.alert-tiny-420e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.alert-tiny-420e strong {
  font-weight: 600;
  color: var(--color-text);
}

.alert-tiny-420e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.alert-tiny-420e a:hover {
  color: var(--color-primary-dark);
}

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

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

.backdrop-fef6 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) {
  .element_baae {
    grid-template-columns: 1fr;
  }
  
  .under_46e2 {
    font-size: 1.75rem;
  }
  
  .alert-tiny-420e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .under_46e2 {
    font-size: 1.5rem;
  }
  
  .alert-tiny-420e h3 {
    font-size: 1.375rem;
  }
  
  .alert-tiny-420e h4 {
    font-size: 1.125rem;
  }
}

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

.tooltip-38ce {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.frame-black-99e1 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.mask-e6ab {
  flex-shrink: 0;
}

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

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

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

.element-f632,
.photo-warm-7422,
.description_ba76 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.element-f632 thead,
.photo-warm-7422 thead {
  background: var(--color-primary);
  color: white;
}

.element-f632 th,
.element-f632 td,
.photo-warm-7422 th,
.photo-warm-7422 td,
.description_ba76 th,
.description_ba76 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .element-f632 th,
  .element-f632 td,
  .photo-warm-7422 th,
  .photo-warm-7422 td,
  .description_ba76 th,
  .description_ba76 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .element-f632,
  .photo-warm-7422,
  .description_ba76 {
    min-width: 600px;
  }
}

.element-f632 th,
.photo-warm-7422 th,
.description_ba76 th {
  font-weight: 600;
}

.element-f632 tbody tr:hover,
.photo-warm-7422 tbody tr:hover,
.description_ba76 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.motion-65ba h4 {
  color: white;
}

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

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

.header-easy-4f32:last-child {
  border-bottom: none;
}

.header-easy-4f32 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.header-easy-4f32 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.cool-9067:hover {
  text-decoration: underline;
}

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

.nav-yellow-3f6b {
  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);
}

.nav-yellow-3f6b span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.medium-fdc0 {
  list-style: none;
  padding: 0;
}

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

.simple_fe1c {
  color: #4caf50;
}

.main-5449 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-soft-a0f3 .cold_e2a7 {
  width: 100%;
  background: white;
}

.fluid_19fd .cold_e2a7 {
  color: #667eea;
}

.card_old_d5d8 .cold_e2a7 {
  color: #f5576c;
}

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

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

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

.status-fresh-c93f {
  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);
}

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

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

@media (max-width: 768px) {
  .east_eebb {
    padding: var(--space-md);
  }
  
  .rough_ccae {
    padding: var(--space-md);
  }
  
  .grid_efdb {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hover-out-93cf,
.shade-1a4c,
.alert_thick_0222,
.under-4c0d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.tertiary-dark-700c {
  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) {
  .tertiary-dark-700c {
    font-size: 0.625rem;
  }
}

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

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

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

.left-10b4 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.liquid-5dce {
  border-color: var(--color-success);
}

.row-bottom-9538 {
  border-color: var(--color-warning);
}

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

.liquid-5dce .nav_5501 {
  background: #e8f5e9;
  color: var(--color-success);
}

.row-bottom-9538 .nav_5501 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.heading-bronze-41a1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.label-5a39 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.mask-first-5f8b {
  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);
}

.component_mini_7849 {
  text-align: center;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask-first-5f8b {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-dim-2384 {
  text-align: right;
}

.accent-dim-2384 .detail-dynamic-1f31 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.article-yellow-73bc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.photo-old-97af {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.chip-under-2263 {
  background: #e8f5e9;
  color: #2e7d32;
}

.card-b247 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.mask-steel-0ef6 {
  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);
}

.mask-steel-0ef6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.hard-70c3 {
  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);
}

.hard-70c3:hover {
  background: var(--color-bg-alt);
}

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

.hard-70c3[aria-expanded="true"] .button_df91 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .form-hard-6fb6 {
    grid-template-columns: 1fr;
  }
}

.item-fresh-82ec,
.carousel_ab06 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.item-fresh-82ec h4,
.carousel_ab06 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.item-fresh-82ec ul,
.carousel_ab06 ul {
  list-style: none;
  padding: 0;
}

.item-fresh-82ec li,
.carousel_ab06 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.status-short-c345 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.down-2393 {
  font-style: italic;
}

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

.tertiary-new-2e4c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_right_cb38 a:hover {
  color: white;
}

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

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

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

.surface-1e1f {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.surface-1e1f a:hover {
  color: white;
}

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

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

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

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

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

.bottom-137d .first_31ec {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.form_28d1 a:hover {
  color: white;
}

.aside-4b4d {
  list-style: none;
  padding: 0;
}

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

.aside-4b4d a {
  color: #b0b0b0;
  text-decoration: none;
}

.aside-4b4d a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .modal_upper_9aac {
    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;
  }
  
  .focus-3746 {
    font-size: 2rem;
  }
  
  .under_46e2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .filter_6f54,
  .element_baae {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .copper_3947,
  .prev-5ee3,
  .glass_be16,
  .stone_fe92,
  .form-hard-6fb6,
  .section_over_68ad,
  .footer_hovered_6711,
  .filter_a599,
  .tooltip-6e7e {
    grid-template-columns: 1fr;
  }
  
  .liquid_e687 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .banner-focused-f8cc {
    padding: var(--space-lg) 0;
  }
  
  .action-ef02 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .action-ef02 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cold_e2a7 {
    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;
  }
  
  .liquid_e687 {
    grid-template-columns: 1fr;
  }
  
  .panel_83d0,
  .small_af47,
  .dirty-02f0 {
    flex-direction: column;
    width: 100%;
  }
  
  .section_95a9,
  .wide_41ed,
  .panel_83d0 .cold_e2a7,
  .small_af47 .cold_e2a7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focus-3746 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .under_46e2 {
    font-size: 1.375rem;
  }
  
  .yellow_156d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .video-over-0729,
  .dynamic-b8ee,
  .thumbnail-black-066e,
  .narrow-58a5,
  .advanced_f166 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tertiary-dark-700c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .border_81c2 {
    gap: var(--space-xs);
  }
  
  .filter_orange_5f73 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .nav-yellow-3f6b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gallery_lower_8fbe {
    width: 150px;
    height: 150px;
  }
  
  .dynamic_d25b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .alert-gold-f984,
  .feature-84e9,
  .panel_83d0,
  .tertiary-new-2e4c,
  .first-dae6,
  .aside-selected-af86,
  .warm_6797 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .banner-focused-f8cc {
    page-break-inside: avoid;
  }
}

/* css-noise: b538 */
.phantom-card-s6 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
