/* ============================================
   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)
   ============================================ */
.video-active-76db {
  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;
}

.video-active-76db:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.shade-bronze-0d9e,
header,
.gallery-a5dd,
.lower_2bc2,
.medium-c1f1,
.huge-2b98,
.message-b9ed,
.plasma_e7a8,
.mask-silver-7706 {
  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
   ============================================ */
.shade-bronze-0d9e {
  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);
}

.breadcrumb-static-d821 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.shade-bronze-0d9e.detail-purple-9b49 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.carousel-red-8c95 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.plasma-0425 {
  flex: 1;
}

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

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

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

.caption_focused_ecb7.fn-active-d7ac {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.wood-8e2e {
  position: relative;
}

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

.heading-stale-8913 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.icon-orange-7834 svg {
  flex-shrink: 0;
}

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

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

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

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

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

.video-down-178a {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.card-huge-1d4a[aria-expanded="true"] .video-down-178a:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.card-huge-1d4a[aria-expanded="true"] .video-down-178a:nth-child(2) {
  opacity: 0;
}

.card-huge-1d4a[aria-expanded="true"] .video-down-178a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .plasma-0425 {
    display: none;
  }
  
  .card-huge-1d4a {
    display: flex;
  }
  
  .west_5e7f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .icon-orange-7834,
  .tooltip_slow_6456 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .wood-8e2e {
    position: relative;
  }
  
  .orange_5bc5 {
    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;
  }
  
  .heading-stale-8913[aria-expanded="true"] + .orange_5bc5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notification_lower_78f1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tag-mini-db24 {
    gap: 8px;
  }
  
  .icon-orange-7834 {
    display: none;
  }
  
  .tooltip_slow_6456 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .highlight_4327 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.fast_aa4d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.video-cold-f9fd {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.frame-blue-eb3f {
  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;
}

.huge-70c9 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.huge-70c9 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.gradient-over-57b8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.popup-b081 {
  position: relative;
  text-align: center;
}

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

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

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

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

.popup-bronze-4d55 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.breadcrumb-old-582d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .preview-huge-7ce7 {
    grid-template-columns: 1fr;
  }
  
  .badge_new_1cf3 {
    font-size: 1.75rem;
  }
  
  .center_3a54 {
    order: -1;
    max-width: 100%;
  }
  
  .popup-b081 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .badge_new_1cf3 {
    font-size: 1.5rem;
  }
  
  .component-hot-b629 {
    font-size: 1rem;
  }
  
  .fluid_6e50 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .popup-b081 {
    max-width: 250px;
  }
}

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

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

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

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

.menu-south-5816:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.heading-dirty-c886 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge-88e1 {
  background: var(--color-bg-section);
}

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

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

.stone-6be7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dim-1326 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) {
  .accordion-1dd7 {
    grid-template-columns: 1fr;
  }
  
  .stone-6be7 {
    font-size: 1.75rem;
  }
  
  .frame_fixed_28d1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .stone-6be7 {
    font-size: 1.5rem;
  }
  
  .frame_fixed_28d1 h3 {
    font-size: 1.375rem;
  }
  
  .frame_fixed_28d1 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.lite-9b4e {
  flex-shrink: 0;
}

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

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

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

.detail-928c,
.heading_55e8,
.section_c19e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail-928c thead,
.heading_55e8 thead {
  background: var(--color-primary);
  color: white;
}

.detail-928c th,
.detail-928c td,
.heading_55e8 th,
.heading_55e8 td,
.section_c19e th,
.section_c19e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail-928c th,
  .detail-928c td,
  .heading_55e8 th,
  .heading_55e8 td,
  .section_c19e th,
  .section_c19e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail-928c,
  .heading_55e8,
  .section_c19e {
    min-width: 600px;
  }
}

.detail-928c th,
.heading_55e8 th,
.section_c19e th {
  font-weight: 600;
}

.detail-928c tbody tr:hover,
.heading_55e8 tbody tr:hover,
.section_c19e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.content-be43 h4 {
  color: white;
}

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

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

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

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

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

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

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

.gradient-b7cd:hover {
  text-decoration: underline;
}

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

.feature-85bb {
  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);
}

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

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

.pressed-abee {
  list-style: none;
  padding: 0;
}

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

.message_right_dddf {
  color: #4caf50;
}

.column_pro_53c3 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.carousel-left-1a87 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

.pink-017e {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.tooltip_large_8479 .pattern_bottom_b871 {
  width: 100%;
  background: white;
}

.advanced-c06e .pattern_bottom_b871 {
  color: #667eea;
}

.feature_13cb .pattern_bottom_b871 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .container-bde6 {
    padding: var(--space-md);
  }
  
  .video_next_bd15 {
    padding: var(--space-md);
  }
  
  .search-fluid-f798 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.section-light-3bb1 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.hidden_soft_b54e,
.label_166b,
.dim-941c,
.element_tall_f8f2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.menu-orange-bdd4:hover {
  background: var(--color-primary-dark);
}

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

.table-solid-a954 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.carousel-selected-5197 {
  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);
}

.section_e109 .carousel-selected-5197 {
  background: #e8f5e9;
  color: var(--color-success);
}

.picture_bronze_4be5 .carousel-selected-5197 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.texture-complex-53d5 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.menu-left-a648 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.summary-blue-4e8b {
  text-align: center;
}

.search-medium-4691 {
  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);
}

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

.search-medium-4691 .gradient_hovered_d51c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.frame-in-766c {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

.hot-2ec6 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-pink-fc63 {
  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;
}

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

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

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

.soft_174f {
  text-align: right;
}

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

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

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

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

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

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

.section-6e2f {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.tag-cold-5e6e {
  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);
}

.tag-cold-5e6e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-fcd4,
.logo_fast_9e7e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.icon-fcd4 h4,
.logo_fast_9e7e h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.icon-fcd4 ul,
.logo_fast_9e7e ul {
  list-style: none;
  padding: 0;
}

.icon-fcd4 li,
.logo_fast_9e7e li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.slider_bright_da37 {
  font-style: italic;
}

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

.first-6dd8 {
  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;
}

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

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

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

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

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

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

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

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

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

.alert-brown-6a2f {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.liquid-5fe1 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.liquid-5fe1 li {
  margin-bottom: var(--space-xs);
}

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

.liquid-5fe1 a:hover {
  color: white;
}

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

.filter-liquid-8922 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-liquid-8922 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.item_6b5d a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .detail_98da,
  .component-clean-8f19 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.shadow-1c61 .active_pink_a386 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.wide-eada a:hover {
  color: white;
}

.notification-7d27 {
  list-style: none;
  padding: 0;
}

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

.notification-7d27 a {
  color: #b0b0b0;
  text-decoration: none;
}

.notification-7d27 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.banner-99ec:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .light-e208 {
    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;
  }
  
  .badge_new_1cf3 {
    font-size: 2rem;
  }
  
  .stone-6be7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .preview-huge-7ce7,
  .accordion-1dd7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .label-iron-a8b8,
  .component-stone-3728,
  .tabs-short-1ea8,
  .out-604d,
  .west_21bd,
  .gallery_solid_beb8,
  .description-in-6770,
  .detail_98da,
  .component-clean-8f19 {
    grid-template-columns: 1fr;
  }
  
  .popup_dirty_195c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .message-b9ed {
    padding: var(--space-lg) 0;
  }
  
  .disabled_iron_b41a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .disabled_iron_b41a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .pattern_bottom_b871 {
    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;
  }
  
  .popup_dirty_195c {
    grid-template-columns: 1fr;
  }
  
  .gradient-over-57b8,
  .slider-faf6,
  .fresh_4bd5 {
    flex-direction: column;
    width: 100%;
  }
  
  .heading-dirty-c886,
  .chip_gas_08ba,
  .gradient-over-57b8 .pattern_bottom_b871,
  .slider-faf6 .pattern_bottom_b871 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .badge_new_1cf3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .stone-6be7 {
    font-size: 1.375rem;
  }
  
  .accent-4eaa {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .outline-bright-ef45,
  .message-16ac,
  .accordion-a826,
  .accordion_f607,
  .action_c8dd {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .slider_22ab {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .large_6349 {
    gap: var(--space-xs);
  }
  
  .fast_aa4d {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature-85bb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .search-medium-4691 {
    width: 150px;
    height: 150px;
  }
  
  .shade_92d5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .shade-bronze-0d9e,
  .gallery-a5dd,
  .gradient-over-57b8,
  .first-6dd8,
  .plasma_e7a8,
  .mask-silver-7706,
  .card-huge-1d4a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .message-b9ed {
    page-break-inside: avoid;
  }
}

/* css-noise: 6815 */
.promo-block-b4 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
