/* ============================================
   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)
   ============================================ */
.title-stale-8d29 {
  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;
}

.title-stale-8d29:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.upper_2261):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. */
.upper_2261,
header,
.info-stale-cff1,
.button_full_c35f,
.border-3c7d,
.short-448a,
.inner_294e,
.heading_9f85,
.hover-first-8405 {
  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
   ============================================ */
.upper_2261 {
  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);
}

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

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

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

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

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

.overlay-bronze-8103 img {
  height: 36px;
  width: auto;
  display: block;
}

.medium-367f {
  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;
}

.south-bede {
  flex: 1;
}

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

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

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

.component_medium_b13f.tiny-8ddd {
  background: var(--color-primary);
  color: white;
}

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

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

.detail-small-6986 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.heading-thick-5f9c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.status_large_4e89 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .south-bede::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .south-bede.wrapper_bottom_20ec {
    display: block;
    right: 0;
  }
  
  .accent-last-3750 {
    flex-direction: column;
    gap: 0;
  }
  
  .component_medium_b13f {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .south-bede::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;
  }
  
  .south-bede.wrapper_bottom_20ec::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .south-bede {
    display: none;
  }
  
  .down_7527 {
    display: flex;
  }
  
  .medium-367f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .status_large_4e89,
  .wrapper_c7a0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .image_out_5d43 {
    position: relative;
  }
  
  .bottom_fe9c {
    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;
  }
  
  .detail-small-6986[aria-expanded="true"] + .bottom_fe9c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .texture-liquid-8182 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .heading-thick-5f9c {
    gap: 8px;
  }
  
  .status_large_4e89 {
    display: none;
  }
  
  .wrapper_c7a0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .overlay-bronze-8103 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.outer_71be svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.preview-focused-08b1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.preview-focused-08b1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.list-833f {
  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;
}

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

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

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

.chip-basic-d65c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.blue-cd07 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .shadow_41e3 {
    grid-template-columns: 1fr;
  }
  
  .title_narrow_dc27 {
    font-size: 1.75rem;
  }
  
  .column_66b3 {
    order: -1;
    max-width: 100%;
  }
  
  .blue-cd07 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .title_narrow_dc27 {
    font-size: 1.5rem;
  }
  
  .tooltip-tiny-332d {
    font-size: 1rem;
  }
  
  .preview-focused-08b1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .blue-cd07 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.column-white-67ff {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.last-185e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.border-6ca0 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.border-6ca0 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);
}

.border-6ca0 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;
}

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

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

.badge-action-0244 {
  background: var(--color-bg-section);
}

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

.complex-4bf3 {
  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);
}

.input-full-c55a {
  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);
}

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

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

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

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

.form-62b9 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.form-62b9 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);
}

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

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

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

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

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

.form-62b9 strong {
  font-weight: 600;
  color: var(--color-text);
}

.form-62b9 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-62b9 a:hover {
  color: var(--color-primary-dark);
}

.fixed-5fe7 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.fixed-5fe7 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) {
  .mask_prev_b2a9 {
    grid-template-columns: 1fr;
  }
  
  .input-full-c55a {
    font-size: 1.75rem;
  }
  
  .form-62b9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .input-full-c55a {
    font-size: 1.5rem;
  }
  
  .form-62b9 h3 {
    font-size: 1.375rem;
  }
  
  .form-62b9 h4 {
    font-size: 1.125rem;
  }
}

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

.media-261b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

.alert-focused-5f6c strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.under-63d7 {
  flex-shrink: 0;
}

.table-warm-8bb9 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.photo-dbcc,
.outline-simple-b4ed,
.row_simple_79cf {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo-dbcc thead,
.outline-simple-b4ed thead {
  background: var(--color-primary);
  color: white;
}

.photo-dbcc th,
.photo-dbcc td,
.outline-simple-b4ed th,
.outline-simple-b4ed td,
.row_simple_79cf th,
.row_simple_79cf td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .photo-dbcc th,
  .photo-dbcc td,
  .outline-simple-b4ed th,
  .outline-simple-b4ed td,
  .row_simple_79cf th,
  .row_simple_79cf td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .photo-dbcc,
  .outline-simple-b4ed,
  .row_simple_79cf {
    min-width: 600px;
  }
}

.photo-dbcc th,
.outline-simple-b4ed th,
.row_simple_79cf th {
  font-weight: 600;
}

.photo-dbcc tbody tr:hover,
.outline-simple-b4ed tbody tr:hover,
.row_simple_79cf tbody tr:hover {
  background: var(--color-bg-alt);
}

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

/* ============================================
   14. SIDEBAR
   ============================================ */
.search-red-6b73 {
  position: sticky;
  top: 80px;
  align-self: start;
}

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

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

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

.info-liquid-9468 h4 {
  color: white;
}

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

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

.short-edc4:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.summary-6184 {
  font-weight: 600;
  color: white;
}

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

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

.gas-6de7 {
  color: #4caf50;
}

.right-010d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.secondary-lite-7e92:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solid-38be {
  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;
}

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

.secondary-lite-7e92 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component_steel_d792 .wrapper_focused_a9be {
  width: 100%;
  background: white;
}

.smooth-047b .wrapper_focused_a9be {
  color: #667eea;
}

.panel-motion-033a .wrapper_focused_a9be {
  color: #f5576c;
}

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

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

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

.bright-85ec {
  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);
}

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

.footer-steel-cf85 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .popup-6388 {
    padding: var(--space-md);
  }
  
  .footer-steel-cf85 {
    padding: var(--space-md);
  }
  
  .wide_077d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dirty-a2de,
.primary_advanced_0b3e,
.current_892e,
.stale_4b6e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.thumbnail-cool-b64d h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.glass-ac6a .tertiary-large-ede8 {
  background: #e8f5e9;
  color: var(--color-success);
}

.card-aca0 .tertiary-large-ede8 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-copper-1d67 {
  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);
}

.accordion-4223 {
  text-align: center;
}

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

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

.sort_wood_afe2 .summary-6184 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.column-thick-6cb4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.nav-gas-408b {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

.logo-orange-56c3 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.wrapper-06e2 {
  text-align: right;
}

.wrapper-06e2 .tabs_228f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.static-e361 {
  background: #e3f2fd;
  color: #1565c0;
}

.frame-4bd3 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.tertiary-bright-fbf5 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-blue-ee6f {
  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);
}

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

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

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

.footer_2249,
.sidebar-6d19 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.footer_2249 h4,
.sidebar-6d19 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.footer_2249 ul,
.sidebar-6d19 ul {
  list-style: none;
  padding: 0;
}

.footer_2249 li,
.sidebar-6d19 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.widget-tall-7f5f {
  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);
}

.glass_44ec {
  font-style: italic;
}

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

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

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

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

.background-978c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.video_right_179f .header_8a28 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.active_09ac a:hover {
  color: white;
}

.content-2cf5 {
  list-style: none;
  padding: 0;
}

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

.content-2cf5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.content-2cf5 a:hover {
  color: white;
}

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

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

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

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

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

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

.filter-in-a49e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .first_a194 {
    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;
  }
  
  .title_narrow_dc27 {
    font-size: 2rem;
  }
  
  .input-full-c55a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow_41e3,
  .mask_prev_b2a9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .nav_copper_e39d,
  .photo_basic_8c45,
  .pink-adb5,
  .small-7e7a,
  .container-advanced-f90e,
  .complex-98ac,
  .black_7eb2,
  .steel-f2dc {
    grid-template-columns: 1fr;
  }
  
  .highlight-first-1b11 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .inner_294e {
    padding: var(--space-lg) 0;
  }
  
  .border-6ca0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .border-6ca0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wrapper_focused_a9be {
    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;
  }
  
  .highlight-first-1b11 {
    grid-template-columns: 1fr;
  }
  
  .chip-basic-d65c,
  .background-978c,
  .icon-tall-82ba {
    flex-direction: column;
    width: 100%;
  }
  
  .column-white-67ff,
  .last-185e,
  .chip-basic-d65c .wrapper_focused_a9be,
  .background-978c .wrapper_focused_a9be {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .title_narrow_dc27 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .input-full-c55a {
    font-size: 1.375rem;
  }
  
  .simple-c774 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty_7895,
  .secondary-lite-7e92,
  .box-clean-f4c6,
  .element_9a68,
  .notice_purple_87d1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .paragraph_03da {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .focus_advanced_5471 {
    gap: var(--space-xs);
  }
  
  .outer_71be {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .prev-5717 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sort_wood_afe2 {
    width: 150px;
    height: 150px;
  }
  
  .header-760f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .upper_2261,
  .info-stale-cff1,
  .chip-basic-d65c,
  .slow_9a79,
  .heading_9f85,
  .hover-first-8405,
  .down_7527 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .inner_294e {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 9ad7 */
.promo-block-m6 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
