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

.hover-730a:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .disabled-wood-99d8 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .disabled-wood-99d8 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.input_2220,
header,
.in-3954,
.active-1c39,
.carousel_green_a5a6,
.stone-4d41,
.content_7c10,
.purple-4901,
.mask-warm-283a {
  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
   ============================================ */
.input_2220 {
  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);
}

.chip-green-1001 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.input_2220.notification-smooth-652d {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.header-ad15 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.accordion-focused-56ec {
  flex: 1;
}

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

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

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

.tertiary-d711.fn-active-d5b2 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-brown-cd9e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.avatar-light-20c5 {
  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;
}

.avatar-light-20c5: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);
}

.avatar-light-20c5 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .accordion-focused-56ec::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .accordion-focused-56ec.wide_9c98 {
    display: block;
    right: 0;
  }
  
  .progress_98ab {
    flex-direction: column;
    gap: 0;
  }
  
  .tertiary-d711 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .accordion-focused-56ec::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;
  }
  
  .accordion-focused-56ec.wide_9c98::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .accordion-focused-56ec {
    display: none;
  }
  
  .search_0075 {
    display: flex;
  }
  
  .disabled-0840 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .box-brown-cd9e,
  .avatar-light-20c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input_brown_afbf {
    position: relative;
  }
  
  .gold-effb {
    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;
  }
  
  .west_e044[aria-expanded="true"] + .gold-effb {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .progress_61bb {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .feature-aa9b {
    gap: 8px;
  }
  
  .box-brown-cd9e {
    display: none;
  }
  
  .avatar-light-20c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .header-ad15 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.avatar-soft-2993 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.avatar-soft-2993 svg {
  flex-shrink: 0;
}

.avatar-soft-2993 a {
  color: var(--color-primary);
  text-decoration: none;
}

.avatar-soft-2993 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.input-c03d a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.white-25b4 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .module_motion_7bbd {
    grid-template-columns: 1fr;
  }
  
  .sidebar-b6e6 {
    font-size: 1.75rem;
  }
  
  .item_basic_9e1f {
    order: -1;
    max-width: 100%;
  }
  
  .border_a8ba {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sidebar-b6e6 {
    font-size: 1.5rem;
  }
  
  .dark-f9bd {
    font-size: 1rem;
  }
  
  .input-c03d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .border_a8ba {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row_a7fd 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_a7fd h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

.gradient-f79d 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) {
  .text_373c {
    grid-template-columns: 1fr;
  }
  
  .article_cold_f72a {
    font-size: 1.75rem;
  }
  
  .row_a7fd {
    max-width: 100%;
  }
}

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

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

.focus-1ae6 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.summary-narrow-31f4 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.first_c130 {
  flex-shrink: 0;
}

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

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

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

.light_554c,
.list-50b1,
.banner_down_12c2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.light_554c thead,
.list-50b1 thead {
  background: var(--color-primary);
  color: white;
}

.light_554c th,
.light_554c td,
.list-50b1 th,
.list-50b1 td,
.banner_down_12c2 th,
.banner_down_12c2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .light_554c th,
  .light_554c td,
  .list-50b1 th,
  .list-50b1 td,
  .banner_down_12c2 th,
  .banner_down_12c2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .light_554c,
  .list-50b1,
  .banner_down_12c2 {
    min-width: 600px;
  }
}

.light_554c th,
.list-50b1 th,
.banner_down_12c2 th {
  font-weight: 600;
}

.light_554c tbody tr:hover,
.list-50b1 tbody tr:hover,
.banner_down_12c2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.focus_c3b6 h4 {
  color: white;
}

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

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

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

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

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

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

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

.light-ce08:hover {
  text-decoration: underline;
}

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

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

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

.component-cb12 {
  font-weight: 600;
  color: white;
}

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

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

.picture-fda9 {
  color: #4caf50;
}

.block_orange_10a5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.column-silver-8f55:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.column-silver-8f55 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box_dd4f .smooth_87e1 {
  width: 100%;
  background: white;
}

.south-88e4 .smooth_87e1 {
  color: #667eea;
}

.info_stone_97be .smooth_87e1 {
  color: #f5576c;
}

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

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

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

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

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

.basic-7e73 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .inner_cc83 {
    padding: var(--space-md);
  }
  
  .basic-7e73 {
    padding: var(--space-md);
  }
  
  .element-narrow-f38c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.heading_a370,
.input_clean_b2ac,
.bottom_f7ed,
.pink-a910 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.silver-0c25 {
  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) {
  .silver-0c25 {
    font-size: 0.625rem;
  }
}

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

.summary-gas-4168:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.footer_7a9a .paper-c988 {
  background: #e8f5e9;
  color: var(--color-success);
}

.fast-e4b3 .paper-c988 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.form-blue-0f31 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.item-dark-b8e4 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.stone-04d5 {
  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);
}

.highlight-bc1c {
  text-align: center;
}

.footer-bottom-85ba {
  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);
}

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

.footer-bottom-85ba .component-cb12 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.progress-0f05 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.dynamic-9f96 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.bottom-8df6 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.tiny-0b74 {
  text-align: right;
}

.tiny-0b74 .hero-3944 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.frame-left-4a01 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.top-1113 {
  background: #fff3e0;
  color: #e65100;
}

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

.highlight-old-3a59 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.section-pink-a0f9:hover {
  background: var(--color-bg-alt);
}

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

.section-pink-a0f9[aria-expanded="true"] .focus_smooth_035d {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.status-iron-fc2f {
  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);
}

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

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

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

.form_9ce9,
.gradient-outer-0647 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form_9ce9 h4,
.gradient-outer-0647 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.form_9ce9 ul,
.gradient-outer-0647 ul {
  list-style: none;
  padding: 0;
}

.form_9ce9 li,
.gradient-outer-0647 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .primary-dirty-22f5 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

.picture-new-02f8 {
  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);
}

.huge-3ddb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview_white_3929 a:hover {
  color: white;
}

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

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

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

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

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

.progress-fdf5 a:hover {
  color: white;
}

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

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

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

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

.badge-cold-898c {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.badge-cold-898c .summary_dirty_88ec {
  color: #4caf50;
  font-size: 0.875rem;
}

.badge-purple-569b {
  list-style: none;
  padding: 0;
}

.badge-purple-569b li {
  margin-bottom: var(--space-xs);
}

.badge-purple-569b a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.badge-purple-569b a:hover {
  color: white;
}

.focused-d30a {
  list-style: none;
  padding: 0;
}

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

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

.focused-d30a a:hover {
  color: white;
}

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

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

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

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

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

.feature-thick-69af a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.feature-thick-69af 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;
}

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

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

@media (max-width: 768px) {
  .hot_2967 {
    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;
  }
  
  .sidebar-b6e6 {
    font-size: 2rem;
  }
  
  .article_cold_f72a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .module_motion_7bbd,
  .text_373c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dim_911f,
  .tiny-b7f6,
  .photo_smooth_333d,
  .search_last_9ab0,
  .form-0dd7,
  .primary-dirty-22f5,
  .new_3c88,
  .picture-left-d4bd,
  .pagination_last_54ba {
    grid-template-columns: 1fr;
  }
  
  .fast_3d3f {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .content_7c10 {
    padding: var(--space-lg) 0;
  }
  
  .dynamic_8bf6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dynamic_8bf6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .smooth_87e1 {
    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;
  }
  
  .fast_3d3f {
    grid-template-columns: 1fr;
  }
  
  .over-f297,
  .thumbnail_hovered_d9a0,
  .container_7cf2 {
    flex-direction: column;
    width: 100%;
  }
  
  .simple_93c2,
  .dark_0cba,
  .over-f297 .smooth_87e1,
  .thumbnail_hovered_d9a0 .smooth_87e1 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .sidebar-b6e6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .article_cold_f72a {
    font-size: 1.375rem;
  }
  
  .main-6027 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outer_9802,
  .column-silver-8f55,
  .liquid-f734,
  .green-14c9,
  .active_d6c7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .silver-0c25 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wide-114d {
    gap: var(--space-xs);
  }
  
  .avatar-soft-2993 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .surface_7e71 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer-bottom-85ba {
    width: 150px;
    height: 150px;
  }
  
  .detail-50d1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .input_2220,
  .in-3954,
  .over-f297,
  .tabs_huge_a362,
  .purple-4901,
  .mask-warm-283a,
  .search_0075 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .content_7c10 {
    page-break-inside: avoid;
  }
}

/* css-noise: abb5 */
.phantom-card-r5 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
