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

.backdrop-green-b7df:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tiny_f0e4,
header,
.inner_d46d,
.hero-230a,
.gold_72f6,
.detail-3843,
.smooth-bc9e,
.highlight-old-7d8e,
.frame-4e62 {
  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
   ============================================ */
.tiny_f0e4 {
  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);
}

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

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

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

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

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

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

.row-dim-e0d0 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.gradient-left-6f48 {
  flex: 1;
}

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

.feature-94b8 {
  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);
}

.feature-94b8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.feature-94b8.fn-active-5420 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.message-active-f634 {
  position: relative;
}

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

.surface-silver-8e9b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

/* Header Login Button */
.summary-cool-9d72 {
  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;
}

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

.summary-cool-9d72 svg {
  flex-shrink: 0;
}

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

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

.east_6d20 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .gradient-left-6f48 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .gradient-left-6f48::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gradient-left-6f48.hover_prev_794b {
    display: block;
    right: 0;
  }
  
  .blue-ee7e {
    flex-direction: column;
    gap: 0;
  }
  
  .feature-94b8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gradient-left-6f48::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .gradient-left-6f48.hover_prev_794b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gradient-left-6f48 {
    display: none;
  }
  
  .article_liquid_2e00 {
    display: flex;
  }
  
  .row-dim-e0d0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .summary-cool-9d72,
  .east_6d20 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .message-active-f634 {
    position: relative;
  }
  
  .pink_652d {
    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;
  }
  
  .surface-silver-8e9b[aria-expanded="true"] + .pink_652d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .complex_fc62 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .form_gas_6c39 {
    gap: 8px;
  }
  
  .summary-cool-9d72 {
    display: none;
  }
  
  .east_6d20 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown_46ec img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.label_glass_11cc svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.popup-edba a:hover {
  text-decoration: underline;
}

.tabs-huge-31a5 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.backdrop-first-2cb6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

.status-liquid-768a {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .detail-tiny-33a7 {
    grid-template-columns: 1fr;
  }
  
  .pattern_gas_5938 {
    font-size: 1.75rem;
  }
  
  .backdrop-first-2cb6 {
    order: -1;
    max-width: 100%;
  }
  
  .static_393c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pattern_gas_5938 {
    font-size: 1.5rem;
  }
  
  .accordion_4690 {
    font-size: 1rem;
  }
  
  .popup-edba {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .static_393c {
    max-width: 250px;
  }
}

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

.link-dark-9fef {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.border-outer-8ccc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.item-left-2f2e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.gradient-6f88 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.gradient-6f88 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);
}

.gradient-6f88 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;
}

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

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

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

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

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

.disabled-47c2 {
  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);
}

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

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

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

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

.status-949a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.status-949a 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);
}

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

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

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

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

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

.status-949a strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

.breadcrumb_steel_1673 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) {
  .complex_9f98 {
    grid-template-columns: 1fr;
  }
  
  .disabled-47c2 {
    font-size: 1.75rem;
  }
  
  .status-949a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .disabled-47c2 {
    font-size: 1.5rem;
  }
  
  .status-949a h3 {
    font-size: 1.375rem;
  }
  
  .status-949a h4 {
    font-size: 1.125rem;
  }
}

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

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

.shadow-77e4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.pagination-59a7 {
  flex-shrink: 0;
}

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

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

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

.green_657c,
.notification-up-8d8b,
.outline-old-dfe0 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.green_657c thead,
.notification-up-8d8b thead {
  background: var(--color-primary);
  color: white;
}

.green_657c th,
.green_657c td,
.notification-up-8d8b th,
.notification-up-8d8b td,
.outline-old-dfe0 th,
.outline-old-dfe0 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .green_657c th,
  .green_657c td,
  .notification-up-8d8b th,
  .notification-up-8d8b td,
  .outline-old-dfe0 th,
  .outline-old-dfe0 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .green_657c,
  .notification-up-8d8b,
  .outline-old-dfe0 {
    min-width: 600px;
  }
}

.green_657c th,
.notification-up-8d8b th,
.outline-old-dfe0 th {
  font-weight: 600;
}

.green_657c tbody tr:hover,
.notification-up-8d8b tbody tr:hover,
.outline-old-dfe0 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.prev_3e46 h4 {
  color: white;
}

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

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

.hot-6d1d:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.component-fixed-5b34 {
  font-weight: 600;
  color: white;
}

.component-lite-38a2 {
  list-style: none;
  padding: 0;
}

.component-lite-38a2 li {
  padding: var(--space-xs) 0;
}

.liquid-3d38 {
  color: #4caf50;
}

.form-bright-beda {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.secondary-0d69 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature_0760 .over-6a9b {
  width: 100%;
  background: white;
}

.search_copper_bd67 .over-6a9b {
  color: #667eea;
}

.progress-white-8e9f .over-6a9b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .glass-b092 {
    padding: var(--space-md);
  }
  
  .border_easy_56da {
    padding: var(--space-md);
  }
  
  .sidebar_gold_5d03 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.column-current-8803,
.list_6c38,
.alert-d737,
.accordion_light_c5c3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.filter-pressed-3c9c {
  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) {
  .filter-pressed-3c9c {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.pagination-solid-3d98 {
  border-color: var(--color-success);
}

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

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

.pagination-solid-3d98 .plasma-d6d4 {
  background: #e8f5e9;
  color: var(--color-success);
}

.label_fd0d .plasma-d6d4 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge_7536 {
  text-align: center;
}

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

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

.over_7943 .component-fixed-5b34 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.primary-122b {
  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;
}

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

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

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

.notice_cd59 {
  text-align: right;
}

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

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

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

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

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

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

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

.hard-c899 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-45f5 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.primary_current_6afd[aria-expanded="true"] .info-45f5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_hovered_c8f5,
.progress-86ec {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.main_hovered_c8f5 h4,
.progress-86ec h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.main_hovered_c8f5 ul,
.progress-86ec ul {
  list-style: none;
  padding: 0;
}

.main_hovered_c8f5 li,
.progress-86ec li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.up-126b {
  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);
}

.alert-bottom-fa29 {
  font-style: italic;
}

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

.info-huge-c653 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-left-a611 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left-a611 li {
  margin-bottom: var(--space-xs);
}

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

.footer-left-a611 a:hover {
  color: white;
}

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

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

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

.steel-9c7a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.steel-9c7a a:hover {
  color: white;
}

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

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

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

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

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

.middle_b6e5 .progress_mini_9e7d {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.under_8d69 a:hover {
  color: white;
}

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

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

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

.primary_copper_5008 a:hover {
  color: white;
}

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

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

.north-15da a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.pattern-2f5f 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;
}

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

.bottom-ab7d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .primary_orange_7510 {
    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;
  }
  
  .pattern_gas_5938 {
    font-size: 2rem;
  }
  
  .disabled-47c2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .detail-tiny-33a7,
  .complex_9f98 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .article_2202,
  .yellow-a1e8,
  .form-e0a8,
  .message-eb4b,
  .feature-e010,
  .mini_34dc,
  .preview_7f2e,
  .detail-b143,
  .iron_82cf {
    grid-template-columns: 1fr;
  }
  
  .bottom_40c6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .smooth-bc9e {
    padding: var(--space-lg) 0;
  }
  
  .gradient-6f88 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gradient-6f88 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .over-6a9b {
    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;
  }
  
  .bottom_40c6 {
    grid-template-columns: 1fr;
  }
  
  .gradient_bottom_f83a,
  .picture-narrow-4846,
  .container-a479 {
    flex-direction: column;
    width: 100%;
  }
  
  .module_5316,
  .slider_west_d5f7,
  .gradient_bottom_f83a .over-6a9b,
  .picture-narrow-4846 .over-6a9b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pattern_gas_5938 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .disabled-47c2 {
    font-size: 1.375rem;
  }
  
  .fresh_bb68 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .border-outer-8ccc,
  .pressed_0e45,
  .picture_old_9c9f,
  .article-8462,
  .center_771e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .filter-pressed-3c9c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .pattern-00ee {
    gap: var(--space-xs);
  }
  
  .label_glass_11cc {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .frame_gas_3be1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .over_7943 {
    width: 150px;
    height: 150px;
  }
  
  .sidebar_bacb {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tiny_f0e4,
  .inner_d46d,
  .gradient_bottom_f83a,
  .info-huge-c653,
  .highlight-old-7d8e,
  .frame-4e62,
  .article_liquid_2e00 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .smooth-bc9e {
    page-break-inside: avoid;
  }
}

/* css-noise: e7c6 */
.shadow-element-v8 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
