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

.picture_simple_b020:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .block-prev-37b5 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .block-prev-37b5 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.surface_cool_4839,
header,
.list-c37f,
.accordion-111d,
.chip-4a7d,
.accent-487e,
.advanced_49f5,
.preview_251e,
.glass_86d9 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* 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_cool_4839 {
  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);
}

.down-1d6d {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.filter-cc33 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.grid-7cf7 {
  flex: 1;
}

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

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

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

.main-bbea.module-gold-6127 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.background-center-3836 {
  position: relative;
}

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

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

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

.section-inner-8646 {
  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;
}

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

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

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

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

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

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

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

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

.gradient_5c24 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.component_2529[aria-expanded="true"] .element-current-fbb8:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .grid-7cf7 {
    display: none;
  }
  
  .component_2529 {
    display: flex;
  }
  
  .thumbnail_wood_4944 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gradient_5c24,
  .section_advanced_c17f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .background-center-3836 {
    position: relative;
  }
  
  .section-inner-8646 {
    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;
  }
  
  .secondary_2b21[aria-expanded="true"] + .section-inner-8646 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fluid_5c03 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .thumbnail-short-f5d7 {
    gap: 8px;
  }
  
  .gradient_5c24 {
    display: none;
  }
  
  .section_advanced_c17f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter-cc33 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.gradient_selected_f1f6 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-simple-c65f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.chip-cdfa {
  position: relative;
  text-align: center;
}

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

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

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

.list-clean-4d8c {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .center-887f {
    grid-template-columns: 1fr;
  }
  
  .backdrop_selected_4a77 {
    font-size: 1.75rem;
  }
  
  .breadcrumb_31b9 {
    order: -1;
    max-width: 100%;
  }
  
  .chip-cdfa {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .backdrop_selected_4a77 {
    font-size: 1.5rem;
  }
  
  .frame-6bd3 {
    font-size: 1rem;
  }
  
  .menu_4cc3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .chip-cdfa {
    max-width: 250px;
  }
}

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

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

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

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

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

.sidebar-in-087b {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.sidebar-in-087b:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

.grid-hovered-e5b6 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.shade-outer-a3f4 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.shade-outer-a3f4 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);
}

.shade-outer-a3f4 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;
}

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

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

.preview-copper-b701 {
  background: var(--color-bg-section);
}

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

.dirty-372d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer_1e3a 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) {
  .row_dynamic_733a {
    grid-template-columns: 1fr;
  }
  
  .outer_cb3f {
    font-size: 1.75rem;
  }
  
  .fixed-ac45 {
    max-width: 100%;
  }
}

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

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

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

.card-east-96ee {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.yellow-e508 {
  flex-shrink: 0;
}

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

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

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

.detail_right_e3f0,
.info-ccbd,
.top-2eb2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.detail_right_e3f0 thead,
.info-ccbd thead {
  background: var(--color-primary);
  color: white;
}

.detail_right_e3f0 th,
.detail_right_e3f0 td,
.info-ccbd th,
.info-ccbd td,
.top-2eb2 th,
.top-2eb2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .detail_right_e3f0 th,
  .detail_right_e3f0 td,
  .info-ccbd th,
  .info-ccbd td,
  .top-2eb2 th,
  .top-2eb2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .detail_right_e3f0,
  .info-ccbd,
  .top-2eb2 {
    min-width: 600px;
  }
}

.detail_right_e3f0 th,
.info-ccbd th,
.top-2eb2 th {
  font-weight: 600;
}

.detail_right_e3f0 tbody tr:hover,
.info-ccbd tbody tr:hover,
.top-2eb2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hero_83b7 h4 {
  color: white;
}

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

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

.middle-f562:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.modal-76a4 {
  color: #4caf50;
}

.bronze_af39 {
  color: #ff9800;
}

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

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

.link-black-0f00 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-fresh-1c80 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-9255 .gold-984e {
  width: 100%;
  background: white;
}

.stale_e5d4 .gold-984e {
  color: #667eea;
}

.center_1a10 .gold-984e {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .upper_1b15 {
    padding: var(--space-md);
  }
  
  .header-9236 {
    padding: var(--space-md);
  }
  
  .overlay_13e5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.bronze-574c,
.surface_gas_4474,
.brown_55e2,
.cool-07d5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.search-wood-58a5 {
  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) {
  .search-wood-58a5 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.fast-e1c8 .backdrop_4d2e {
  background: #e8f5e9;
  color: var(--color-success);
}

.description-c8b2 .backdrop_4d2e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.gold-7c75 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.west-48d8 {
  text-align: center;
}

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

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

.component-f380 .mask_action_d51e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.progress-lower-2a0b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.fresh-383d {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hover-928c {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.column-34a6 {
  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;
}

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

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

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

.cold_0d50 {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-iron-039d {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption-bottom-632e {
  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);
}

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

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

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

.chip-6407,
.right-5713 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.chip-6407 h4,
.right-5713 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.chip-6407 ul,
.right-5713 ul {
  list-style: none;
  padding: 0;
}

.chip-6407 li,
.right-5713 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.carousel-static-19df {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.carousel-static-19df ul {
  list-style: none;
  padding: 0;
}

.carousel-static-19df li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.top-26f0 {
  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);
}

.upper_ab1e {
  font-style: italic;
}

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

.chip-west-fcdb {
  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;
}

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

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

.tabs-fluid-896e {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.chip-7464 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

.motion_53af .layout_24d7 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.caption_center_87bd a:hover {
  color: white;
}

.dirty-6c96 {
  list-style: none;
  padding: 0;
}

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

.dirty-6c96 a {
  color: #b0b0b0;
  text-decoration: none;
}

.dirty-6c96 a:hover {
  color: white;
}

.input-62cd {
  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_lower_cfd1 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

@media (max-width: 768px) {
  .input-62cd {
    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;
  }
  
  .backdrop_selected_4a77 {
    font-size: 2rem;
  }
  
  .outer_cb3f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .center-887f,
  .row_dynamic_733a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent-adf5,
  .simple_36f6,
  .list_yellow_2096,
  .full_9877,
  .item_5252,
  .text-wood-fcee,
  .border-da54,
  .chip-7464 {
    grid-template-columns: 1fr;
  }
  
  .glass_8a5b {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .advanced_49f5 {
    padding: var(--space-lg) 0;
  }
  
  .shade-outer-a3f4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .shade-outer-a3f4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .gold-984e {
    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;
  }
  
  .glass_8a5b {
    grid-template-columns: 1fr;
  }
  
  .tooltip-simple-c65f,
  .tabs-fluid-896e,
  .backdrop_south_ae6f {
    flex-direction: column;
    width: 100%;
  }
  
  .main_gold_9b83,
  .grid-hovered-e5b6,
  .tooltip-simple-c65f .gold-984e,
  .tabs-fluid-896e .gold-984e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .backdrop_selected_4a77 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .outer_cb3f {
    font-size: 1.375rem;
  }
  
  .sort_purple_3666 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover-1601,
  .white-e141,
  .sidebar-complex-1d69,
  .card_hard_96ae,
  .next-594b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .search-wood-58a5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .white-40b2 {
    gap: var(--space-xs);
  }
  
  .gradient_selected_f1f6 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .article_motion_5161 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .component-f380 {
    width: 150px;
    height: 150px;
  }
  
  .fixed_ec03 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .surface_cool_4839,
  .list-c37f,
  .tooltip-simple-c65f,
  .chip-west-fcdb,
  .preview_251e,
  .glass_86d9,
  .component_2529 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .advanced_49f5 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.main_old_4752 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 9d9a */
.promo-block-t4 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.1;
}
