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

.left_a780:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.focus_bottom_42f3,
header,
.popup-warm-3e59,
.picture-middle-d20d,
.avatar-fresh-6ae7,
.detail_action_3de3,
.stale-1a6a,
.focus_89d9,
.nav-3479 {
  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
   ============================================ */
.focus_bottom_42f3 {
  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);
}

.photo-1ee2 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.alert_8676 {
  flex: 1;
}

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

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

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

.silver_5480.fn-active-9c04 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.label-white-08f0 {
  position: relative;
}

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

.background-727b svg {
  transition: transform 0.2s ease;
}

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

.left-0e4b {
  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;
}

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

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

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

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

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

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

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

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

.element_fast_1641 svg {
  flex-shrink: 0;
}

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

.layout-purple-c275: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);
}

.layout-purple-c275 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .alert_8676 {
    display: none;
  }
  
  .light_10a1 {
    display: flex;
  }
  
  .media_4d4b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .element_fast_1641,
  .layout-purple-c275 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .label-white-08f0 {
    position: relative;
  }
  
  .left-0e4b {
    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;
  }
  
  .background-727b[aria-expanded="true"] + .left-0e4b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .item_pink_9062 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .breadcrumb_hard_db17 {
    gap: 8px;
  }
  
  .element_fast_1641 {
    display: none;
  }
  
  .layout-purple-c275 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .video_easy_4e10 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.background-tiny-9739 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.background-tiny-9739 svg {
  flex-shrink: 0;
}

.background-tiny-9739 a {
  color: var(--color-primary);
  text-decoration: none;
}

.background-tiny-9739 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.short-cdf1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.accent-north-4c9e {
  display: flex;
  gap: var(--space-sm);
}

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

.button-79e6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.button-79e6 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.backdrop-right-1f41 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pressed-ce96 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .element_basic_45b9 {
    grid-template-columns: 1fr;
  }
  
  .border_bb1c {
    font-size: 1.75rem;
  }
  
  .backdrop-right-1f41 {
    order: -1;
    max-width: 100%;
  }
  
  .pressed-ce96 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border_bb1c {
    font-size: 1.5rem;
  }
  
  .banner_fluid_42f7 {
    font-size: 1rem;
  }
  
  .short-cdf1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .pressed-ce96 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.item-left-4d79 {
  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;
}

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

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

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

.light-2eba:hover {
  background: var(--color-primary);
  color: white;
}

.description-upper-396b {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.description-upper-396b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.disabled-small-2fd7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.slider-0d51 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

.hidden-bright-59d2 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hidden-bright-59d2 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hidden-bright-59d2 pre,
.hidden-bright-59d2 code {
  overflow-x: auto;
  max-width: 100%;
}

.hidden-bright-59d2 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);
}

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

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

.hidden-bright-59d2 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.hidden-bright-59d2 ul,
.hidden-bright-59d2 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.hidden-bright-59d2 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.hidden-bright-59d2 strong {
  font-weight: 600;
  color: var(--color-text);
}

.hidden-bright-59d2 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.hidden-bright-59d2 a:hover {
  color: var(--color-primary-dark);
}

.article-red-5bf8 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.article-red-5bf8 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) {
  .chip-orange-8cd0 {
    grid-template-columns: 1fr;
  }
  
  .steel-7be0 {
    font-size: 1.75rem;
  }
  
  .hidden-bright-59d2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .steel-7be0 {
    font-size: 1.5rem;
  }
  
  .hidden-bright-59d2 h3 {
    font-size: 1.375rem;
  }
  
  .hidden-bright-59d2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.lite-d9cd {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.active_0fc5 {
  flex-shrink: 0;
}

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

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

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

.blue-d6a5,
.button-41e8,
.fixed_9ef9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blue-d6a5 thead,
.button-41e8 thead {
  background: var(--color-primary);
  color: white;
}

.blue-d6a5 th,
.blue-d6a5 td,
.button-41e8 th,
.button-41e8 td,
.fixed_9ef9 th,
.fixed_9ef9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .blue-d6a5 th,
  .blue-d6a5 td,
  .button-41e8 th,
  .button-41e8 td,
  .fixed_9ef9 th,
  .fixed_9ef9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .blue-d6a5,
  .button-41e8,
  .fixed_9ef9 {
    min-width: 600px;
  }
}

.blue-d6a5 th,
.button-41e8 th,
.fixed_9ef9 th {
  font-weight: 600;
}

.blue-d6a5 tbody tr:hover,
.button-41e8 tbody tr:hover,
.fixed_9ef9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.detail-b10d h4 {
  color: white;
}

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

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

.grid-d9e0:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.center-13ed {
  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);
}

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

.mask-complex-db93 {
  font-weight: 600;
  color: white;
}

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

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

.action-5ee3 {
  color: #4caf50;
}

.summary-narrow-3762 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-7e21 .item-left-4d79 {
  width: 100%;
  background: white;
}

.tall_de2f .item-left-4d79 {
  color: #667eea;
}

.tiny_ad3a .item-left-4d79 {
  color: #f5576c;
}

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

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

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

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

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

.row-lite-163b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .heading_372b {
    padding: var(--space-md);
  }
  
  .row-lite-163b {
    padding: var(--space-md);
  }
  
  .button-6620 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.shade-3d48 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.text_down_82a8,
.north_3f0e,
.accordion_pressed_5b14,
.backdrop_b647 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-5d5d {
  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);
}

.outline-7368 .banner-5d5d {
  background: #e8f5e9;
  color: var(--color-success);
}

.hidden_west_b37d .banner-5d5d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.component-light-7fa5 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.video-thick-180c {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.text-mini-3e53 {
  text-align: center;
}

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

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

.module_wood_f9fa .mask-complex-db93 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stale-1b0c {
  border: 2px solid #4caf50;
}

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

.brown-6f91 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.search_rough_ff56 {
  text-align: right;
}

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

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

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

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

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

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

.copper-479a {
  background: #e8f5e9;
  color: #2e7d32;
}

.element-solid-4da5 {
  background: #e3f2fd;
  color: #1565c0;
}

.list-dirty-b6d3 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.label-5c97 {
  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-5c97:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

.footer-old-13e8 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

.shade-green-2716 {
  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);
}

.shade-green-2716:hover {
  background: var(--color-bg-alt);
}

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

.shade-green-2716[aria-expanded="true"] .alert-bebc {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.wide-a689,
.static-44ff {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.wide-a689 h4,
.static-44ff h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.wide-a689 ul,
.static-44ff ul {
  list-style: none;
  padding: 0;
}

.wide-a689 li,
.static-44ff li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.element-small-b829 {
  font-style: italic;
}

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

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

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

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

.search-hot-0a06 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.motion-8f91 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.north_26f4 a:hover {
  color: white;
}

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

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

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

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

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

.paper_9f18 a:hover {
  color: white;
}

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

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

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

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

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

.feature-wide-8385 .accent-north-4c9e {
  color: #4caf50;
  font-size: 0.875rem;
}

.paragraph-ecb9 {
  list-style: none;
  padding: 0;
}

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

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

.paragraph-ecb9 a:hover {
  color: white;
}

.center-9ac5 {
  list-style: none;
  padding: 0;
}

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

.center-9ac5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.center-9ac5 a:hover {
  color: white;
}

.south-9cfa {
  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);
}

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

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

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

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

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

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

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

.silver-9a75:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .south-9cfa {
    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;
  }
  
  .border_bb1c {
    font-size: 2rem;
  }
  
  .steel-7be0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .element_basic_45b9,
  .chip-orange-8cd0 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .row-1c56,
  .small_b1f4,
  .accent-west-0034,
  .primary-b2c8,
  .table-d0b5,
  .middle-60c6,
  .first_4b4f,
  .modal-c4e9,
  .frame-6935 {
    grid-template-columns: 1fr;
  }
  
  .tertiary-pressed-c2d3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .stale-1a6a {
    padding: var(--space-lg) 0;
  }
  
  .alert_bronze_ab99 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .alert_bronze_ab99 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .item-left-4d79 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .tertiary-pressed-c2d3 {
    grid-template-columns: 1fr;
  }
  
  .info-a60b,
  .search-hot-0a06,
  .hard-89ee {
    flex-direction: column;
    width: 100%;
  }
  
  .stone_42d8,
  .modal_a72b,
  .info-a60b .item-left-4d79,
  .search-hot-0a06 .item-left-4d79 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border_bb1c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .steel-7be0 {
    font-size: 1.375rem;
  }
  
  .liquid-5b7f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .form_complex_bc78,
  .media_05aa,
  .inner-edbe,
  .accordion_down_2a1f,
  .secondary_b35f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .component_advanced_4583 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .first-b58f {
    gap: var(--space-xs);
  }
  
  .background-tiny-9739 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .center-13ed {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .module_wood_f9fa {
    width: 150px;
    height: 150px;
  }
  
  .out_4492 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focus_bottom_42f3,
  .popup-warm-3e59,
  .info-a60b,
  .popup_liquid_9a6c,
  .focus_89d9,
  .nav-3479,
  .light_10a1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .stale-1a6a {
    page-break-inside: avoid;
  }
}

/* css-noise: a856 */
.widget-item-y5 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.2;
}
