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

.notification_medium_2d86:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.outline_7ab6,
header,
.popup_purple_c1f3,
.block-selected-08c9,
.thick-2071,
.tertiary-easy-2b2c,
.column-d68c,
.gold_1fbb,
.south-175d {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.outline_7ab6 {
  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);
}

.texture-old-41cb {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.soft_96b6 {
  flex: 1;
}

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

.tiny-93b1 {
  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);
}

.tiny-93b1:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.tiny-93b1.fn-active-2ed2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.popup-e1c8 {
  position: relative;
}

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

.button-black-1cf3 svg {
  transition: transform 0.2s ease;
}

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

.south-9ddf {
  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;
}

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

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

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

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

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

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

/* Header Login Button */
.sidebar-bright-50c6 {
  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;
}

.sidebar-bright-50c6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.sidebar-bright-50c6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .soft_96b6::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .soft_96b6.feature-easy-6a98 {
    display: block;
    right: 0;
  }
  
  .current_6e33 {
    flex-direction: column;
    gap: 0;
  }
  
  .tiny-93b1 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .soft_96b6::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;
  }
  
  .soft_96b6.feature-easy-6a98::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .soft_96b6 {
    display: none;
  }
  
  .media_c766 {
    display: flex;
  }
  
  .primary-eaab {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .sidebar-bright-50c6,
  .cold_32c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .popup-e1c8 {
    position: relative;
  }
  
  .south-9ddf {
    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;
  }
  
  .button-black-1cf3[aria-expanded="true"] + .south-9ddf {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .warm-feeb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dropdown_cec3 {
    gap: 8px;
  }
  
  .sidebar-bright-50c6 {
    display: none;
  }
  
  .cold_32c0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .banner_orange_b8c9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.rough-efe2 svg {
  flex-shrink: 0;
}

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

.rough-efe2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.hard-b09d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.footer-tall-bd7e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.button-hard-0e3e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .avatar-b69e {
    grid-template-columns: 1fr;
  }
  
  .lower-fcf7 {
    font-size: 1.75rem;
  }
  
  .cold_0fa1 {
    order: -1;
    max-width: 100%;
  }
  
  .button-hard-0e3e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lower-fcf7 {
    font-size: 1.5rem;
  }
  
  .panel-upper-5320 {
    font-size: 1rem;
  }
  
  .hard-b09d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .button-hard-0e3e {
    max-width: 250px;
  }
}

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

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

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

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

.preview-liquid-de35:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notice-inner-bc95 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.notice-inner-bc95 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);
}

.notice-inner-bc95 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;
}

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

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

.hover-wide-495d {
  background: var(--color-bg-section);
}

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

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

.preview-fixed-0619 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-stone-bf53 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.accordion-stone-bf53 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) {
  .basic-c94a {
    grid-template-columns: 1fr;
  }
  
  .preview-fixed-0619 {
    font-size: 1.75rem;
  }
  
  .over-5013 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .preview-fixed-0619 {
    font-size: 1.5rem;
  }
  
  .over-5013 h3 {
    font-size: 1.375rem;
  }
  
  .over-5013 h4 {
    font-size: 1.125rem;
  }
}

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

.sort-stone-7731 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.solid-315c {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.label-inner-047c strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.tag_2b1a {
  flex-shrink: 0;
}

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

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

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

.surface-d413,
.active-64f2,
.banner-efcc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.surface-d413 thead,
.active-64f2 thead {
  background: var(--color-primary);
  color: white;
}

.surface-d413 th,
.surface-d413 td,
.active-64f2 th,
.active-64f2 td,
.banner-efcc th,
.banner-efcc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .surface-d413 th,
  .surface-d413 td,
  .active-64f2 th,
  .active-64f2 td,
  .banner-efcc th,
  .banner-efcc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .surface-d413,
  .active-64f2,
  .banner-efcc {
    min-width: 600px;
  }
}

.surface-d413 th,
.active-64f2 th,
.banner-efcc th {
  font-weight: 600;
}

.surface-d413 tbody tr:hover,
.active-64f2 tbody tr:hover,
.banner-efcc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hovered-4416 h4 {
  color: white;
}

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

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

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

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

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

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

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

.shadow-lower-7b2c:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.tabs_light_ca76 {
  color: #4caf50;
}

.info_dark_a01a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-center-8f21 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.pressed-755d {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.component_white_8cdd .detail-6984 {
  width: 100%;
  background: white;
}

.green-7f12 .detail-6984 {
  color: #667eea;
}

.input_basic_5fd8 .detail-6984 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.content-light-4f56 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.secondary-tall-6adb {
  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);
}

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

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

@media (max-width: 768px) {
  .slow_d277 {
    padding: var(--space-md);
  }
  
  .complex-2689 {
    padding: var(--space-md);
  }
  
  .active-under-4034 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.text_wide_ee0e,
.hero-038c,
.brown-4c11,
.popup-white-71da {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dirty_b9a1 .hidden_bottom_db5c {
  background: #e8f5e9;
  color: var(--color-success);
}

.silver_3bcb .hidden_bottom_db5c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.thumbnail-huge-e10f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.label_0e06 {
  text-align: center;
}

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

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

.silver-a873 .cold_9858 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.surface-tiny-33a0 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.slider-action-87bf {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

.gradient-liquid-c134 {
  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;
}

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

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

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

.orange_a9e5 {
  text-align: right;
}

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

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

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

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

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

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

.right-541d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.media-806b strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.gallery-last-dd22 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.thumbnail_3be8[aria-expanded="true"] .gallery-last-dd22 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

.summary-6646 {
  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-6646 {
    grid-template-columns: 1fr;
  }
}

.search_1dc9,
.photo-smooth-58e9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.search_1dc9 h4,
.photo-smooth-58e9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.search_1dc9 ul,
.photo-smooth-58e9 ul {
  list-style: none;
  padding: 0;
}

.search_1dc9 li,
.photo-smooth-58e9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.focus_hard_a641 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-b0a7 a:hover {
  color: white;
}

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

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

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

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

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

.block_under_2c8f a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .pink-6261,
  .bronze-549c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.narrow-ec7e .main_e796 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.content_099a a:hover {
  color: white;
}

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

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

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

.steel_e883 a:hover {
  color: white;
}

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

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

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

.tabs-advanced-6805 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.layout-0f32:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hard-f9bf {
    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;
  }
  
  .lower-fcf7 {
    font-size: 2rem;
  }
  
  .preview-fixed-0619 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .avatar-b69e,
  .basic-c94a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent-39d9,
  .bottom_d078,
  .caption_a1f4,
  .link_cee8,
  .summary-6646,
  .grid-685d,
  .gallery-676c,
  .pink-6261,
  .bronze-549c {
    grid-template-columns: 1fr;
  }
  
  .motion-0f95 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .column-d68c {
    padding: var(--space-lg) 0;
  }
  
  .notice-inner-bc95 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .notice-inner-bc95 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .detail-6984 {
    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;
  }
  
  .motion-0f95 {
    grid-template-columns: 1fr;
  }
  
  .footer-tall-bd7e,
  .detail-35d6,
  .button-hard-4fd2 {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_top_c14e,
  .hidden_521d,
  .footer-tall-bd7e .detail-6984,
  .detail-35d6 .detail-6984 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .lower-fcf7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .preview-fixed-0619 {
    font-size: 1.375rem;
  }
  
  .outline-left-ae73 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .smooth_f785,
  .grid_986a,
  .status_3e4d,
  .left-f869,
  .text_95ac {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .backdrop-38bd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .table_4a27 {
    gap: var(--space-xs);
  }
  
  .rough-efe2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .texture_face {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .silver-a873 {
    width: 150px;
    height: 150px;
  }
  
  .main-fd3c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outline_7ab6,
  .popup_purple_c1f3,
  .footer-tall-bd7e,
  .main_yellow_397d,
  .gold_1fbb,
  .south-175d,
  .media_c766 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .column-d68c {
    page-break-inside: avoid;
  }
}

/* css-noise: 2e61 */
.ghost-box-g0 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.0;
}
