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

.pattern-over-e204:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.texture_liquid_e85e,
header,
.column_west_74f4,
.icon-new-e951,
.texture-brown-0711,
.active_bcef,
.narrow_de5e,
.warm_05ee,
.fixed_2c88 {
  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
   ============================================ */
.texture_liquid_e85e {
  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);
}

.carousel-first-8a75 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.mini-abf7 img {
  height: 36px;
  width: auto;
  display: block;
}

.media-stale-e3c8 {
  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;
}

.cold-db69 {
  flex: 1;
}

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

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

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

.heading_fixed_c3f5.fn-active-63f4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.aside-b764 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.link-prev-e53f svg {
  flex-shrink: 0;
}

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

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

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

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

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

.video-last-3fc2 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.thumbnail_52af[aria-expanded="true"] .video-last-3fc2:nth-child(2) {
  opacity: 0;
}

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

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

  .cold-db69::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .cold-db69.sort-iron-eb94 {
    display: block;
    right: 0;
  }
  
  .tall-e077 {
    flex-direction: column;
    gap: 0;
  }
  
  .heading_fixed_c3f5 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .cold-db69::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;
  }
  
  .cold-db69.sort-iron-eb94::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .cold-db69 {
    display: none;
  }
  
  .thumbnail_52af {
    display: flex;
  }
  
  .media-stale-e3c8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .link-prev-e53f,
  .heading-8884 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside-b764 {
    position: relative;
  }
  
  .selected-a1d3 {
    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;
  }
  
  .menu_5bea[aria-expanded="true"] + .selected-a1d3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .backdrop_b271 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tag-hovered-1572 {
    gap: 8px;
  }
  
  .link-prev-e53f {
    display: none;
  }
  
  .heading-8884 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mini-abf7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.tag_right_a44a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-2ddc {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.current-6e76 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .layout_fa82 {
    grid-template-columns: 1fr;
  }
  
  .column_pressed_2470 {
    font-size: 1.75rem;
  }
  
  .advanced-8599 {
    order: -1;
    max-width: 100%;
  }
  
  .current-6e76 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column_pressed_2470 {
    font-size: 1.5rem;
  }
  
  .card-in-0579 {
    font-size: 1rem;
  }
  
  .slider_down_8514 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .current-6e76 {
    max-width: 250px;
  }
}

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

.dirty-641a {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.dropdown-red-7e70 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_lite_3ede li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.gradient_lite_3ede li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

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

.over-448b {
  background: var(--color-bg-section);
}

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

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

.caption-advanced-0c65 {
  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);
}

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

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

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

.logo-stone-1ad1 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.logo-stone-1ad1 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.logo-stone-1ad1 pre,
.logo-stone-1ad1 code {
  overflow-x: auto;
  max-width: 100%;
}

.logo-stone-1ad1 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);
}

.logo-stone-1ad1 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

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

.logo-stone-1ad1 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.logo-stone-1ad1 ul,
.logo-stone-1ad1 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.logo-stone-1ad1 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.logo-stone-1ad1 strong {
  font-weight: 600;
  color: var(--color-text);
}

.logo-stone-1ad1 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.logo-stone-1ad1 a:hover {
  color: var(--color-primary-dark);
}

.paragraph-liquid-f1ec {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paragraph-liquid-f1ec 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) {
  .stone-0a74 {
    grid-template-columns: 1fr;
  }
  
  .caption-advanced-0c65 {
    font-size: 1.75rem;
  }
  
  .logo-stone-1ad1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .caption-advanced-0c65 {
    font-size: 1.5rem;
  }
  
  .logo-stone-1ad1 h3 {
    font-size: 1.375rem;
  }
  
  .logo-stone-1ad1 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.box-over-2f56 {
  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;
}

.tall-ffe0 {
  flex-shrink: 0;
}

.banner-solid-55ea strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.large_f5a9,
.feature-green-eb13,
.article-top-1ffc {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.large_f5a9 thead,
.feature-green-eb13 thead {
  background: var(--color-primary);
  color: white;
}

.large_f5a9 th,
.large_f5a9 td,
.feature-green-eb13 th,
.feature-green-eb13 td,
.article-top-1ffc th,
.article-top-1ffc td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .large_f5a9 th,
  .large_f5a9 td,
  .feature-green-eb13 th,
  .feature-green-eb13 td,
  .article-top-1ffc th,
  .article-top-1ffc td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .large_f5a9,
  .feature-green-eb13,
  .article-top-1ffc {
    min-width: 600px;
  }
}

.large_f5a9 th,
.feature-green-eb13 th,
.article-top-1ffc th {
  font-weight: 600;
}

.large_f5a9 tbody tr:hover,
.feature-green-eb13 tbody tr:hover,
.article-top-1ffc tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.block-slow-4df6 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.button_ccd9 h4 {
  color: white;
}

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

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

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

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

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

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

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

.container-fast-a086:hover {
  text-decoration: underline;
}

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

.focused-653b {
  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);
}

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

.icon_f3db {
  font-weight: 600;
  color: white;
}

.dynamic-ef04 {
  list-style: none;
  padding: 0;
}

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

.mask_a999 {
  color: #4caf50;
}

.silver-764c {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-bright-00a4 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.iron_ca79 .hidden_619a {
  width: 100%;
  background: white;
}

.full-1787 .hidden_619a {
  color: #667eea;
}

.progress_right_5096 .hidden_619a {
  color: #f5576c;
}

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

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

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

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

.down-5b2b h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .down-5b2b {
    padding: var(--space-md);
  }
  
  .tooltip_upper_9d75 {
    padding: var(--space-md);
  }
  
  .header_fixed_351e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.content-cold-bdca li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.table_up_d0e3,
.list_left_65de,
.background-soft-a897,
.left-345b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.grid-motion-fda1:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.glass-cf58 {
  border-color: var(--color-success);
}

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

.filter-pro-0581 {
  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);
}

.glass-cf58 .filter-pro-0581 {
  background: #e8f5e9;
  color: var(--color-success);
}

.summary_glass_b68b .filter-pro-0581 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.table-73a1 {
  margin-top: var(--space-xxl);
}

.hover-silver-7cef {
  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);
}

.shadow_dbb3 {
  text-align: center;
}

.footer-thick-6506 {
  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_narrow_0680 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.footer-thick-6506 .icon_f3db {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .hover-silver-7cef {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-e74d {
  border: 2px solid #4caf50;
}

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

.box-warm-4fe8 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.sidebar_solid_6a6a {
  text-align: right;
}

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

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

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

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

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

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

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

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

.east-c9af {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-3d9b li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.pro-e684,
.under-4fcb {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pro-e684 h4,
.under-4fcb h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pro-e684 ul,
.under-4fcb ul {
  list-style: none;
  padding: 0;
}

.pro-e684 li,
.under-4fcb li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.tabs-silver-5286 {
  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);
}

.tertiary_iron_61c0 {
  font-style: italic;
}

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

.popup_9aed {
  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_9aed h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

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

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

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

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

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

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

.footer-small-d7c5 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.icon_old_f13a a:hover {
  color: white;
}

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

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

.hard-7fdb a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.mask-4c99 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.mask-4c99 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .yellow_2fa2,
  .caption-north-3b12 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.hidden_413e .detail_stone_6bae {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.upper_99de a:hover {
  color: white;
}

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

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

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

.dim_ccb4 a:hover {
  color: white;
}

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

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

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

.paragraph-blue-6fc9 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .carousel_d77a {
    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;
  }
  
  .column_pressed_2470 {
    font-size: 2rem;
  }
  
  .caption-advanced-0c65 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .layout_fa82,
  .stone-0a74 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .hidden-6a85,
  .filter-paper-a58a,
  .caption_fcdf,
  .primary_4629,
  .avatar-hard-f31e,
  .upper_f6a0,
  .filter_pressed_ae81,
  .yellow_2fa2,
  .caption-north-3b12 {
    grid-template-columns: 1fr;
  }
  
  .light_9a4e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .narrow_de5e {
    padding: var(--space-lg) 0;
  }
  
  .gradient_lite_3ede li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gradient_lite_3ede li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hidden_619a {
    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;
  }
  
  .light_9a4e {
    grid-template-columns: 1fr;
  }
  
  .frame-2ddc,
  .label_fdb1,
  .border_d0dd {
    flex-direction: column;
    width: 100%;
  }
  
  .dropdown-red-7e70,
  .mask_mini_6e39,
  .frame-2ddc .hidden_619a,
  .label_fdb1 .hidden_619a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column_pressed_2470 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .caption-advanced-0c65 {
    font-size: 1.375rem;
  }
  
  .frame-fb36 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .upper-31de,
  .out-113f,
  .stale-3399,
  .wood_7093,
  .wide_694f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .background_c0e7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .section-iron-9f28 {
    gap: var(--space-xs);
  }
  
  .tag_right_a44a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .focused-653b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .footer-thick-6506 {
    width: 150px;
    height: 150px;
  }
  
  .panel_narrow_0680 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .texture_liquid_e85e,
  .column_west_74f4,
  .frame-2ddc,
  .popup_9aed,
  .warm_05ee,
  .fixed_2c88,
  .thumbnail_52af {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .narrow_de5e {
    page-break-inside: avoid;
  }
}

/* css-noise: 6eb5 */
.promo-block-q4 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
