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

.iron_5632:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .panel-current-8add {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .panel-current-8add {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.wrapper-easy-089f):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. */
.wrapper-easy-089f,
header,
.left_de73,
.icon-blue-6eb2,
.slow-c3dd,
.tag-517f,
.summary-ad0f,
.soft-c510,
.text-f6b2 {
  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
   ============================================ */
.wrapper-easy-089f {
  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);
}

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

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

/* Scrolled state */
.wrapper-easy-089f.info-pro-9e2c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.hovered_a15e {
  flex: 1;
}

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

.alert-fresh-bc39 {
  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);
}

.alert-fresh-bc39:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.alert-fresh-bc39.card_tall_2d62 {
  background: var(--color-primary);
  color: white;
}

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

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

.static-a5e7 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.motion-8cd1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .hovered_a15e {
    display: none;
  }
  
  .plasma-fff0 {
    display: flex;
  }
  
  .fresh_5f24 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .motion-8cd1,
  .background_new_c4c4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .up_72ac {
    position: relative;
  }
  
  .over-adfd {
    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;
  }
  
  .static-a5e7[aria-expanded="true"] + .over-adfd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tag_hard_ecaf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gas-0e8a {
    gap: 8px;
  }
  
  .motion-8cd1 {
    display: none;
  }
  
  .background_new_c4c4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .detail_up_e201 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.surface_67cb svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.surface-tall-2508 a {
  color: var(--color-primary);
  text-decoration: none;
}

.surface-tall-2508 a:hover {
  text-decoration: underline;
}

.list-top-227c {
  color: var(--color-text-lighter);
}

.image-glass-3fc2 {
  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) {
  .image-glass-3fc2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .image-glass-3fc2 {
    font-size: 1.5rem;
  }
}

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

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

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

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

.pagination-wide-eb3a {
  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;
}

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

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

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

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

.texture-current-c476 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .wrapper_cold_c5db {
    grid-template-columns: 1fr;
  }
  
  .image-glass-3fc2 {
    font-size: 1.75rem;
  }
  
  .texture-current-c476 {
    order: -1;
    max-width: 100%;
  }
  
  .brown_aa7a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .image-glass-3fc2 {
    font-size: 1.5rem;
  }
  
  .secondary-fc4d {
    font-size: 1rem;
  }
  
  .surface-tall-2508 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .brown_aa7a {
    max-width: 250px;
  }
}

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

.menu-simple-1dee {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma-42e6 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.plasma-42e6 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);
}

.plasma-42e6 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;
}

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

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

.box-copper-3871 {
  background: var(--color-bg-section);
}

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

.list-5eea {
  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);
}

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

.card-iron-206f {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

.tall-87b6 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.tall-87b6 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);
}

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

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

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

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

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

.tall-87b6 strong {
  font-weight: 600;
  color: var(--color-text);
}

.tall-87b6 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tall-87b6 a:hover {
  color: var(--color-primary-dark);
}

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

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

.breadcrumb-fc7e 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) {
  .status-dark-dc13 {
    grid-template-columns: 1fr;
  }
  
  .menu-c555 {
    font-size: 1.75rem;
  }
  
  .tall-87b6 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .menu-c555 {
    font-size: 1.5rem;
  }
  
  .tall-87b6 h3 {
    font-size: 1.375rem;
  }
  
  .tall-87b6 h4 {
    font-size: 1.125rem;
  }
}

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

.stale-1a9a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.video-dark-70c6 {
  flex-shrink: 0;
}

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

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

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

.last-6ee5,
.center_68bb,
.texture-clean-b9ef {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.last-6ee5 thead,
.center_68bb thead {
  background: var(--color-primary);
  color: white;
}

.last-6ee5 th,
.last-6ee5 td,
.center_68bb th,
.center_68bb td,
.texture-clean-b9ef th,
.texture-clean-b9ef td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .last-6ee5 th,
  .last-6ee5 td,
  .center_68bb th,
  .center_68bb td,
  .texture-clean-b9ef th,
  .texture-clean-b9ef td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .last-6ee5,
  .center_68bb,
  .texture-clean-b9ef {
    min-width: 600px;
  }
}

.last-6ee5 th,
.center_68bb th,
.texture-clean-b9ef th {
  font-weight: 600;
}

.last-6ee5 tbody tr:hover,
.center_68bb tbody tr:hover,
.texture-clean-b9ef tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.focused_9733 h4 {
  color: white;
}

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

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

.dropdown-ebbe:last-child {
  border-bottom: none;
}

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

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

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

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

.copper-d379:hover {
  text-decoration: underline;
}

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

.iron-32e3 {
  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);
}

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

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

.form-16cf {
  list-style: none;
  padding: 0;
}

.form-16cf li {
  padding: var(--space-xs) 0;
}

.white_1bf9 {
  color: #4caf50;
}

.focus-wide-9df1 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.filter-9b30 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-6f30 .easy-02a4 {
  width: 100%;
  background: white;
}

.background-4899 .easy-02a4 {
  color: #667eea;
}

.frame-88de .easy-02a4 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .slider-cad1 {
    padding: var(--space-md);
  }
  
  .mask_green_020d {
    padding: var(--space-md);
  }
  
  .nav-out-e484 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.pagination-silver-500e ol,
.pagination-silver-500e ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.pagination-silver-500e li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pattern_6d3a,
.tabs-bdfe,
.last_80e5,
.content-hot-cc9c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_84e4 .up-b482 {
  background: #e8f5e9;
  color: var(--color-success);
}

.bright_ff79 .up-b482 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_038c {
  text-align: center;
}

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

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

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

.component-gas-6ca3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

.list-9b16 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.card-last-ab4c {
  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;
}

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

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

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

.grid-ffb2 {
  text-align: right;
}

.grid-ffb2 .notice_fluid_7fd5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.upper-0c43 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tag-light-a66b:hover {
  background: var(--color-bg-alt);
}

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

.tag-light-a66b[aria-expanded="true"] .lower_f8a4 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-motion-40b0,
.iron-fd1f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.message-motion-40b0 h4,
.iron-fd1f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.message-motion-40b0 ul,
.iron-fd1f ul {
  list-style: none;
  padding: 0;
}

.message-motion-40b0 li,
.iron-fd1f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.breadcrumb-brown-29f6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.breadcrumb-brown-29f6 ul {
  list-style: none;
  padding: 0;
}

.breadcrumb-brown-29f6 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.highlight-south-7881 {
  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);
}

.tiny_c642 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-hovered-ee05 .hover_da16 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.progress_top_ab4a a:hover {
  color: white;
}

.component-dfa0 {
  list-style: none;
  padding: 0;
}

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

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

.component-dfa0 a:hover {
  color: white;
}

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

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

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

.layout-light-2a07 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.action-6ec6:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .last_73b3 {
    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;
  }
  
  .image-glass-3fc2 {
    font-size: 2rem;
  }
  
  .menu-c555 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .wrapper_cold_c5db,
  .status-dark-dc13 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box-hard-f906,
  .stone-d268,
  .fast_b63c,
  .fixed_218d,
  .image-34da,
  .button-aaea,
  .disabled_97a1,
  .bright_61c7 {
    grid-template-columns: 1fr;
  }
  
  .media_slow_0d61 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary-ad0f {
    padding: var(--space-lg) 0;
  }
  
  .plasma-42e6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .plasma-42e6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .easy-02a4 {
    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;
  }
  
  .media_slow_0d61 {
    grid-template-columns: 1fr;
  }
  
  .pattern_easy_cdca,
  .brown-fe1e,
  .tertiary-b59d {
    flex-direction: column;
    width: 100%;
  }
  
  .texture-9157,
  .block_ba46,
  .pattern_easy_cdca .easy-02a4,
  .brown-fe1e .easy-02a4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .image-glass-3fc2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .menu-c555 {
    font-size: 1.375rem;
  }
  
  .simple_b691 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture-red-4620,
  .overlay-af69,
  .in_6338,
  .wood_c9d1,
  .lite-8473 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .widget_cold_5d3b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .article_0ee3 {
    gap: var(--space-xs);
  }
  
  .surface_67cb {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .iron-32e3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .container_hard_e352 {
    width: 150px;
    height: 150px;
  }
  
  .image_e561 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .wrapper-easy-089f,
  .left_de73,
  .pattern_easy_cdca,
  .smooth-a6a2,
  .soft-c510,
  .text-f6b2,
  .plasma-fff0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary-ad0f {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9944 */
.phantom-card-c5 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
