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

.element-bottom-a22a:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.sidebar_7458,
header,
.detail-fast-6442,
.soft_d75b,
.first_4bc9,
.last-f0ad,
.sort-inner-abff,
.large-7192,
.highlight-wood-c63b {
  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
   ============================================ */
.sidebar_7458 {
  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);
}

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

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

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

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

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

.hover-static-cd9a img {
  height: 36px;
  width: auto;
  display: block;
}

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

.header-bright-55a8 {
  flex: 1;
}

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

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

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

.fixed_d38b.fn-active-accd {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.column-outer-c462 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.search-stale-650b {
  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;
}

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

.search-stale-650b svg {
  flex-shrink: 0;
}

/* Header Download Button */
.component-steel-14bc {
  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;
}

.component-steel-14bc: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);
}

.component-steel-14bc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.article_motion_eadd[aria-expanded="true"] .accordion-fresh-bd68:nth-child(2) {
  opacity: 0;
}

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

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

  .header-bright-55a8::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .header-bright-55a8.preview-dc18 {
    display: block;
    right: 0;
  }
  
  .tabs_4b2c {
    flex-direction: column;
    gap: 0;
  }
  
  .fixed_d38b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .header-bright-55a8::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;
  }
  
  .header-bright-55a8.preview-dc18::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .header-bright-55a8 {
    display: none;
  }
  
  .article_motion_eadd {
    display: flex;
  }
  
  .link_bottom_b98a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .search-stale-650b,
  .component-steel-14bc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .column-outer-c462 {
    position: relative;
  }
  
  .surface_stale_c202 {
    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;
  }
  
  .accent_hot_9926[aria-expanded="true"] + .surface_stale_c202 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .mask_fixed_ccd3 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .bronze-7fe0 {
    gap: 8px;
  }
  
  .search-stale-650b {
    display: none;
  }
  
  .component-steel-14bc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hover-static-cd9a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.heading_iron_8414 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.bronze-d5bf a:hover {
  text-decoration: underline;
}

.thumbnail-east-ada0 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.info-0ca0 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-0ca0 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.fluid-1b10 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.footer-e07f {
  position: relative;
  text-align: center;
}

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

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

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

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

.chip-plasma-116c {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .pattern_8994 {
    grid-template-columns: 1fr;
  }
  
  .shade_f68a {
    font-size: 1.75rem;
  }
  
  .info_cool_8d8e {
    order: -1;
    max-width: 100%;
  }
  
  .footer-e07f {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shade_f68a {
    font-size: 1.5rem;
  }
  
  .shadow-brown-14d7 {
    font-size: 1rem;
  }
  
  .bronze-d5bf {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .footer-e07f {
    max-width: 250px;
  }
}

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

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

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

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

.image-7e7f:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.popup-old-54a1 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.background-9afc {
  list-style: none;
  counter-reset: toc-counter;
}

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

.background-9afc 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);
}

.background-9afc 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;
}

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

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

.content-5b2e {
  background: var(--color-bg-section);
}

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

.hover-old-315d {
  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);
}

.tabs-4dba {
  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);
}

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

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

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

.carousel-9601 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.carousel-9601 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.carousel-9601 pre,
.carousel-9601 code {
  overflow-x: auto;
  max-width: 100%;
}

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

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

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

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

.carousel-9601 ul,
.carousel-9601 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.carousel-9601 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

.carousel-9601 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.carousel-9601 a:hover {
  color: var(--color-primary-dark);
}

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

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

.detail-f7ec 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) {
  .box_out_5e5a {
    grid-template-columns: 1fr;
  }
  
  .tabs-4dba {
    font-size: 1.75rem;
  }
  
  .carousel-9601 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tabs-4dba {
    font-size: 1.5rem;
  }
  
  .carousel-9601 h3 {
    font-size: 1.375rem;
  }
  
  .carousel-9601 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.action_e9c1 {
  flex-shrink: 0;
}

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

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

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

.out_d3aa,
.complex_47cb,
.carousel-active-e912 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.out_d3aa thead,
.complex_47cb thead {
  background: var(--color-primary);
  color: white;
}

.out_d3aa th,
.out_d3aa td,
.complex_47cb th,
.complex_47cb td,
.carousel-active-e912 th,
.carousel-active-e912 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .out_d3aa th,
  .out_d3aa td,
  .complex_47cb th,
  .complex_47cb td,
  .carousel-active-e912 th,
  .carousel-active-e912 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .out_d3aa,
  .complex_47cb,
  .carousel-active-e912 {
    min-width: 600px;
  }
}

.out_d3aa th,
.complex_47cb th,
.carousel-active-e912 th {
  font-weight: 600;
}

.out_d3aa tbody tr:hover,
.complex_47cb tbody tr:hover,
.carousel-active-e912 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.white_60e3 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-d298 {
  font-weight: 600;
  color: white;
}

.center-67de {
  list-style: none;
  padding: 0;
}

.center-67de li {
  padding: var(--space-xs) 0;
}

.caption-medium-ef1d {
  color: #4caf50;
}

.widget_cf13 {
  color: #ff9800;
}

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

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

.image-short-129e {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-01b9 .tiny-3ca0 {
  width: 100%;
  background: white;
}

.breadcrumb-d0ad .tiny-3ca0 {
  color: #667eea;
}

.disabled-down-56e1 .tiny-3ca0 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .wide_ee84 {
    padding: var(--space-md);
  }
  
  .cool_a111 {
    padding: var(--space-md);
  }
  
  .block_e77e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.gradient-copper-3cfe li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.prev-80cd,
.shadow-silver-4ce4,
.text-b873,
.label-1c21 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.thumbnail-advanced-618c {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

.panel-motion-eef9 {
  border-color: var(--color-warning);
}

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

.backdrop_red_2603 .popup-5898 {
  background: #e8f5e9;
  color: var(--color-success);
}

.panel-motion-eef9 .popup-5898 {
  background: #fff3e0;
  color: var(--color-warning);
}

.title-clean-19b5 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.title-clean-19b5 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.secondary_small_a351 {
  text-align: center;
}

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

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

.highlight-a582 .heading-d298 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.alert-down-e8a0 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.hidden-dynamic-3f5e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.clean-089a {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.stone-7369 {
  text-align: right;
}

.stone-7369 .mini-a003 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.notice-ce6d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.photo-east-1132 strong {
  color: var(--color-primary);
}

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

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

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

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

.icon-60fa {
  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);
}

.icon-60fa:hover {
  background: var(--color-bg-alt);
}

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

.icon-60fa[aria-expanded="true"] .cold_0a50 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-f5fb,
.section_pressed_e827 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.link-f5fb h4,
.section_pressed_e827 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.link-f5fb ul,
.section_pressed_e827 ul {
  list-style: none;
  padding: 0;
}

.link-f5fb li,
.section_pressed_e827 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.shadow-230a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.medium-301f {
  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);
}

.aside-6b6a {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-fixed-aa93 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.disabled-fixed-aa93 li {
  margin-bottom: var(--space-xs);
}

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

.disabled-fixed-aa93 a:hover {
  color: white;
}

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

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

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

.media-brown-42f1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.media-brown-42f1 a:hover {
  color: white;
}

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

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

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

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

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

.picture-d94b .white-be96 {
  color: #4caf50;
  font-size: 0.875rem;
}

.east-f6c8 {
  list-style: none;
  padding: 0;
}

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

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

.east-f6c8 a:hover {
  color: white;
}

.tooltip-top-7223 {
  list-style: none;
  padding: 0;
}

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

.tooltip-top-7223 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tooltip-top-7223 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .item_down_c04a {
    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;
  }
  
  .shade_f68a {
    font-size: 2rem;
  }
  
  .tabs-4dba {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pattern_8994,
  .box_out_5e5a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .message_46f9,
  .hovered_06d9,
  .hard_1af3,
  .main-next-a1e0,
  .title_7c08,
  .text_2920,
  .purple-90a8,
  .video-soft-a625,
  .grid_9b8a {
    grid-template-columns: 1fr;
  }
  
  .icon_a29b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort-inner-abff {
    padding: var(--space-lg) 0;
  }
  
  .background-9afc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .background-9afc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .tiny-3ca0 {
    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;
  }
  
  .icon_a29b {
    grid-template-columns: 1fr;
  }
  
  .fluid-1b10,
  .yellow_aa62,
  .hero_slow_87a8 {
    flex-direction: column;
    width: 100%;
  }
  
  .caption_d34f,
  .popup-old-54a1,
  .fluid-1b10 .tiny-3ca0,
  .yellow_aa62 .tiny-3ca0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shade_f68a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tabs-4dba {
    font-size: 1.375rem;
  }
  
  .mask-fresh-9808 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tall-ece4,
  .selected_84f1,
  .avatar-95ad,
  .layout-fixed-85b1,
  .carousel-d198 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .banner_soft_4e7d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .link_silver_8845 {
    gap: var(--space-xs);
  }
  
  .heading_iron_8414 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .white_7a6d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .highlight-a582 {
    width: 150px;
    height: 150px;
  }
  
  .accordion_c08b {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .sidebar_7458,
  .detail-fast-6442,
  .fluid-1b10,
  .down-d4c4,
  .large-7192,
  .highlight-wood-c63b,
  .article_motion_eadd {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort-inner-abff {
    page-break-inside: avoid;
  }
}

/* css-noise: 11f3 */
.promo-block-b7 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.3;
}
