/* ============================================
   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)
   ============================================ */
.table-stone-6cc9 {
  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;
}

.table-stone-6cc9:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.gold_1d80 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .gold_1d80 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .gold_1d80 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.hero_a21e):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.hero_a21e,
header,
.huge_c206,
.component_inner_e565,
.column-medium-dead,
.module_e9d2,
.frame_3e22,
.solid_0fe0,
.header_a6a9 {
  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
   ============================================ */
.hero_a21e {
  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);
}

.first-6d29 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.hero_a21e.outline_east_b39c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.status_motion_0092 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.wood-a3a5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.popup_e8d1 img {
  height: 36px;
  width: auto;
  display: block;
}

.notice_2481 {
  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;
}

.detail_f56b {
  flex: 1;
}

.cool_8b4b {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.disabled_1317 {
  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);
}

.disabled_1317:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.disabled_1317.tooltip_new_dd5a {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.card-3c00 {
  position: relative;
}

.gradient_c39a {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.gradient_c39a svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.card-3c00:hover .gradient_c39a svg,
.gradient_c39a[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.dynamic_4309 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.card-3c00:hover .dynamic_4309 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.dynamic_4309::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.purple_fbce {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.purple_fbce:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.purple_fbce[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.chip-medium-bb4d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.chip-ae87 {
  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;
}

.chip-ae87:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.chip-ae87 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.article-acce {
  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;
}

.article-acce: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);
}

.article-acce svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.chip-warm-cd85 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.secondary-north-a373 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.chip-warm-cd85[aria-expanded="true"] .secondary-north-a373:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.chip-warm-cd85[aria-expanded="true"] .secondary-north-a373:nth-child(2) {
  opacity: 0;
}

.chip-warm-cd85[aria-expanded="true"] .secondary-north-a373:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .detail_f56b {
    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 */
  }

  .detail_f56b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .detail_f56b.avatar-new-5187 {
    display: block;
    right: 0;
  }
  
  .cool_8b4b {
    flex-direction: column;
    gap: 0;
  }
  
  .disabled_1317 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .detail_f56b::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;
  }
  
  .detail_f56b.avatar-new-5187::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .detail_f56b {
    display: none;
  }
  
  .chip-warm-cd85 {
    display: flex;
  }
  
  .notice_2481 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .chip-ae87,
  .article-acce {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .card-3c00 {
    position: relative;
  }
  
  .dynamic_4309 {
    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;
  }
  
  .gradient_c39a[aria-expanded="true"] + .dynamic_4309 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .purple_fbce {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .chip-medium-bb4d {
    gap: 8px;
  }
  
  .chip-ae87 {
    display: none;
  }
  
  .article-acce {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .popup_e8d1 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .article-acce {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .article-acce svg {
    width: 14px;
    height: 14px;
  }
  
  .status_motion_0092 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.huge_c206 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.title-silver-c213 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.menu-silver-f7cc {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-silver-f7cc svg {
  flex-shrink: 0;
}

.menu-silver-f7cc a {
  color: var(--color-primary);
  text-decoration: none;
}

.menu-silver-f7cc a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .title-silver-c213 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.component_inner_e565 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.tag-fd79 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .tag-fd79 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.complex-cbc0 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.complex-cbc0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.complex-cbc0 a:hover {
  text-decoration: underline;
}

.full_d240 {
  color: var(--color-text-lighter);
}

.description-action-e3f3 {
  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) {
  .description-action-e3f3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .description-action-e3f3 {
    font-size: 1.5rem;
  }
}

.form_3d49 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.footer_solid_9af3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .footer_solid_9af3 {
    grid-template-columns: 1fr;
  }
}

.middle-b40c {
  display: flex;
  gap: var(--space-sm);
}

.breadcrumb-0199 {
  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;
}

.menu-narrow-77c4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.menu-narrow-77c4 strong {
  font-weight: 600;
  color: var(--color-text);
}

.menu-narrow-77c4 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.grid_1e06 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-dim-c6cb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.summary_white_5544 {
  position: relative;
  text-align: center;
}

.summary_white_5544 img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.background-up-ced5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.right-8e0c {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.image_9788 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.shade_009e {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.card_5193 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.texture-current-31dc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .tag-fd79 {
    grid-template-columns: 1fr;
  }
  
  .description-action-e3f3 {
    font-size: 1.75rem;
  }
  
  .footer-dim-c6cb {
    order: -1;
    max-width: 100%;
  }
  
  .summary_white_5544 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .description-action-e3f3 {
    font-size: 1.5rem;
  }
  
  .form_3d49 {
    font-size: 1rem;
  }
  
  .complex-cbc0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .summary_white_5544 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.gas-544a {
  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;
}

.pressed-3f2b {
  background: var(--color-primary);
  color: white;
}

.pressed-3f2b:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.link_f69d {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.link_f69d:hover {
  background: var(--color-primary);
  color: white;
}

.cold_58d6 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.cold_58d6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.highlight-up-6ced {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.yellow-6b3e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.column-medium-dead {
  padding: var(--space-xl) 0;
  background: white;
}

.bright-3b45 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.wood-6ad3 {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.wood-6ad3:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hidden_e730 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.accent-2720 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.pattern-pressed-e497 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.module_e9d2 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.purple_18cc {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hover-1d3d {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.middle-e7dc {
  list-style: none;
  counter-reset: toc-counter;
}

.middle-e7dc li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.middle-e7dc 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);
}

.middle-e7dc 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;
}

.middle-e7dc li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.frame_3e22 {
  padding: var(--space-xxl) 0;
}

.tabs-right-f4c1 {
  background: var(--color-bg-section);
}

.focused_adf7 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.badge-gold-9c04 {
  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);
}

.form_a1e8 {
  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);
}

.inner-cd44 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.alert_cold_a4ea {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .alert_cold_a4ea {
    grid-template-columns: 1fr 300px;
  }
}

.black_cea9 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.black_cea9 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.black_cea9 pre,
.black_cea9 code {
  overflow-x: auto;
  max-width: 100%;
}

.black_cea9 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);
}

.black_cea9 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.black_cea9 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.black_cea9 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.black_cea9 ul,
.black_cea9 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.black_cea9 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.black_cea9 strong {
  font-weight: 600;
  color: var(--color-text);
}

.black_cea9 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.black_cea9 a:hover {
  color: var(--color-primary-dark);
}

.progress-a2fe {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.progress-a2fe li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.progress-a2fe 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) {
  .alert_cold_a4ea {
    grid-template-columns: 1fr;
  }
  
  .form_a1e8 {
    font-size: 1.75rem;
  }
  
  .black_cea9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form_a1e8 {
    font-size: 1.5rem;
  }
  
  .black_cea9 h3 {
    font-size: 1.375rem;
  }
  
  .black_cea9 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.image_964b {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.media_6e4c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.black-b040 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.mask-942b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.summary-fast-f33f strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.green-1243 {
  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;
}

.new-824b {
  flex-shrink: 0;
}

.slow_a756 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.disabled_270c {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .disabled_270c {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.static_b699,
.progress-solid-3913,
.filter-ef3a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.static_b699 thead,
.progress-solid-3913 thead {
  background: var(--color-primary);
  color: white;
}

.static_b699 th,
.static_b699 td,
.progress-solid-3913 th,
.progress-solid-3913 td,
.filter-ef3a th,
.filter-ef3a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .static_b699 th,
  .static_b699 td,
  .progress-solid-3913 th,
  .progress-solid-3913 td,
  .filter-ef3a th,
  .filter-ef3a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .static_b699,
  .progress-solid-3913,
  .filter-ef3a {
    min-width: 600px;
  }
}

.static_b699 th,
.progress-solid-3913 th,
.filter-ef3a th {
  font-weight: 600;
}

.static_b699 tbody tr:hover,
.progress-solid-3913 tbody tr:hover,
.filter-ef3a tbody tr:hover {
  background: var(--color-bg-alt);
}

.accordion_7a21 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.gallery-17d9 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.carousel_bc11 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.carousel_bc11 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.gold_1f41 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.gold_1f41 h4 {
  color: white;
}

.secondary_stale_6e96 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.main-brown-b43d {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.main-brown-b43d:last-child {
  border-bottom: none;
}

.main-brown-b43d dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.main-brown-b43d dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.notification_c179 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.search_b273 {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.search_b273:hover {
  text-decoration: underline;
}

.solid_9bd8 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.overlay-6109 {
  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);
}

.overlay-6109 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.liquid_94f5 {
  font-weight: 600;
  color: white;
}

.advanced_d146 {
  list-style: none;
  padding: 0;
}

.advanced_d146 li {
  padding: var(--space-xs) 0;
}

.gas_8185 {
  color: #4caf50;
}

.hard-9974 {
  color: #ff9800;
}

.frame-dab5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.slider_gold_0368 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.link-3c9c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.grid_hard_b726 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.center-447f {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.old_24b3 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.advanced-0729 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .advanced-0729 {
    grid-template-columns: 1fr;
  }
}

.prev-71b4 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.prev-71b4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bottom-2aa9 {
  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;
}

.prev-71b4 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.prev-71b4 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.gallery_d948 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.liquid_94f5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.icon-cold-4719 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.outer_7451 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.outer_7451 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.outline_0a61 {
  max-width: 900px;
  margin: 0 auto;
}

.dynamic_11a5 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.surface_motion_f5a4 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .surface_motion_f5a4 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.focus-398b {
  margin-top: var(--space-xxl);
}

.focus-398b h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.secondary_fb57 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .secondary_fb57 {
    grid-template-columns: 1fr;
  }
}

.item_new_b0df {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.accordion-89e0 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.disabled-8b45 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.item_new_b0df h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.item_new_b0df ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.item_new_b0df li {
  padding: var(--space-xs) 0;
  color: white;
}

.item_new_b0df .gas-544a {
  width: 100%;
  background: white;
}

.accordion-89e0 .gas-544a {
  color: #667eea;
}

.disabled-8b45 .gas-544a {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.table-steel-46cc {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-b3c7 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.container-selected-3599 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.popup-7130 {
  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);
}

.container-selected-3599 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.menu-next-7bdd {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .container-selected-3599 {
    padding: var(--space-md);
  }
  
  .menu-next-7bdd {
    padding: var(--space-md);
  }
  
  .feature_black_2659 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.surface_5ae4 ol,
.surface_5ae4 ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.surface_5ae4 li {
  margin-bottom: var(--space-sm);
}

.surface_5ae4 code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.image-wide-34bf {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.link_cf07 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.feature_black_2659 {
  margin-top: var(--space-lg);
  text-align: center;
}

.feature_black_2659 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.green_af0c,
.module_ed7f,
.light-9243,
.logo-a7a0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.notification_short_02e2 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.easy-312d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.smooth_93b3 {
  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) {
  .smooth_93b3 {
    font-size: 0.625rem;
  }
}

.fixed_e8eb {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.fixed_e8eb:hover {
  background: var(--color-primary-dark);
}

.out-3f9b {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.out-3f9b h4 {
  margin-bottom: var(--space-md);
}

.gas_8c9f {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.red_7a1e {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.photo_selected_70c9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .photo_selected_70c9 {
    grid-template-columns: 1fr;
  }
}

.grid-4cf9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.notice_cold_17af {
  border-color: var(--color-success);
}

.tertiary-east-4a93 {
  border-color: var(--color-warning);
}

.hover-up-8d8d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.notice_cold_17af .hover-up-8d8d {
  background: #e8f5e9;
  color: var(--color-success);
}

.tertiary-east-4a93 .hover-up-8d8d {
  background: #fff3e0;
  color: var(--color-warning);
}

.grid-4cf9 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.grid-4cf9 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.pagination-pressed-e824 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.hidden_new_3c1d {
  margin: var(--space-xxl) 0;
}

.hidden_new_3c1d h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.hidden_new_3c1d > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.photo_full_f03e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .photo_full_f03e {
    grid-template-columns: 1fr;
  }
}

.sidebar-pink-9f04 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-pink-9f04 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.focus_2276 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.focus_2276 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.tooltip_purple_0a1e {
  margin-top: var(--space-xxl);
}

.dirty-786b {
  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);
}

.container_dirty_6421 {
  text-align: center;
}

.gradient_b821 {
  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);
}

.north-aa28 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.gradient_b821 .liquid_94f5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.pagination-09eb {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.info_huge_63ea p {
  margin-bottom: var(--space-md);
}

.upper-7020 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .dirty-786b {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.old_f644 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.selected-da60 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.fluid-a6e7 {
  margin-bottom: var(--space-xl);
}

.breadcrumb-under-263a {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.paragraph-93f8 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.text_over_384e {
  color: var(--color-text-light);
}

.feature_active_83d1 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hidden-c86e {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.action-cf99 {
  font-weight: 600;
  color: var(--color-text);
}

.input-focused-4e51 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.backdrop-1f97 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.detail-0ed6 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.tertiary_ac7a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.pagination-fresh-70fc {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.dim-4496 {
  border: 2px solid #4caf50;
}

.gallery_d244 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.link-7b26 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.solid_418b {
  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;
}

.north_4916 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.photo-31c3 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.input_6718 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.outer-1402 {
  text-align: right;
}

.outer-1402 .short-ade2 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.input-bright-e6ce {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.last-ff72 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.last-ff72 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.notice_fixed_3ddf {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.overlay_lower_7f2d {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.right-3cfd {
  background: #e8f5e9;
  color: #2e7d32;
}

.overlay-left-0d91 {
  background: #e3f2fd;
  color: #1565c0;
}

.static_ab33 {
  background: #fff3e0;
  color: #e65100;
}

.article_6c55 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.article_6c55 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.widget-focused-5846 {
  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);
}

.widget-focused-5846:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.thumbnail_slow_8761 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.main_e139 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.main_e139 strong {
  color: var(--color-primary);
}

.avatar-wide-f006 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.button-1933 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.south-4f33 {
  max-width: 900px;
  margin: 0 auto;
}

.pressed_fa5f {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.sort_4e90 {
  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);
}

.sort_4e90:hover {
  background: var(--color-bg-alt);
}

.shade_basic_21cb {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.sort_4e90[aria-expanded="true"] .shade_basic_21cb {
  transform: rotate(180deg);
}

.background_green_f10c {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.background_green_f10c h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.background_green_f10c ul,
.background_green_f10c ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.background_green_f10c li {
  margin-bottom: var(--space-xs);
}

.block_0d88 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.text-2e6b {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.block_0d88 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.alert-dirty-70e2 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.content-steel-102c {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.large_50e8 {
  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);
}

.gold-659a {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.under_47b3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .under_47b3 {
    grid-template-columns: 1fr;
  }
}

.backdrop_a8a3,
.overlay-ece8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.backdrop_a8a3 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.overlay-ece8 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.backdrop_a8a3 h4,
.overlay-ece8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.backdrop_a8a3 ul,
.overlay-ece8 ul {
  list-style: none;
  padding: 0;
}

.backdrop_a8a3 li,
.overlay-ece8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.warm_21a0 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .warm_21a0 {
    grid-template-columns: 1fr;
  }
}

.outline_fresh_ab6e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.center_041e {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.focus_inner_0e75 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.outline_fresh_ab6e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.outline_fresh_ab6e ul {
  list-style: none;
  padding: 0;
}

.outline_fresh_ab6e li {
  padding: var(--space-xs) 0;
  color: white;
}

.menu_over_c4ac {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.menu_over_c4ac h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.menu_over_c4ac p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.hidden_4208 {
  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);
}

.first_e9fa {
  font-style: italic;
}

.filter-next-7fea {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.pro_1c4c {
  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;
}

.pro_1c4c h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.pro_1c4c p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.surface-next-7bfa {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.solid_0fe0 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.footer-copper-7230 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.blue_73b5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .blue_73b5 {
    grid-template-columns: 1fr;
  }
}

.row-d39c {
  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);
}

.row-d39c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.row_wide_901e {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.row-d39c h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.row-d39c p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.header_a6a9 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.mini-2b0d {
  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) */
.fast-c214 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer_narrow_368a h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.footer_narrow_368a p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.banner-6b41 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.banner-6b41 li {
  margin-bottom: var(--space-xs);
}

.banner-6b41 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.banner-6b41 a:hover {
  color: white;
}

.lower_827a {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.lower_827a 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);
}

.lower_827a a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.hard_e851 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hard_e851 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.hard_e851 a:hover {
  color: white;
}

.banner_1da3 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .mini-2b0d,
  .fast-c214 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.disabled_c2d9 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.short-76b0 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.hard-b7de {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hard-b7de .middle-b40c {
  color: #4caf50;
  font-size: 0.875rem;
}

.button_plasma_4bc5 {
  list-style: none;
  padding: 0;
}

.button_plasma_4bc5 li {
  margin-bottom: var(--space-xs);
}

.button_plasma_4bc5 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.button_plasma_4bc5 a:hover {
  color: white;
}

.next_fa61 {
  list-style: none;
  padding: 0;
}

.next_fa61 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.next_fa61 a {
  color: #b0b0b0;
  text-decoration: none;
}

.next_fa61 a:hover {
  color: white;
}

.banner_1da3 {
  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);
}

.border_stale_1f8a p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.border_stale_1f8a a {
  color: #4caf50;
  text-decoration: none;
}

.motion_f201 {
  font-size: 0.75rem;
  color: #666666;
}

.wide_9ea8 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.wide_9ea8 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.wide_9ea8 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;
}

.filter_35af {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.filter_35af:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .banner_1da3 {
    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;
  }
  
  .description-action-e3f3 {
    font-size: 2rem;
  }
  
  .form_a1e8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tag-fd79,
  .alert_cold_a4ea {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .advanced-0729,
  .photo_selected_70c9,
  .secondary_fb57,
  .photo_full_f03e,
  .under_47b3,
  .warm_21a0,
  .blue_73b5,
  .mini-2b0d,
  .fast-c214 {
    grid-template-columns: 1fr;
  }
  
  .bright-3b45 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .frame_3e22 {
    padding: var(--space-lg) 0;
  }
  
  .middle-e7dc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .middle-e7dc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .gas-544a {
    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;
  }
  
  .bright-3b45 {
    grid-template-columns: 1fr;
  }
  
  .grid_1e06,
  .surface-next-7bfa,
  .gas_8c9f {
    flex-direction: column;
    width: 100%;
  }
  
  .highlight-up-6ced,
  .yellow-6b3e,
  .grid_1e06 .gas-544a,
  .surface-next-7bfa .gas-544a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .description-action-e3f3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .form_a1e8 {
    font-size: 1.375rem;
  }
  
  .hidden_e730 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wood-6ad3,
  .prev-71b4,
  .carousel_bc11,
  .pagination-fresh-70fc,
  .accordion-b3c7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .smooth_93b3 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .title-silver-c213 {
    gap: var(--space-xs);
  }
  
  .menu-silver-f7cc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .overlay-6109 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .gradient_b821 {
    width: 150px;
    height: 150px;
  }
  
  .north-aa28 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hero_a21e,
  .huge_c206,
  .grid_1e06,
  .pro_1c4c,
  .solid_0fe0,
  .header_a6a9,
  .chip-warm-cd85 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .frame_3e22 {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.search-5c8a {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 62ca */
.ghost-box-h3 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.2;
}
