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

.info_next_a274:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.surface_purple_36d1,
header,
.main_fast_c6e8,
.background_slow_dfc0,
.pattern_static_2458,
.border_outer_3b1e,
.glass-d757,
.carousel-hard-0b62,
.pro_6125 {
  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
   ============================================ */
.surface_purple_36d1 {
  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);
}

.alert-short-3fd4 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.modal-dbd7 img {
  height: 36px;
  width: auto;
  display: block;
}

.active-03f4 {
  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;
}

.hero_f882 {
  flex: 1;
}

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

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

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

.green_70d3.fn-active-190d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.layout-blue-3086 {
  position: relative;
}

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

.blue-ffdb svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.dim-6a59 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.video_27b2[aria-expanded="true"] .hero_fast_efbf:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .hero_f882 {
    display: none;
  }
  
  .video_27b2 {
    display: flex;
  }
  
  .active-03f4 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dim-6a59,
  .column_selected_557e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .layout-blue-3086 {
    position: relative;
  }
  
  .paragraph-0f50 {
    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;
  }
  
  .blue-ffdb[aria-expanded="true"] + .paragraph-0f50 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .status-e1f1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .over_69e7 {
    gap: 8px;
  }
  
  .dim-6a59 {
    display: none;
  }
  
  .column_selected_557e {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal-dbd7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.accordion-hot-28d0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.accordion-hot-28d0 svg {
  flex-shrink: 0;
}

.accordion-hot-28d0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.accordion-hot-28d0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.soft-d6c3 a:hover {
  text-decoration: underline;
}

.hover-74d3 {
  color: var(--color-text-lighter);
}

.sort-fast-489c {
  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) {
  .sort-fast-489c {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sort-fast-489c {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

.overlay-smooth-e279 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

.block-stone-720a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .complex_2e2d {
    grid-template-columns: 1fr;
  }
  
  .sort-fast-489c {
    font-size: 1.75rem;
  }
  
  .overlay-smooth-e279 {
    order: -1;
    max-width: 100%;
  }
  
  .secondary_steel_f8e1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sort-fast-489c {
    font-size: 1.5rem;
  }
  
  .shadow-old-7819 {
    font-size: 1rem;
  }
  
  .soft-d6c3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .secondary_steel_f8e1 {
    max-width: 250px;
  }
}

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

.middle-40dc {
  background: var(--color-primary);
  color: white;
}

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

.layout-532b {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.layout-532b:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.picture-0d67 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.lower-039d {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_hard_1b9a 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_hard_1b9a 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_hard_1b9a li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

.hot-88f9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-1577 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) {
  .link_tall_15ae {
    grid-template-columns: 1fr;
  }
  
  .sidebar-e11b {
    font-size: 1.75rem;
  }
  
  .wide_894b {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.popup_bronze_d18a {
  flex-shrink: 0;
}

.status-focused-2ec9 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.bottom_b5f2,
.article-soft-dbaf,
.fluid_6631 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bottom_b5f2 thead,
.article-soft-dbaf thead {
  background: var(--color-primary);
  color: white;
}

.bottom_b5f2 th,
.bottom_b5f2 td,
.article-soft-dbaf th,
.article-soft-dbaf td,
.fluid_6631 th,
.fluid_6631 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bottom_b5f2 th,
  .bottom_b5f2 td,
  .article-soft-dbaf th,
  .article-soft-dbaf td,
  .fluid_6631 th,
  .fluid_6631 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .bottom_b5f2,
  .article-soft-dbaf,
  .fluid_6631 {
    min-width: 600px;
  }
}

.bottom_b5f2 th,
.article-soft-dbaf th,
.fluid_6631 th {
  font-weight: 600;
}

.bottom_b5f2 tbody tr:hover,
.article-soft-dbaf tbody tr:hover,
.fluid_6631 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.tiny_514a h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gradient_dark_3bc0 {
  color: #4caf50;
}

.item_warm_67e0 {
  color: #ff9800;
}

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

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

.module-inner-41cb {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.smooth-2f7e .secondary-882b {
  width: 100%;
  background: white;
}

.cool-59eb .secondary-882b {
  color: #667eea;
}

.hard-1b33 .secondary-882b {
  color: #f5576c;
}

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

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

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

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

.table-huge-8110 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.icon-smooth-466e {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .table-huge-8110 {
    padding: var(--space-md);
  }
  
  .icon-smooth-466e {
    padding: var(--space-md);
  }
  
  .form-2ebd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.wood-a593,
.item-fast-82f2,
.icon-f5f6,
.alert_bronze_fb5c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.preview-current-4b39 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

.gallery-462a {
  border-color: var(--color-success);
}

.item-east-ae88 {
  border-color: var(--color-warning);
}

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

.gallery-462a .breadcrumb-7098 {
  background: #e8f5e9;
  color: var(--color-success);
}

.item-east-ae88 .breadcrumb-7098 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-2bd1 {
  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);
}

.glass_83aa {
  text-align: center;
}

.widget-steel-8199 {
  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);
}

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

.widget-steel-8199 .input_b397 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.background-solid-8a46 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.accent-west-5cb4 {
  margin-bottom: var(--space-xl);
}

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

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

.menu-5ef0 {
  color: var(--color-text-light);
}

.pagination-cool-7b2f {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.hero-47e9 {
  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;
}

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

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

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

.hover_ced8 {
  text-align: right;
}

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

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

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

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

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

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

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

.tooltip-rough-460f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-black-acfb li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.column-e8f0,
.detail-797c {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.column-e8f0 h4,
.detail-797c h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.column-e8f0 ul,
.detail-797c ul {
  list-style: none;
  padding: 0;
}

.column-e8f0 li,
.detail-797c li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.sort-tiny-3690 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.main-first-5898 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary_02d8 a:hover {
  color: white;
}

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

.photo-8c21 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);
}

.photo-8c21 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.thumbnail_8b1a a:hover {
  color: white;
}

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

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

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

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

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

.feature_active_6e70 .filter_7378 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.hard_8b69 a:hover {
  color: white;
}

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

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

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

.text_dark_9a0a a:hover {
  color: white;
}

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

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

.sidebar-right-6ae1 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.image-small-c229:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumb_easy_7d8c {
    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;
  }
  
  .sort-fast-489c {
    font-size: 2rem;
  }
  
  .sidebar-e11b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .complex_2e2d,
  .link_tall_15ae {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tooltip_c2f7,
  .tertiary-bfae,
  .inner_3461,
  .south_e66e,
  .stale_3674,
  .media-801f,
  .gold-112a,
  .media-5630,
  .texture-b3ca {
    grid-template-columns: 1fr;
  }
  
  .fresh-9f3b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .glass-d757 {
    padding: var(--space-lg) 0;
  }
  
  .wrapper_hard_1b9a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .wrapper_hard_1b9a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .secondary-882b {
    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;
  }
  
  .fresh-9f3b {
    grid-template-columns: 1fr;
  }
  
  .texture_basic_78b3,
  .highlight-short-f480,
  .secondary-2c0a {
    flex-direction: column;
    width: 100%;
  }
  
  .picture-0d67,
  .lower-039d,
  .texture_basic_78b3 .secondary-882b,
  .highlight-short-f480 .secondary-882b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .sort-fast-489c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .sidebar-e11b {
    font-size: 1.375rem;
  }
  
  .modal_6c37 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wide_3bbe,
  .form-a88f,
  .stale_1e4b,
  .card-8209,
  .warm-6107 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title-ff76 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .input-9715 {
    gap: var(--space-xs);
  }
  
  .accordion-hot-28d0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hot_0a2a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .widget-steel-8199 {
    width: 150px;
    height: 150px;
  }
  
  .plasma-aa5a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .surface_purple_36d1,
  .main_fast_c6e8,
  .texture_basic_78b3,
  .light_ae91,
  .carousel-hard-0b62,
  .pro_6125,
  .video_27b2 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .glass-d757 {
    page-break-inside: avoid;
  }
}

/* css-noise: ccbb */
.shadow-element-k7 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.3;
}
