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

.paragraph_smooth_af0d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.row_bottom_cc2e,
header,
.thumbnail_630e,
.up_2d73,
.outer_90ce,
.footer-942d,
.component_light_4b49,
.plasma_fa0f,
.dark_589e {
  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
   ============================================ */
.row_bottom_cc2e {
  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);
}

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

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

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

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

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

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

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

.pagination_0a8b {
  flex: 1;
}

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

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

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

.panel_next_186c.fn-active-706a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.smooth-9062 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hero_0a7a svg {
  flex-shrink: 0;
}

/* Header Download Button */
.wrapper-prev-11d6 {
  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;
}

.wrapper-prev-11d6: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);
}

.wrapper-prev-11d6 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .pagination_0a8b {
    display: none;
  }
  
  .brown_787e {
    display: flex;
  }
  
  .under-fc44 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .hero_0a7a,
  .wrapper-prev-11d6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .smooth-9062 {
    position: relative;
  }
  
  .article_fast_0f62 {
    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;
  }
  
  .dirty_376b[aria-expanded="true"] + .article_fast_0f62 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .label-e313 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .focused-8779 {
    gap: 8px;
  }
  
  .hero_0a7a {
    display: none;
  }
  
  .wrapper-prev-11d6 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .bronze_d15b img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .wrapper-prev-11d6 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .wrapper-prev-11d6 svg {
    width: 14px;
    height: 14px;
  }
  
  .surface-128e {
    gap: var(--space-sm);
  }
}

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

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

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

.component_17ae svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-purple-4ae7 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.label-purple-4ae7 strong {
  font-weight: 600;
  color: var(--color-text);
}

.label-purple-4ae7 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.secondary-stale-73bc {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .link-5499 {
    grid-template-columns: 1fr;
  }
  
  .white_a8e4 {
    font-size: 1.75rem;
  }
  
  .secondary-stale-73bc {
    order: -1;
    max-width: 100%;
  }
  
  .content_basic_bbf4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .white_a8e4 {
    font-size: 1.5rem;
  }
  
  .surface_a2ca {
    font-size: 1rem;
  }
  
  .prev_46eb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .content_basic_bbf4 {
    max-width: 250px;
  }
}

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

.text-smooth-955b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-full-5bbf {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.video-17c2 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.video-17c2 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);
}

.video-17c2 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel_677a 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) {
  .preview_warm_aa4e {
    grid-template-columns: 1fr;
  }
  
  .border-4f11 {
    font-size: 1.75rem;
  }
  
  .in_013e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .border-4f11 {
    font-size: 1.5rem;
  }
  
  .in_013e h3 {
    font-size: 1.375rem;
  }
  
  .in_013e h4 {
    font-size: 1.125rem;
  }
}

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

.wrapper-full-2419 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.disabled-thick-8b0d {
  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;
}

.secondary_active_7d6e {
  flex-shrink: 0;
}

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

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

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

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

.banner_liquid_a403 thead,
.footer_gold_5d98 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.banner_liquid_a403 th,
.footer_gold_5d98 th,
.image_left_671d th {
  font-weight: 600;
}

.banner_liquid_a403 tbody tr:hover,
.footer_gold_5d98 tbody tr:hover,
.image_left_671d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.slider-paper-6ef1 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.cold_ea9a h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.banner-3dcc {
  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);
}

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

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

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

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

.wrapper_blue_aef0 {
  color: #4caf50;
}

.disabled-6169 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.purple-6b25 {
  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;
}

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

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

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

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

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

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

.hidden-in-6e23 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.border-down-83ef ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.border-down-83ef li {
  padding: var(--space-xs) 0;
  color: white;
}

.border-down-83ef .new_5041 {
  width: 100%;
  background: white;
}

.simple_fd05 .new_5041 {
  color: #667eea;
}

.basic-20ae .new_5041 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade_3562,
.description_d8e7,
.under-f3e8,
.container-8579 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.icon-upper-a30c {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .icon-upper-a30c {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.under-3e41 {
  border-color: var(--color-success);
}

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

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

.under-3e41 .tag-silver-e53c {
  background: #e8f5e9;
  color: var(--color-success);
}

.message_9697 .tag-silver-e53c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.texture-selected-6ae7 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.avatar-c44a {
  text-align: center;
}

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

.info-iron-5b4d {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-3cdd {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.hidden_7a1b {
  text-align: right;
}

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

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

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

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

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

.popup-current-4acc {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.footer-advanced-8ede {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.photo-69cf {
  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);
}

.photo-69cf:hover {
  background: var(--color-bg-alt);
}

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

.photo-69cf[aria-expanded="true"] .dark_e5e6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.current-1c56 {
  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);
}

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

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

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

.solid_9ea1,
.search-289c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.solid_9ea1 h4,
.search-289c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.solid_9ea1 ul,
.search-289c ul {
  list-style: none;
  padding: 0;
}

.solid_9ea1 li,
.search-289c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.disabled-clean-6cb5 {
  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);
}

.clean_3930 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_ea05 a:hover {
  color: white;
}

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

.notification-54da 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);
}

.notification-54da a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.active-brown-6668 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.active-brown-6668 a:hover {
  color: white;
}

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

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

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

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

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

.row_dark_de52 .stone_d3f2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.feature_west_6c39 a:hover {
  color: white;
}

.alert-center-baab {
  list-style: none;
  padding: 0;
}

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

.alert-center-baab a {
  color: #b0b0b0;
  text-decoration: none;
}

.alert-center-baab a:hover {
  color: white;
}

.feature-9cb9 {
  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);
}

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

.progress-current-6d4f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .feature-9cb9 {
    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;
  }
  
  .white_a8e4 {
    font-size: 2rem;
  }
  
  .border-4f11 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .link-5499,
  .preview_warm_aa4e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .next-ac12,
  .detail-huge-12a9,
  .smooth_9bed,
  .widget_316d,
  .column-c839,
  .detail-thick-f958,
  .green-4fc5,
  .gradient_lite_f19c,
  .nav_80e3 {
    grid-template-columns: 1fr;
  }
  
  .tertiary_red_5ce8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .component_light_4b49 {
    padding: var(--space-lg) 0;
  }
  
  .video-17c2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .video-17c2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .new_5041 {
    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;
  }
  
  .tertiary_red_5ce8 {
    grid-template-columns: 1fr;
  }
  
  .soft_4104,
  .caption_760e,
  .block_short_9f48 {
    flex-direction: column;
    width: 100%;
  }
  
  .solid_6d99,
  .breadcrumb-bf9f,
  .soft_4104 .new_5041,
  .caption_760e .new_5041 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .white_a8e4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .border-4f11 {
    font-size: 1.375rem;
  }
  
  .picture_in_a908 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .purple_0d83,
  .alert-b68f,
  .caption-91fc,
  .sort_silver_570a,
  .thick-ef7e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .icon-upper-a30c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .texture_lower_cbab {
    gap: var(--space-xs);
  }
  
  .component_17ae {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner-3dcc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search_hovered_1d98 {
    width: 150px;
    height: 150px;
  }
  
  .info-iron-5b4d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .row_bottom_cc2e,
  .thumbnail_630e,
  .soft_4104,
  .text_wide_8ffc,
  .plasma_fa0f,
  .dark_589e,
  .brown_787e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .component_light_4b49 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1549 */
.phantom-card-x3 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
