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

.footer_soft_2960:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.middle_1e0f,
header,
.tag-1a63,
.hero_9f7c,
.black_7d7a,
.texture_brown_64f7,
.hover_7188,
.block-complex-a9aa,
.logo_cool_5b21 {
  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
   ============================================ */
.middle_1e0f {
  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);
}

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

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

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

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

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

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

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

.gallery_huge_090a {
  flex: 1;
}

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

.thumbnail-iron-f9e2 {
  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);
}

.thumbnail-iron-f9e2:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.thumbnail-iron-f9e2.fn-active-f3ed {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.large_ba27 svg {
  flex-shrink: 0;
}

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

.caption-18a1: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);
}

.caption-18a1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.table_c20b[aria-expanded="true"] .panel-mini-7911:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .gallery_huge_090a {
    display: none;
  }
  
  .table_c20b {
    display: flex;
  }
  
  .simple-b9ea {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .large_ba27,
  .caption-18a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .disabled_purple_66fe {
    position: relative;
  }
  
  .row_f51d {
    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;
  }
  
  .progress_6423[aria-expanded="true"] + .row_f51d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider-first-58d0 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hard-c7db {
    gap: 8px;
  }
  
  .large_ba27 {
    display: none;
  }
  
  .caption-18a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .active_lite_4410 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.paragraph_f6c6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-in-ab2a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clean-d13a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .out_bf4f {
    grid-template-columns: 1fr;
  }
  
  .border_outer_4615 {
    font-size: 1.75rem;
  }
  
  .footer-in-ab2a {
    order: -1;
    max-width: 100%;
  }
  
  .clean-d13a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .border_outer_4615 {
    font-size: 1.5rem;
  }
  
  .gallery_bright_08ec {
    font-size: 1rem;
  }
  
  .wood_cf42 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .clean-d13a {
    max-width: 250px;
  }
}

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

.backdrop-middle-0e88 {
  background: var(--color-primary);
  color: white;
}

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

.breadcrumb-4dd3 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.breadcrumb-4dd3:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.element-29a4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.dim-2b35 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.dim-2b35 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);
}

.dim-2b35 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;
}

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

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

.feature-old-a22c {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light_e51f 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) {
  .detail_6c65 {
    grid-template-columns: 1fr;
  }
  
  .inner_0aa7 {
    font-size: 1.75rem;
  }
  
  .backdrop_0e56 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .inner_0aa7 {
    font-size: 1.5rem;
  }
  
  .backdrop_0e56 h3 {
    font-size: 1.375rem;
  }
  
  .backdrop_0e56 h4 {
    font-size: 1.125rem;
  }
}

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

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

.main-paper-d942 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.button-top-347b {
  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;
}

.hover_mini_6850 {
  flex-shrink: 0;
}

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

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

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

.hovered-b111,
.mask-focused-9c5b,
.header_dynamic_98a8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hovered-b111 thead,
.mask-focused-9c5b thead {
  background: var(--color-primary);
  color: white;
}

.hovered-b111 th,
.hovered-b111 td,
.mask-focused-9c5b th,
.mask-focused-9c5b td,
.header_dynamic_98a8 th,
.header_dynamic_98a8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hovered-b111 th,
  .hovered-b111 td,
  .mask-focused-9c5b th,
  .mask-focused-9c5b td,
  .header_dynamic_98a8 th,
  .header_dynamic_98a8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hovered-b111,
  .mask-focused-9c5b,
  .header_dynamic_98a8 {
    min-width: 600px;
  }
}

.hovered-b111 th,
.mask-focused-9c5b th,
.header_dynamic_98a8 th {
  font-weight: 600;
}

.hovered-b111 tbody tr:hover,
.mask-focused-9c5b tbody tr:hover,
.header_dynamic_98a8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.heading_f0de h4 {
  color: white;
}

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

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

.main-ff49:last-child {
  border-bottom: none;
}

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

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

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

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

.over-08b9:hover {
  text-decoration: underline;
}

.texture-right-73f1 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.slider-72aa {
  color: #4caf50;
}

.shade-fc0e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.center-4ea3 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-old-3150 .border_fresh_cdd3 {
  width: 100%;
  background: white;
}

.short-d864 .border_fresh_cdd3 {
  color: #667eea;
}

.filter-b0f9 .border_fresh_cdd3 {
  color: #f5576c;
}

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

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

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

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

.mask-south-8e3c h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .mask-south-8e3c {
    padding: var(--space-md);
  }
  
  .link_972a {
    padding: var(--space-md);
  }
  
  .column_stale_b906 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.link_068d,
.focus-ca9b,
.list-acc7,
.photo-pink-6d66 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-dark-09c3 {
  border-color: var(--color-warning);
}

.tertiary-hard-604d {
  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);
}

.action-cb19 .tertiary-hard-604d {
  background: #e8f5e9;
  color: var(--color-success);
}

.tabs-dark-09c3 .tertiary-hard-604d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.blue-60b6 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.orange_8cfc {
  text-align: center;
}

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

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

.wrapper-light-a7e8 .sort_acbb {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.table-708b {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

.large-b35d {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.notification-light-0b87 {
  text-align: right;
}

.notification-light-0b87 .modal_1859 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.green-0a44 {
  background: #e8f5e9;
  color: #2e7d32;
}

.accordion-clean-cae1 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

.picture-mini-004e strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container-lower-b1e5,
.fast-3311 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.container-lower-b1e5 h4,
.fast-3311 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.container-lower-b1e5 ul,
.fast-3311 ul {
  list-style: none;
  padding: 0;
}

.container-lower-b1e5 li,
.fast-3311 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.message-brown-00e6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.message-brown-00e6 ul {
  list-style: none;
  padding: 0;
}

.message-brown-00e6 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.hidden_right_901f {
  font-style: italic;
}

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

.row-89f2 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_liquid_c1e2 a:hover {
  color: white;
}

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

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

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

.popup-13bf {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.popup-13bf a:hover {
  color: white;
}

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

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

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

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

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

.photo_8f0e .mask_cold_d840 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.modal_east_bdc6 a:hover {
  color: white;
}

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

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

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

.description_fresh_e5a1 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.avatar-pro-cd9b:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .banner_fluid_5662 {
    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;
  }
  
  .border_outer_4615 {
    font-size: 2rem;
  }
  
  .inner_0aa7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .out_bf4f,
  .detail_6c65 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade_full_376e,
  .first-4475,
  .detail-b0a9,
  .card-gold-f63b,
  .bottom-168d,
  .layout-7f9a,
  .chip_medium_3d58,
  .texture-d0a9,
  .status_a6d9 {
    grid-template-columns: 1fr;
  }
  
  .background-f0e0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hover_7188 {
    padding: var(--space-lg) 0;
  }
  
  .dim-2b35 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dim-2b35 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .border_fresh_cdd3 {
    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;
  }
  
  .background-f0e0 {
    grid-template-columns: 1fr;
  }
  
  .media_slow_070a,
  .south-1df8,
  .red-a519 {
    flex-direction: column;
    width: 100%;
  }
  
  .modal-be93,
  .element-29a4,
  .media_slow_070a .border_fresh_cdd3,
  .south-1df8 .border_fresh_cdd3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .border_outer_4615 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .inner_0aa7 {
    font-size: 1.375rem;
  }
  
  .hot_09ad {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .last_9468,
  .summary-glass-f003,
  .element-plasma-3ee0,
  .sidebar_wide_0ec6,
  .layout-simple-15e0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wrapper_aadd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .sort_0f91 {
    gap: var(--space-xs);
  }
  
  .paragraph_f6c6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hero_1be9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .wrapper-light-a7e8 {
    width: 150px;
    height: 150px;
  }
  
  .pink_0829 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .middle_1e0f,
  .tag-1a63,
  .media_slow_070a,
  .row-89f2,
  .block-complex-a9aa,
  .logo_cool_5b21,
  .table_c20b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hover_7188 {
    page-break-inside: avoid;
  }
}

/* css-noise: f865 */
.ghost-box-s2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
