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

.slow-c4d0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.menu_7687,
header,
.accordion-active-9095,
.north-1739,
.focused-9376,
.hover-stone-fd2c,
.section-pressed-514e,
.bronze-2775,
.sidebar-gas-2800 {
  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
   ============================================ */
.menu_7687 {
  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);
}

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

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

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

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

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

.bright-3049 img {
  height: 36px;
  width: auto;
  display: block;
}

.content-0dd9 {
  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;
}

.outline-dd7d {
  flex: 1;
}

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

.label-fresh-49aa {
  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);
}

.label-fresh-49aa:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.label-fresh-49aa.fn-active-d50b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.hero-easy-e3ef {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.over_f16e svg {
  flex-shrink: 0;
}

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

.main-iron-c10f: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);
}

.main-iron-c10f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .outline-dd7d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .outline-dd7d.list-inner-c132 {
    display: block;
    right: 0;
  }
  
  .chip-84b6 {
    flex-direction: column;
    gap: 0;
  }
  
  .label-fresh-49aa {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .outline-dd7d::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;
  }
  
  .outline-dd7d.list-inner-c132::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .outline-dd7d {
    display: none;
  }
  
  .tooltip_b6f0 {
    display: flex;
  }
  
  .content-0dd9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .over_f16e,
  .main-iron-c10f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hero-easy-e3ef {
    position: relative;
  }
  
  .form_e2b0 {
    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;
  }
  
  .down_f215[aria-expanded="true"] + .form_e2b0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shade-6a9c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .progress_bottom_ee22 {
    gap: 8px;
  }
  
  .over_f16e {
    display: none;
  }
  
  .main-iron-c10f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .bright-3049 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.layout-52f2 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.layout-52f2 svg {
  flex-shrink: 0;
}

.layout-52f2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.layout-52f2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.hovered-378a {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.pattern-current-4476 {
  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;
}

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

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

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

.header-motion-42ca {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.alert-last-249f {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .selected-c4fd {
    grid-template-columns: 1fr;
  }
  
  .liquid_f87e {
    font-size: 1.75rem;
  }
  
  .narrow_0a6e {
    order: -1;
    max-width: 100%;
  }
  
  .alert-last-249f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .liquid_f87e {
    font-size: 1.5rem;
  }
  
  .grid-8120 {
    font-size: 1rem;
  }
  
  .pressed_f4f0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .alert-last-249f {
    max-width: 250px;
  }
}

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

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

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

.slider-wood-92a8 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.slider-wood-92a8:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.shade-center-f902 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bronze-5037 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.section-pressed-514e {
  padding: var(--space-xxl) 0;
}

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

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

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

.breadcrumb-over-ee5e {
  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);
}

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

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

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

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

.container-warm-b77c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container-warm-b77c 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);
}

.container-warm-b77c h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

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

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

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

.container-warm-b77c strong {
  font-weight: 600;
  color: var(--color-text);
}

.container-warm-b77c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.container-warm-b77c a:hover {
  color: var(--color-primary-dark);
}

.main-next-3fa7 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.main-next-3fa7 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) {
  .active-short-064f {
    grid-template-columns: 1fr;
  }
  
  .breadcrumb-over-ee5e {
    font-size: 1.75rem;
  }
  
  .container-warm-b77c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumb-over-ee5e {
    font-size: 1.5rem;
  }
  
  .container-warm-b77c h3 {
    font-size: 1.375rem;
  }
  
  .container-warm-b77c h4 {
    font-size: 1.125rem;
  }
}

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

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

.tabs-blue-a52f {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.layout-8486 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.footer_70e0 {
  flex-shrink: 0;
}

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

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

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

.complex-9a63,
.large_1294,
.short-8479 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.complex-9a63 thead,
.large_1294 thead {
  background: var(--color-primary);
  color: white;
}

.complex-9a63 th,
.complex-9a63 td,
.large_1294 th,
.large_1294 td,
.short-8479 th,
.short-8479 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .complex-9a63 th,
  .complex-9a63 td,
  .large_1294 th,
  .large_1294 td,
  .short-8479 th,
  .short-8479 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .complex-9a63,
  .large_1294,
  .short-8479 {
    min-width: 600px;
  }
}

.complex-9a63 th,
.large_1294 th,
.short-8479 th {
  font-weight: 600;
}

.complex-9a63 tbody tr:hover,
.large_1294 tbody tr:hover,
.short-8479 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.surface-9403 h4 {
  color: white;
}

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

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

.gradient-orange-c710:last-child {
  border-bottom: none;
}

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

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

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

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

.widget-small-e89a:hover {
  text-decoration: underline;
}

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

.card-dynamic-4911 {
  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);
}

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

.detail-8b0c {
  font-weight: 600;
  color: white;
}

.blue-11df {
  list-style: none;
  padding: 0;
}

.blue-11df li {
  padding: var(--space-xs) 0;
}

.texture-tiny-3602 {
  color: #4caf50;
}

.plasma-a429 {
  color: #ff9800;
}

.module-upper-6c83 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-8b0c {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .banner-glass-2a75 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.label-73a1 .soft-40b0 {
  width: 100%;
  background: white;
}

.carousel-advanced-820f .soft-40b0 {
  color: #667eea;
}

.nav_dim_d6c3 .soft-40b0 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .brown_2422 {
    padding: var(--space-md);
  }
  
  .item-ba46 {
    padding: var(--space-md);
  }
  
  .smooth-67c5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.surface_mini_b0cf,
.dim_7bcc,
.message_full_7582,
.column-last-422a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.silver-e086 {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

@media (max-width: 480px) {
  .silver-e086 {
    font-size: 0.625rem;
  }
}

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

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

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

.frame-over-3584 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.card-first-a6f3 {
  border-color: var(--color-success);
}

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

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

.card-first-a6f3 .action-6520 {
  background: #e8f5e9;
  color: var(--color-success);
}

.backdrop_old_b39e .action-6520 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel_1d5f {
  text-align: center;
}

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

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

.block_aca3 .detail-8b0c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.active-6b1c {
  margin-bottom: var(--space-xl);
}

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

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

.preview-simple-d601 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.main-old-6399 {
  border: 2px solid #4caf50;
}

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

.easy-3ab0 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.info_next_28c8 {
  text-align: right;
}

.info_next_28c8 .filter-small-c0d3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.item-bright-768b {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.border-west-5c46 {
  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);
}

.border-west-5c46:hover {
  background: var(--color-bg-alt);
}

.slow-3c23 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.border-west-5c46[aria-expanded="true"] .slow-3c23 {
  transform: rotate(180deg);
}

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

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

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

.element-9e55 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.focus-advanced-05e5 {
  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);
}

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

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

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

.hot-33e4,
.accent_aacc {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.hot-33e4 h4,
.accent_aacc h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hot-33e4 ul,
.accent_aacc ul {
  list-style: none;
  padding: 0;
}

.hot-33e4 li,
.accent_aacc li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.focus-6a9e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.border-38b6 {
  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);
}

.footer-dynamic-5539 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.link-lite-24fd {
  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);
}

.link-lite-24fd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.link-lite-24fd p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.popup-adcf a:hover {
  color: white;
}

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

.south-4a52 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);
}

.south-4a52 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.surface_lower_d9f5 a:hover {
  color: white;
}

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

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

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

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

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

.dynamic-1af8 .shade-f31b {
  color: #4caf50;
  font-size: 0.875rem;
}

.menu-cold-a8b9 {
  list-style: none;
  padding: 0;
}

.menu-cold-a8b9 li {
  margin-bottom: var(--space-xs);
}

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

.menu-cold-a8b9 a:hover {
  color: white;
}

.plasma-f5f3 {
  list-style: none;
  padding: 0;
}

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

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

.plasma-f5f3 a:hover {
  color: white;
}

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

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

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

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

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

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

.texture-slow-1819 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;
}

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

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

@media (max-width: 768px) {
  .label_51f3 {
    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;
  }
  
  .liquid_f87e {
    font-size: 2rem;
  }
  
  .breadcrumb-over-ee5e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .selected-c4fd,
  .active-short-064f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block_short_397e,
  .main_0be9,
  .banner-glass-2a75,
  .blue_4c86,
  .tooltip_smooth_c4ab,
  .box_94ec,
  .hero_prev_98c3,
  .gradient_fc06,
  .plasma_7462 {
    grid-template-columns: 1fr;
  }
  
  .logo_cool_9eb5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .section-pressed-514e {
    padding: var(--space-lg) 0;
  }
  
  .bronze-5037 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .bronze-5037 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .soft-40b0 {
    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;
  }
  
  .logo_cool_9eb5 {
    grid-template-columns: 1fr;
  }
  
  .header-motion-42ca,
  .outer_ddd0,
  .disabled_b6f6 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade-center-f902,
  .center_581b,
  .header-motion-42ca .soft-40b0,
  .outer_ddd0 .soft-40b0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .liquid_f87e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .breadcrumb-over-ee5e {
    font-size: 1.375rem;
  }
  
  .item_silver_4c23 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .plasma-6b6f,
  .badge_4cf7,
  .active-top-63b3,
  .short-4103,
  .video_out_f1fd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .silver-e086 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .under-a57f {
    gap: var(--space-xs);
  }
  
  .layout-52f2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .card-dynamic-4911 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .block_aca3 {
    width: 150px;
    height: 150px;
  }
  
  .panel-f294 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .menu_7687,
  .accordion-active-9095,
  .header-motion-42ca,
  .outer-e806,
  .bronze-2775,
  .sidebar-gas-2800,
  .tooltip_b6f0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .section-pressed-514e {
    page-break-inside: avoid;
  }
}

/* css-noise: 9ef7 */
.promo-block-i1 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.2;
}
