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

.card_47f8:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.first-de6c):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. */
.first-de6c,
header,
.silver_ef40,
.highlight-b27e,
.gradient_3e27,
.last-2a0e,
.warm_b805,
.hard-53ff,
.highlight-old-ed0e {
  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
   ============================================ */
.first-de6c {
  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);
}

.input-6c3b {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.first-de6c.old-21f1 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.advanced-d2f1 {
  flex: 1;
}

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

.logo-next-6638 {
  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);
}

.logo-next-6638:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.logo-next-6638.gradient-6b0c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.narrow_cf75 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .advanced-d2f1 {
    display: none;
  }
  
  .caption_advanced_7d2e {
    display: flex;
  }
  
  .new-f74c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .narrow_cf75,
  .form_9dd7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .feature_83de {
    position: relative;
  }
  
  .accordion-d3ad {
    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;
  }
  
  .nav_b52c[aria-expanded="true"] + .accordion-d3ad {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .list_north_6c3e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content_wood_43e2 {
    gap: 8px;
  }
  
  .narrow_cf75 {
    display: none;
  }
  
  .form_9dd7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .aside_bfe4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.popup_3cc3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.wide-7cb8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.wide-7cb8 a:hover {
  text-decoration: underline;
}

.thick-43c8 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.backdrop-liquid-0222 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .hard-da95 {
    grid-template-columns: 1fr;
  }
  
  .warm-304e {
    font-size: 1.75rem;
  }
  
  .backdrop-liquid-0222 {
    order: -1;
    max-width: 100%;
  }
  
  .link_f9a3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .warm-304e {
    font-size: 1.5rem;
  }
  
  .liquid-2e16 {
    font-size: 1rem;
  }
  
  .wide-7cb8 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .link_f9a3 {
    max-width: 250px;
  }
}

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

.short-1f14 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop_in_92ea h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

.block_purple_402d 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) {
  .soft-1d60 {
    grid-template-columns: 1fr;
  }
  
  .header_70e5 {
    font-size: 1.75rem;
  }
  
  .backdrop_in_92ea {
    max-width: 100%;
  }
}

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

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

.filter-action-eecb {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.surface-59fb {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

.primary-hovered-1d65 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.outline-gas-69d1 {
  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;
}

.brown-895f {
  flex-shrink: 0;
}

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

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

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

.component_white_1a53,
.layout-fec7,
.frame_hard_54f8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.component_white_1a53 thead,
.layout-fec7 thead {
  background: var(--color-primary);
  color: white;
}

.component_white_1a53 th,
.component_white_1a53 td,
.layout-fec7 th,
.layout-fec7 td,
.frame_hard_54f8 th,
.frame_hard_54f8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .component_white_1a53 th,
  .component_white_1a53 td,
  .layout-fec7 th,
  .layout-fec7 td,
  .frame_hard_54f8 th,
  .frame_hard_54f8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .component_white_1a53,
  .layout-fec7,
  .frame_hard_54f8 {
    min-width: 600px;
  }
}

.component_white_1a53 th,
.layout-fec7 th,
.frame_hard_54f8 th {
  font-weight: 600;
}

.component_white_1a53 tbody tr:hover,
.layout-fec7 tbody tr:hover,
.frame_hard_54f8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.input-54ef h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.photo-049d {
  font-weight: 600;
  color: white;
}

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

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

.icon_lower_4c16 {
  color: #4caf50;
}

.bright_4623 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange-9a81 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.text_hot_ca80 .accent_smooth_8911 {
  width: 100%;
  background: white;
}

.border-f1b5 .accent_smooth_8911 {
  color: #667eea;
}

.narrow-047e .accent_smooth_8911 {
  color: #f5576c;
}

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

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

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

.solid-207f {
  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);
}

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

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

@media (max-width: 768px) {
  .lower_aa72 {
    padding: var(--space-md);
  }
  
  .component_d7ca {
    padding: var(--space-md);
  }
  
  .accent-2b4d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.mini-52a5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.label-62de,
.middle_d528,
.under-e759,
.photo-34fe {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.notification-mini-8df4 {
  border-color: var(--color-success);
}

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

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

.notification-mini-8df4 .search_5ff7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.gold_7fa2 .search_5ff7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

.media-advanced-ac3c p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-f51f {
  text-align: center;
}

.summary-1ee2 {
  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);
}

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

.summary-1ee2 .photo-049d {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-inner-6e65 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.clean_8d08 {
  text-align: right;
}

.clean_8d08 .grid-up-18d5 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.gold-3ad9 {
  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);
}

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

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

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

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

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

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

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

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

.paper-524d {
  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);
}

.paper-524d:hover {
  background: var(--color-bg-alt);
}

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

.paper-524d[aria-expanded="true"] .menu-3016 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card_78c7 ul,
.outline_light_fa84 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

.detail-ac75 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.current_e19c {
  font-style: italic;
}

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

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

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

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

.pagination-glass-f08b {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_a170 .accordion_89f9 {
  color: #4caf50;
  font-size: 0.875rem;
}

.secondary-926a {
  list-style: none;
  padding: 0;
}

.secondary-926a li {
  margin-bottom: var(--space-xs);
}

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

.secondary-926a a:hover {
  color: white;
}

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

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

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

.list_b363 a:hover {
  color: white;
}

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

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

.modal-hard-ec42 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .footer-b571 {
    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;
  }
  
  .warm-304e {
    font-size: 2rem;
  }
  
  .header_70e5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .hard-da95,
  .soft-1d60 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary_5e38,
  .easy-2ce8,
  .small-4a20,
  .caption_c52e,
  .disabled_outer_7e35,
  .button_middle_22c9,
  .main_1cff,
  .search-ea8e {
    grid-template-columns: 1fr;
  }
  
  .tabs_57f9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .warm_b805 {
    padding: var(--space-lg) 0;
  }
  
  .tabs_down_29f8 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tabs_down_29f8 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accent_smooth_8911 {
    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;
  }
  
  .tabs_57f9 {
    grid-template-columns: 1fr;
  }
  
  .border-ee02,
  .pagination-glass-f08b,
  .feature-brown-f8a7 {
    flex-direction: column;
    width: 100%;
  }
  
  .photo_dfca,
  .article_28dd,
  .border-ee02 .accent_smooth_8911,
  .pagination-glass-f08b .accent_smooth_8911 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .warm-304e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .header_70e5 {
    font-size: 1.375rem;
  }
  
  .heading-steel-ab03 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .aside_simple_ee5b,
  .table_narrow_1c5d,
  .tag-f0de,
  .picture-pink-bc4f,
  .thumbnail_758a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .preview-left-b957 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .box_in_4c69 {
    gap: var(--space-xs);
  }
  
  .popup_3cc3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .filter-d2dd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .summary-1ee2 {
    width: 150px;
    height: 150px;
  }
  
  .over-8eb7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .first-de6c,
  .silver_ef40,
  .border-ee02,
  .info_advanced_653b,
  .hard-53ff,
  .highlight-old-ed0e,
  .caption_advanced_7d2e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .warm_b805 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: f18c */
.ghost-box-r3 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
