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

.active_ead6:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.thumbnail-next-0a78,
header,
.copper-6753,
.button_hot_2fb9,
.pattern-7f09,
.module_e98c,
.pattern_motion_e695,
.element-80c5,
.copper-ce23 {
  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
   ============================================ */
.thumbnail-next-0a78 {
  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);
}

.stone-8eb4 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.pink_4220 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.secondary-dbbd {
  flex: 1;
}

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

.label-hard-367c {
  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);
}

.label-hard-367c:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.label-hard-367c.fn-active-3f30 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.solid-9f14 svg {
  flex-shrink: 0;
}

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

.south-1d90: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);
}

.south-1d90 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.green-a2a1[aria-expanded="true"] .header-227a:nth-child(2) {
  opacity: 0;
}

.green-a2a1[aria-expanded="true"] .header-227a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .secondary-dbbd {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .secondary-dbbd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .secondary-dbbd.shade-358c {
    display: block;
    right: 0;
  }
  
  .chip-5c6d {
    flex-direction: column;
    gap: 0;
  }
  
  .label-hard-367c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .secondary-dbbd::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .secondary-dbbd.shade-358c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .secondary-dbbd {
    display: none;
  }
  
  .green-a2a1 {
    display: flex;
  }
  
  .pink_4220 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .solid-9f14,
  .south-1d90 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .focus_simple_4cbf {
    position: relative;
  }
  
  .block_complex_fe4b {
    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;
  }
  
  .link_large_0b8b[aria-expanded="true"] + .block_complex_fe4b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .basic-d398 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focus-b21c {
    gap: 8px;
  }
  
  .solid-9f14 {
    display: none;
  }
  
  .south-1d90 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .link_9e02 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.complex_19cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.paper-c43d a:hover {
  text-decoration: underline;
}

.background-motion-0d12 {
  color: var(--color-text-lighter);
}

.down-ef78 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .down-ef78 {
    font-size: 2rem;
  }
}

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

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

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

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

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

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

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

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

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

.logo-out-d3b1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.paragraph-ef73 {
  position: relative;
  text-align: center;
}

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

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

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

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

.box-gas-5d13 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.content-narrow-5bbb {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .widget_bc37 {
    grid-template-columns: 1fr;
  }
  
  .down-ef78 {
    font-size: 1.75rem;
  }
  
  .complex_f6af {
    order: -1;
    max-width: 100%;
  }
  
  .paragraph-ef73 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .down-ef78 {
    font-size: 1.5rem;
  }
  
  .sidebar_af74 {
    font-size: 1rem;
  }
  
  .paper-c43d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .paragraph-ef73 {
    max-width: 250px;
  }
}

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

.tabs-016d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.component-pressed-f6ec {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.picture-selected-ae56 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.glass-f537 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;
}

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

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

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

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

.thick-903c {
  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);
}

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

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

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

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

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

.badge-fa71 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

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

.badge-fa71 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.badge-fa71 a:hover {
  color: var(--color-primary-dark);
}

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

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

.menu-f7d2 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) {
  .icon-d718 {
    grid-template-columns: 1fr;
  }
  
  .panel_fixed_6410 {
    font-size: 1.75rem;
  }
  
  .badge-fa71 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .panel_fixed_6410 {
    font-size: 1.5rem;
  }
  
  .badge-fa71 h3 {
    font-size: 1.375rem;
  }
  
  .badge-fa71 h4 {
    font-size: 1.125rem;
  }
}

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

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

.pro-be80 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.accent-866b {
  flex-shrink: 0;
}

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

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

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

.left_ddc7,
.plasma_12af,
.footer_7e6a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.left_ddc7 thead,
.plasma_12af thead {
  background: var(--color-primary);
  color: white;
}

.left_ddc7 th,
.left_ddc7 td,
.plasma_12af th,
.plasma_12af td,
.footer_7e6a th,
.footer_7e6a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .left_ddc7 th,
  .left_ddc7 td,
  .plasma_12af th,
  .plasma_12af td,
  .footer_7e6a th,
  .footer_7e6a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .left_ddc7,
  .plasma_12af,
  .footer_7e6a {
    min-width: 600px;
  }
}

.left_ddc7 th,
.plasma_12af th,
.footer_7e6a th {
  font-weight: 600;
}

.left_ddc7 tbody tr:hover,
.plasma_12af tbody tr:hover,
.footer_7e6a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.box_18c2 h4 {
  color: white;
}

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

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

.accordion-motion-bc49:last-child {
  border-bottom: none;
}

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

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

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

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

.accordion-4d70:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.small-a9c6 {
  color: #4caf50;
}

.hover-motion-a6fa {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-new-5d30 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

.modal-liquid-68df {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.modal-liquid-68df ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.modal-liquid-68df li {
  padding: var(--space-xs) 0;
  color: white;
}

.modal-liquid-68df .paper-c12a {
  width: 100%;
  background: white;
}

.image-clean-8724 .paper-c12a {
  color: #667eea;
}

.steel-59a0 .paper-c12a {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone-f59d,
.row_0002,
.search-west-188e,
.container_copper_48a4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.hidden-7d05:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.notice_stale_25aa .fast_edf9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paper-2143 .fast_edf9 {
  background: #fff3e0;
  color: var(--color-warning);
}

.background-gas-09b8 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.background-gas-09b8 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.summary-north-4c42 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.overlay-small-06b2 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.stale_0f63 {
  text-align: center;
}

.search-motion-d187 {
  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);
}

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

.search-motion-d187 .menu_old_b9c3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.list-silver-696e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.info-green-8d14 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.container-cool-0427 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.active-slow-5b51 {
  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;
}

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

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

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

.gradient-short-8793 {
  text-align: right;
}

.gradient-short-8793 .narrow-01b1 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.video-95c3 {
  background: #fff3e0;
  color: #e65100;
}

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

.hidden-fresh-1de9 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.upper-558c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.old_3cce[aria-expanded="true"] .content_dc29 {
  transform: rotate(180deg);
}

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

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

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

.primary-lite-a699 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.video-b99d,
.panel_bright_8e1e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.video-b99d h4,
.panel_bright_8e1e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.video-b99d ul,
.panel_bright_8e1e ul {
  list-style: none;
  padding: 0;
}

.video-b99d li,
.panel_bright_8e1e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-de96 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.detail-tiny-90ac {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.shadow_6d69 a:hover {
  color: white;
}

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

.focus-23b6 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);
}

.focus-23b6 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.shadow-dim-6d7a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.shadow-dim-6d7a a:hover {
  color: white;
}

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

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

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

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

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

.container-9cc4 .link_8937 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.text_5585 a:hover {
  color: white;
}

.backdrop-clean-ecb8 {
  list-style: none;
  padding: 0;
}

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

.backdrop-clean-ecb8 a {
  color: #b0b0b0;
  text-decoration: none;
}

.backdrop-clean-ecb8 a:hover {
  color: white;
}

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

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

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

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

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

.caption-first-112c a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.caption-first-112c 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;
}

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

.summary-3679:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .outer_adb6 {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .down-ef78 {
    font-size: 2rem;
  }
  
  .panel_fixed_6410 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .widget_bc37,
  .icon-d718 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .section_c401,
  .tag-5590,
  .shadow-6098,
  .progress_bottom_2137,
  .banner_small_0699,
  .tertiary-hot-3138,
  .background-fluid-f145,
  .hidden_92c5,
  .center_b624 {
    grid-template-columns: 1fr;
  }
  
  .modal-dark-5cd1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pattern_motion_e695 {
    padding: var(--space-lg) 0;
  }
  
  .glass-f537 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .glass-f537 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paper-c12a {
    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;
  }
  
  .modal-dark-5cd1 {
    grid-template-columns: 1fr;
  }
  
  .logo-out-d3b1,
  .article_stone_55c9,
  .input-6ea7 {
    flex-direction: column;
    width: 100%;
  }
  
  .component-pressed-f6ec,
  .picture-selected-ae56,
  .logo-out-d3b1 .paper-c12a,
  .article_stone_55c9 .paper-c12a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .down-ef78 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .panel_fixed_6410 {
    font-size: 1.375rem;
  }
  
  .background_0939 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .solid-8ab4,
  .disabled-910c,
  .link_pink_17db,
  .aside-medium-f50b,
  .out_ff8b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info-aa99 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .hovered_229e {
    gap: var(--space-xs);
  }
  
  .complex_19cb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .under_1e44 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search-motion-d187 {
    width: 150px;
    height: 150px;
  }
  
  .pink-abaf {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .thumbnail-next-0a78,
  .copper-6753,
  .logo-out-d3b1,
  .paragraph_14d7,
  .element-80c5,
  .copper-ce23,
  .green-a2a1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pattern_motion_e695 {
    page-break-inside: avoid;
  }
}

/* css-noise: 7174 */
.ghost-box-v4 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
