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

.glass_2eeb:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.old-4c5c,
header,
.video_517e,
.west_1810,
.basic-72bf,
.inner-40cc,
.upper-fbb1,
.icon-mini-7223,
.label-dim-7097 {
  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
   ============================================ */
.old-4c5c {
  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);
}

.message-center-2d51 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.gradient-58fd {
  flex: 1;
}

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

.heading-lower-6c06 {
  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);
}

.heading-lower-6c06:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.heading-lower-6c06.fn-active-54c9 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.texture-f7f8 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.component_a15b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

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

.component_a15b svg {
  flex-shrink: 0;
}

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

.tooltip-wood-d4d4: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);
}

.tooltip-wood-d4d4 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.out-8771[aria-expanded="true"] .primary-right-7137:nth-child(2) {
  opacity: 0;
}

.out-8771[aria-expanded="true"] .primary-right-7137:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .gradient-58fd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gradient-58fd.prev-c3b4 {
    display: block;
    right: 0;
  }
  
  .dropdown-1795 {
    flex-direction: column;
    gap: 0;
  }
  
  .heading-lower-6c06 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gradient-58fd::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;
  }
  
  .gradient-58fd.prev-c3b4::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gradient-58fd {
    display: none;
  }
  
  .out-8771 {
    display: flex;
  }
  
  .article-b02d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .component_a15b,
  .tooltip-wood-d4d4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .texture-f7f8 {
    position: relative;
  }
  
  .sort-4793 {
    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;
  }
  
  .warm_d405[aria-expanded="true"] + .sort-4793 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .grid-gold-bab5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption-silver-b59c {
    gap: 8px;
  }
  
  .component_a15b {
    display: none;
  }
  
  .tooltip-wood-d4d4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .silver_6bbb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.border-simple-826f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.border-simple-826f svg {
  flex-shrink: 0;
}

.border-simple-826f a {
  color: var(--color-primary);
  text-decoration: none;
}

.border-simple-826f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading-885a {
  display: flex;
  gap: var(--space-sm);
}

.summary-left-f9ba {
  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;
}

.block-north-4eec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.block-north-4eec strong {
  font-weight: 600;
  color: var(--color-text);
}

.block-north-4eec span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.shade-1cc3 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.media_smooth_4108 {
  position: relative;
  text-align: center;
}

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

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

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

.primary-fluid-5f3d {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .heading_stale_bd0a {
    grid-template-columns: 1fr;
  }
  
  .component_full_1ac2 {
    font-size: 1.75rem;
  }
  
  .shade-1cc3 {
    order: -1;
    max-width: 100%;
  }
  
  .media_smooth_4108 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .component_full_1ac2 {
    font-size: 1.5rem;
  }
  
  .lite-b8ee {
    font-size: 1rem;
  }
  
  .fast_db0f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .media_smooth_4108 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.filter-liquid-02bc {
  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;
}

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

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

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

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

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

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

.component-969d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-dim-3211 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.row-3eca {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.row-3eca img {
  max-width: 100%;
  height: auto;
  display: block;
}

.row-3eca pre,
.row-3eca code {
  overflow-x: auto;
  max-width: 100%;
}

.row-3eca 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);
}

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

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

.row-3eca p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.row-3eca ul,
.row-3eca ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.row-3eca li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.row-3eca strong {
  font-weight: 600;
  color: var(--color-text);
}

.row-3eca a {
  color: var(--color-primary);
  text-decoration: underline;
}

.row-3eca a:hover {
  color: var(--color-primary-dark);
}

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

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

.dark-4666 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) {
  .pressed_9e18 {
    grid-template-columns: 1fr;
  }
  
  .element_5712 {
    font-size: 1.75rem;
  }
  
  .row-3eca {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .element_5712 {
    font-size: 1.5rem;
  }
  
  .row-3eca h3 {
    font-size: 1.375rem;
  }
  
  .row-3eca h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.status-a51d {
  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_502e {
  flex-shrink: 0;
}

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

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

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

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

.sidebar_gas_fbad thead,
.west_e240 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.sidebar_gas_fbad th,
.west_e240 th,
.hard_2fc7 th {
  font-weight: 600;
}

.sidebar_gas_fbad tbody tr:hover,
.west_e240 tbody tr:hover,
.hard_2fc7 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.shade-clean-1bbe h4 {
  color: white;
}

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

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

.module-c3c5:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.search-3e53 {
  font-weight: 600;
  color: white;
}

.outline-96c0 {
  list-style: none;
  padding: 0;
}

.outline-96c0 li {
  padding: var(--space-xs) 0;
}

.red-3f87 {
  color: #4caf50;
}

.sidebar-center-cb95 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element-9507 .filter-liquid-02bc {
  width: 100%;
  background: white;
}

.section-black-2781 .filter-liquid-02bc {
  color: #667eea;
}

.warm-a7fc .filter-liquid-02bc {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .center_e8d3 {
    padding: var(--space-md);
  }
  
  .green-0082 {
    padding: var(--space-md);
  }
  
  .icon_4b08 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.short_c66c,
.clean-9fd6,
.chip_dim_bc4c,
.gallery_solid_4480 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-old-8c8d {
  border-color: var(--color-success);
}

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

.thick-5b6e {
  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);
}

.overlay-old-8c8d .thick-5b6e {
  background: #e8f5e9;
  color: var(--color-success);
}

.pattern-b982 .thick-5b6e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-5ddc {
  text-align: center;
}

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

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

.element_108c .search-3e53 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.dirty-7aca {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.paragraph-pink-d531 {
  border: 2px solid #4caf50;
}

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

.copper-7fdf {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.title_hard_623e {
  text-align: right;
}

.title_hard_623e .label-liquid-1eff {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.upper-fd31 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

.tabs_tiny_e65d h4,
.paper_1b2d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tabs_tiny_e65d ul,
.paper_1b2d ul {
  list-style: none;
  padding: 0;
}

.tabs_tiny_e65d li,
.paper_1b2d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.simple-792f {
  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);
}

.fixed_582b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.surface_6603 a:hover {
  color: white;
}

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

.gold-2b88 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);
}

.gold-2b88 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.card_c381 a:hover {
  color: white;
}

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

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

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

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

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

.secondary_pink_750a .heading-885a {
  color: #4caf50;
  font-size: 0.875rem;
}

.alert-light-66f4 {
  list-style: none;
  padding: 0;
}

.alert-light-66f4 li {
  margin-bottom: var(--space-xs);
}

.alert-light-66f4 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.alert-light-66f4 a:hover {
  color: white;
}

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

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

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

.notification_79ac a:hover {
  color: white;
}

.search-fixed-c67a {
  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);
}

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

.surface-lite-e726 a {
  color: #4caf50;
  text-decoration: none;
}

.modal-last-2442 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.fixed-1bdc 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;
}

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

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

@media (max-width: 768px) {
  .search-fixed-c67a {
    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;
  }
  
  .component_full_1ac2 {
    font-size: 2rem;
  }
  
  .element_5712 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .heading_stale_bd0a,
  .pressed_9e18 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .west-5e21,
  .photo_6ee1,
  .modal_79c8,
  .paragraph_d0f6,
  .hard_792b,
  .lite-9781,
  .component_9925,
  .component_9b15,
  .static-77c1 {
    grid-template-columns: 1fr;
  }
  
  .article_bright_9c14 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .upper-fbb1 {
    padding: var(--space-lg) 0;
  }
  
  .accent_056a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .accent_056a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .filter-liquid-02bc {
    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;
  }
  
  .article_bright_9c14 {
    grid-template-columns: 1fr;
  }
  
  .short-4511,
  .hero_black_90d0,
  .media-81e8 {
    flex-direction: column;
    width: 100%;
  }
  
  .component-969d,
  .article-d276,
  .short-4511 .filter-liquid-02bc,
  .hero_black_90d0 .filter-liquid-02bc {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .component_full_1ac2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element_5712 {
    font-size: 1.375rem;
  }
  
  .dropdown-057d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb_solid_18f7,
  .box-3a4c,
  .text_bronze_eb6c,
  .border_e8ab,
  .hover-over-725f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .next-fadb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .border_light_14b6 {
    gap: var(--space-xs);
  }
  
  .border-simple-826f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .title-a13c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .element_108c {
    width: 150px;
    height: 150px;
  }
  
  .motion-2180 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .old-4c5c,
  .video_517e,
  .short-4511,
  .badge-a8ab,
  .icon-mini-7223,
  .label-dim-7097,
  .out-8771 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .upper-fbb1 {
    page-break-inside: avoid;
  }
}

/* css-noise: b205 */
.widget-item-t8 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
