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

.tag-94f0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.huge_9dc1,
header,
.column-dim-9d55,
.red_17d0,
.component-down-0cbb,
.clean_f102,
.outer_86d6,
.light_8548,
.hover_slow_0bbd {
  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
   ============================================ */
.huge_9dc1 {
  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);
}

.media-under-8bc4 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.preview_e548 {
  flex: 1;
}

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

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

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

.media_west_cd4f.fn-active-a317 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.sort_f495 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.grid_264c svg {
  flex-shrink: 0;
}

/* Header Download Button */
.row-rough-635f {
  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;
}

.row-rough-635f: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);
}

.row-rough-635f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.shade-soft-c016[aria-expanded="true"] .outline_b66a:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .preview_e548 {
    display: none;
  }
  
  .shade-soft-c016 {
    display: flex;
  }
  
  .image_373b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .grid_264c,
  .row-rough-635f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sort_f495 {
    position: relative;
  }
  
  .shade-a2e7 {
    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;
  }
  
  .description_short_f378[aria-expanded="true"] + .shade-a2e7 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel_e648 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .left-db1f {
    gap: 8px;
  }
  
  .grid_264c {
    display: none;
  }
  
  .row-rough-635f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .simple_fabe img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.stone-ef9e svg {
  flex-shrink: 0;
}

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

.stone-ef9e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.alert-5786 a:hover {
  text-decoration: underline;
}

.panel-5f02 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

.sort-45dd {
  display: flex;
  gap: var(--space-sm);
}

.fresh-9ee9 {
  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;
}

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

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

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

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

.status-medium-7284 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.shade_outer_4439 {
  position: relative;
  text-align: center;
}

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

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

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

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

.block-light-02fc {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .media-2bfb {
    grid-template-columns: 1fr;
  }
  
  .lower_2e19 {
    font-size: 1.75rem;
  }
  
  .status-medium-7284 {
    order: -1;
    max-width: 100%;
  }
  
  .shade_outer_4439 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .lower_2e19 {
    font-size: 1.5rem;
  }
  
  .preview_bffa {
    font-size: 1rem;
  }
  
  .alert-5786 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .shade_outer_4439 {
    max-width: 250px;
  }
}

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

.huge-8ba0 {
  background: var(--color-primary);
  color: white;
}

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

.shade-thick-4f17 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.shade-thick-4f17:hover {
  background: var(--color-primary);
  color: white;
}

.form-inner-67f2 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.form-inner-67f2:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-77f8 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.wrapper-77f8 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);
}

.wrapper-77f8 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;
}

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

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

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

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

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

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

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

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

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

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

.badge-2e45 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.badge-2e45 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);
}

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

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

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

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

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

.badge-2e45 strong {
  font-weight: 600;
  color: var(--color-text);
}

.badge-2e45 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.badge-2e45 a:hover {
  color: var(--color-primary-dark);
}

.medium-ca84 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.medium-ca84 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) {
  .surface-4b66 {
    grid-template-columns: 1fr;
  }
  
  .soft-9126 {
    font-size: 1.75rem;
  }
  
  .badge-2e45 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .soft-9126 {
    font-size: 1.5rem;
  }
  
  .badge-2e45 h3 {
    font-size: 1.375rem;
  }
  
  .badge-2e45 h4 {
    font-size: 1.125rem;
  }
}

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

.dynamic-476e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.texture-paper-3dbb {
  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;
}

.lower-e248 {
  flex-shrink: 0;
}

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

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

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

.picture_blue_ecba,
.mini_fb07,
.preview_soft_d34b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.picture_blue_ecba thead,
.mini_fb07 thead {
  background: var(--color-primary);
  color: white;
}

.picture_blue_ecba th,
.picture_blue_ecba td,
.mini_fb07 th,
.mini_fb07 td,
.preview_soft_d34b th,
.preview_soft_d34b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .picture_blue_ecba th,
  .picture_blue_ecba td,
  .mini_fb07 th,
  .mini_fb07 td,
  .preview_soft_d34b th,
  .preview_soft_d34b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .picture_blue_ecba,
  .mini_fb07,
  .preview_soft_d34b {
    min-width: 600px;
  }
}

.picture_blue_ecba th,
.mini_fb07 th,
.preview_soft_d34b th {
  font-weight: 600;
}

.picture_blue_ecba tbody tr:hover,
.mini_fb07 tbody tr:hover,
.preview_soft_d34b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pink_9f73 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-steel-b9e6 {
  color: #4caf50;
}

.icon-yellow-8c58 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.preview-stale-93f2 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.south_05e2 .text_e960 {
  width: 100%;
  background: white;
}

.label-current-191c .text_e960 {
  color: #667eea;
}

.text-current-ae8b .text_e960 {
  color: #f5576c;
}

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

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

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

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

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

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

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

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

.accent_static_b344 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.disabled_white_0b40,
.heading-south-15b8,
.dark-536e,
.image_dynamic_826c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-5b24 {
  border-color: var(--color-warning);
}

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

.yellow-dcae .secondary_d63f {
  background: #e8f5e9;
  color: var(--color-success);
}

.grid-5b24 .secondary_d63f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.notification-next-375e {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .tooltip-red-7bef {
    grid-template-columns: 1fr;
  }
}

.summary-dim-4e0d {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.summary-dim-4e0d h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

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

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

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

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

.fluid-f959 {
  text-align: center;
}

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

.component-soft-81f3 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.image_46d9 .popup_19bb {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.module-silver-9de2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-medium-5fe5 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.accent-blue-7111 {
  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;
}

.active-blue-2c27 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.wood_0216 {
  text-align: right;
}

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

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

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

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

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

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

.panel-1503 {
  background: #e8f5e9;
  color: #2e7d32;
}

.message-bronze-5f48 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title_inner_cb2c {
  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_inner_cb2c {
    grid-template-columns: 1fr;
  }
}

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

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

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

.article_left_f131 h4,
.black_b662 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.article_left_f131 ul,
.black_b662 ul {
  list-style: none;
  padding: 0;
}

.article_left_f131 li,
.black_b662 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.badge-99ae ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.tag_motion_6921 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-first-1b6a {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thumbnail-first-1b6a li {
  margin-bottom: var(--space-xs);
}

.thumbnail-first-1b6a a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.thumbnail-first-1b6a a:hover {
  color: white;
}

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

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

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

.under-7ef6 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.under-7ef6 a:hover {
  color: white;
}

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

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

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

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

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

.first_d863 .sort-45dd {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.in_1558 a:hover {
  color: white;
}

.pink-1d2c {
  list-style: none;
  padding: 0;
}

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

.pink-1d2c a {
  color: #b0b0b0;
  text-decoration: none;
}

.pink-1d2c a:hover {
  color: white;
}

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

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

.hero-pressed-73a0 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .plasma-cb13 {
    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;
  }
  
  .lower_2e19 {
    font-size: 2rem;
  }
  
  .soft-9126 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .media-2bfb,
  .surface-4b66 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .status_0c8f,
  .hidden-north-22f7,
  .motion-7240,
  .tooltip-red-7bef,
  .title_inner_cb2c,
  .notice_d5d7,
  .hard-1d46,
  .overlay_gold_aab0,
  .chip_b0f5 {
    grid-template-columns: 1fr;
  }
  
  .module-4363 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .outer_86d6 {
    padding: var(--space-lg) 0;
  }
  
  .wrapper-77f8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wrapper-77f8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .text_e960 {
    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;
  }
  
  .module-4363 {
    grid-template-columns: 1fr;
  }
  
  .preview_plasma_5172,
  .tertiary-blue-3684,
  .column-ae9b {
    flex-direction: column;
    width: 100%;
  }
  
  .notification-3439,
  .black_18fa,
  .preview_plasma_5172 .text_e960,
  .tertiary-blue-3684 .text_e960 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .lower_2e19 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .soft-9126 {
    font-size: 1.375rem;
  }
  
  .focused_5401 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .short_2f58,
  .status-09df,
  .gradient_fixed_383d,
  .thick_327f,
  .grid_9cf8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .pattern-huge-8537 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accordion_green_8b21 {
    gap: var(--space-xs);
  }
  
  .stone-ef9e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .text_cold_23d9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .image_46d9 {
    width: 150px;
    height: 150px;
  }
  
  .component-soft-81f3 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .huge_9dc1,
  .column-dim-9d55,
  .preview_plasma_5172,
  .dark_e460,
  .light_8548,
  .hover_slow_0bbd,
  .shade-soft-c016 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .outer_86d6 {
    page-break-inside: avoid;
  }
}

/* css-noise: bf0e */
.ghost-box-e1 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
