/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.glass-60c7 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.glass-60c7:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.narrow_5b78,
header,
.lower-df7b,
.glass-7284,
.sidebar_middle_544e,
.black_f5c5,
.label_solid_0b00,
.backdrop-37a5,
.caption-97e1 {
  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
   ============================================ */
.narrow_5b78 {
  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);
}

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

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

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

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

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

.basic-3010 img {
  height: 36px;
  width: auto;
  display: block;
}

.fluid-850c {
  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;
}

.current-9cd8 {
  flex: 1;
}

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

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

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

.action_a212.fn-active-08e9 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.feature-bc63 {
  position: relative;
}

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

.texture-2e2e svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.card_bottom_3f2a svg {
  flex-shrink: 0;
}

/* Header Download Button */
.column-top-c29c {
  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;
}

.column-top-c29c: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);
}

.column-top-c29c svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .current-9cd8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .current-9cd8.fresh_f37d {
    display: block;
    right: 0;
  }
  
  .main_0b17 {
    flex-direction: column;
    gap: 0;
  }
  
  .action_a212 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .current-9cd8::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;
  }
  
  .current-9cd8.fresh_f37d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .current-9cd8 {
    display: none;
  }
  
  .tooltip_down_3cee {
    display: flex;
  }
  
  .fluid-850c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .card_bottom_3f2a,
  .column-top-c29c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .feature-bc63 {
    position: relative;
  }
  
  .banner_959d {
    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;
  }
  
  .texture-2e2e[aria-expanded="true"] + .banner_959d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast-4c6a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .backdrop-86c7 {
    gap: 8px;
  }
  
  .card_bottom_3f2a {
    display: none;
  }
  
  .column-top-c29c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .basic-3010 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .column-top-c29c {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .column-top-c29c svg {
    width: 14px;
    height: 14px;
  }
  
  .photo_c554 {
    gap: var(--space-sm);
  }
}

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

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

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

.widget_yellow_0db3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.under-7bb5 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.main-under-65fd {
  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;
}

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

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

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

.wrapper-6f5b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.status-white-afc9 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.accent-bronze-4ae2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .out-24eb {
    grid-template-columns: 1fr;
  }
  
  .tiny_d4e8 {
    font-size: 1.75rem;
  }
  
  .status-white-afc9 {
    order: -1;
    max-width: 100%;
  }
  
  .overlay_3cdf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tiny_d4e8 {
    font-size: 1.5rem;
  }
  
  .hero-16e2 {
    font-size: 1rem;
  }
  
  .input_outer_9941 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .overlay_3cdf {
    max-width: 250px;
  }
}

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

.chip-full-0c76 {
  background: var(--color-primary);
  color: white;
}

.chip-full-0c76:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.item-4f0d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.gas-9c40 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.active-66a5 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.active-66a5 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);
}

.active-66a5 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;
}

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

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

.current-77d1 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.message-up-feef img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.message-up-feef 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);
}

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

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

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

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

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

.message-up-feef strong {
  font-weight: 600;
  color: var(--color-text);
}

.message-up-feef a {
  color: var(--color-primary);
  text-decoration: underline;
}

.message-up-feef a:hover {
  color: var(--color-primary-dark);
}

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

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

.thumbnail-1544 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-huge-8b0b {
    grid-template-columns: 1fr;
  }
  
  .menu_bottom_a256 {
    font-size: 1.75rem;
  }
  
  .message-up-feef {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .menu_bottom_a256 {
    font-size: 1.5rem;
  }
  
  .message-up-feef h3 {
    font-size: 1.375rem;
  }
  
  .message-up-feef h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.rough_db5f {
  flex-shrink: 0;
}

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

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

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

.text_743c,
.upper_712d,
.caption-pressed-f065 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.text_743c thead,
.upper_712d thead {
  background: var(--color-primary);
  color: white;
}

.text_743c th,
.text_743c td,
.upper_712d th,
.upper_712d td,
.caption-pressed-f065 th,
.caption-pressed-f065 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .text_743c th,
  .text_743c td,
  .upper_712d th,
  .upper_712d td,
  .caption-pressed-f065 th,
  .caption-pressed-f065 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .text_743c,
  .upper_712d,
  .caption-pressed-f065 {
    min-width: 600px;
  }
}

.text_743c th,
.upper_712d th,
.caption-pressed-f065 th {
  font-weight: 600;
}

.text_743c tbody tr:hover,
.upper_712d tbody tr:hover,
.caption-pressed-f065 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.grid-focused-277d {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.primary_8103 h4 {
  color: white;
}

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

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

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

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

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

.video-fresh-1d27 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

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

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

.paper-62ae {
  font-weight: 600;
  color: white;
}

.input-south-6dc7 {
  list-style: none;
  padding: 0;
}

.input-south-6dc7 li {
  padding: var(--space-xs) 0;
}

.active-6953 {
  color: #4caf50;
}

.left-28b0 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_e07e .basic-e904 {
  width: 100%;
  background: white;
}

.inner_6249 .basic-e904 {
  color: #667eea;
}

.content-9313 .basic-e904 {
  color: #f5576c;
}

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

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

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

.notice-2d56 {
  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-hard-f4e4 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .container-hard-f4e4 {
    padding: var(--space-md);
  }
  
  .lower_823d {
    padding: var(--space-md);
  }
  
  .aside_action_63b3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.notice-medium-b9fd,
.progress_static_a535,
.tooltip-tall-c619,
.action-b9b8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .highlight-fresh-65ea {
    grid-template-columns: 1fr;
  }
}

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

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

.layout-bottom-ba81 {
  border-color: var(--color-warning);
}

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

.tall-b165 .image_b39f {
  background: #e8f5e9;
  color: var(--color-success);
}

.layout-bottom-ba81 .image_b39f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.sidebar-303d {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.over_6bd1 {
  text-align: center;
}

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

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

.box-daee .paper-62ae {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.alert-027f {
  margin-bottom: var(--space-xl);
}

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

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

.modal-6dd0 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.action-6a59 {
  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;
}

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

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

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

.box_14f3 {
  text-align: right;
}

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

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

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

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

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

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

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

.tag-cold-6dd0 {
  background: #e3f2fd;
  color: #1565c0;
}

.breadcrumb-yellow-2c30 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-black-1773 {
  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);
}

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

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

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

.modal_d1d8,
.avatar-fixed-7dc8 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.modal_d1d8 h4,
.avatar-fixed-7dc8 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.modal_d1d8 ul,
.avatar-fixed-7dc8 ul {
  list-style: none;
  padding: 0;
}

.modal_d1d8 li,
.avatar-fixed-7dc8 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.form_6c23 {
  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_6c23 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.tooltip-up-4d4e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.video-prev-db41 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.notice-d9c5 a:hover {
  color: white;
}

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

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

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

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

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

.paragraph_lower_d545 a:hover {
  color: white;
}

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

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

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

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

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

.blue-ff66 .active_0c31 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.medium_8f32 a:hover {
  color: white;
}

.tertiary-fixed-498f {
  list-style: none;
  padding: 0;
}

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

.tertiary-fixed-498f a {
  color: #b0b0b0;
  text-decoration: none;
}

.tertiary-fixed-498f a:hover {
  color: white;
}

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

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

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

.chip-tall-7a35 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.panel-center-ed86:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .disabled_dim_0c19 {
    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;
  }
  
  .tiny_d4e8 {
    font-size: 2rem;
  }
  
  .menu_bottom_a256 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .out-24eb,
  .alert-huge-8b0b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent_pink_de37,
  .highlight-fresh-65ea,
  .logo_warm_02ab,
  .background-18e4,
  .aside-ff0e,
  .form_6c23,
  .dropdown-3e43,
  .yellow_954f,
  .column-b33f {
    grid-template-columns: 1fr;
  }
  
  .basic_d64d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .label_solid_0b00 {
    padding: var(--space-lg) 0;
  }
  
  .active-66a5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .active-66a5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .basic-e904 {
    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;
  }
  
  .basic_d64d {
    grid-template-columns: 1fr;
  }
  
  .wrapper-6f5b,
  .picture_b62b,
  .gas-727e {
    flex-direction: column;
    width: 100%;
  }
  
  .gas-9c40,
  .tabs_copper_239f,
  .wrapper-6f5b .basic-e904,
  .picture_b62b .basic-e904 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tiny_d4e8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .menu_bottom_a256 {
    font-size: 1.375rem;
  }
  
  .tooltip_static_2766 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .element_8aed,
  .link_4789,
  .status-next-372e,
  .down_b79c,
  .preview_motion_ccfa {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .warm-0d2f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .iron-f65b {
    gap: var(--space-xs);
  }
  
  .widget_yellow_0db3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .column_c501 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .box-daee {
    width: 150px;
    height: 150px;
  }
  
  .left_6a86 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .narrow_5b78,
  .lower-df7b,
  .wrapper-6f5b,
  .accordion_fc25,
  .backdrop-37a5,
  .caption-97e1,
  .tooltip_down_3cee {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .label_solid_0b00 {
    page-break-inside: avoid;
  }
}

/* css-noise: c574 */
.ghost-box-h4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
