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

.badge-7247:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.brown_b35d):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. */
.brown_b35d,
header,
.pagination-prev-0645,
.complex-adbb,
.aside-3eb8,
.description-ab71,
.tooltip_silver_5cb9,
.gold-445c,
.first-2bf0 {
  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
   ============================================ */
.brown_b35d {
  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);
}

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

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

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

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

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

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

.column-pro-655f {
  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;
}

.image-7d49 {
  flex: 1;
}

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

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

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

.dynamic_d190.current-3685 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.simple-c4de {
  position: relative;
}

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

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

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

.east-22f3 {
  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;
}

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

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

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

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

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

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

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

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

.image_orange_8e0d svg {
  flex-shrink: 0;
}

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

.motion-9d87: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);
}

.motion-9d87 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .image-7d49::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .image-7d49.component-5ac0 {
    display: block;
    right: 0;
  }
  
  .form_bdc9 {
    flex-direction: column;
    gap: 0;
  }
  
  .dynamic_d190 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .image-7d49::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;
  }
  
  .image-7d49.component-5ac0::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .image-7d49 {
    display: none;
  }
  
  .item_pressed_618d {
    display: flex;
  }
  
  .column-pro-655f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .image_orange_8e0d,
  .motion-9d87 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .simple-c4de {
    position: relative;
  }
  
  .east-22f3 {
    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;
  }
  
  .box_1afc[aria-expanded="true"] + .east-22f3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .picture_2ce2 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .row_solid_0a72 {
    gap: 8px;
  }
  
  .image_orange_8e0d {
    display: none;
  }
  
  .motion-9d87 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .status_orange_9c2a img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.aside-6dc3 svg {
  flex-shrink: 0;
}

.aside-6dc3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.aside-6dc3 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.feature-hard-d5ee a {
  color: var(--color-primary);
  text-decoration: none;
}

.feature-hard-d5ee a:hover {
  text-decoration: underline;
}

.item-21ed {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.filter-south-87eb {
  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;
}

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

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

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

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

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

.primary-steel-630a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .image-d042 {
    grid-template-columns: 1fr;
  }
  
  .focus_large_2920 {
    font-size: 1.75rem;
  }
  
  .light-e3a1 {
    order: -1;
    max-width: 100%;
  }
  
  .primary-steel-630a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .focus_large_2920 {
    font-size: 1.5rem;
  }
  
  .hard-b323 {
    font-size: 1rem;
  }
  
  .feature-hard-d5ee {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .primary-steel-630a {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.small-5c6b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-stone-3ebc {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-pressed-24f3 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.layout-pressed-24f3 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) {
  .outline-2c18 {
    grid-template-columns: 1fr;
  }
  
  .summary_4b62 {
    font-size: 1.75rem;
  }
  
  .overlay_0367 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.outer-a870 {
  flex-shrink: 0;
}

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

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

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

.hero-hovered-5e22,
.hero_40f0,
.disabled_tall_443d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hero-hovered-5e22 thead,
.hero_40f0 thead {
  background: var(--color-primary);
  color: white;
}

.hero-hovered-5e22 th,
.hero-hovered-5e22 td,
.hero_40f0 th,
.hero_40f0 td,
.disabled_tall_443d th,
.disabled_tall_443d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-hovered-5e22 th,
  .hero-hovered-5e22 td,
  .hero_40f0 th,
  .hero_40f0 td,
  .disabled_tall_443d th,
  .disabled_tall_443d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hero-hovered-5e22,
  .hero_40f0,
  .disabled_tall_443d {
    min-width: 600px;
  }
}

.hero-hovered-5e22 th,
.hero_40f0 th,
.disabled_tall_443d th {
  font-weight: 600;
}

.hero-hovered-5e22 tbody tr:hover,
.hero_40f0 tbody tr:hover,
.disabled_tall_443d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.chip_fc33 h4 {
  color: white;
}

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

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

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

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

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

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

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

.warm-0ee3:hover {
  text-decoration: underline;
}

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

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

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

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

.mini-20b2 {
  list-style: none;
  padding: 0;
}

.mini-20b2 li {
  padding: var(--space-xs) 0;
}

.tooltip-upper-4f57 {
  color: #4caf50;
}

.notice_bright_392d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.wrapper-copper-2bde:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.status-cool-55c2 {
  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;
}

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

.wrapper-copper-2bde p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card_over_d84a .first-7db3 {
  width: 100%;
  background: white;
}

.column_0101 .first-7db3 {
  color: #667eea;
}

.message-north-502c .first-7db3 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .badge_black_a204 {
    padding: var(--space-md);
  }
  
  .input_basic_a615 {
    padding: var(--space-md);
  }
  
  .input-yellow-7803 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.tooltip-55ab li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.bronze_c5f5,
.footer-1b8c,
.iron-bd8f,
.info_7003 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.dark-25f1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.static-f309 .table_d354 {
  background: #e8f5e9;
  color: var(--color-success);
}

.backdrop-e539 .table_d354 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.picture-7f08 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.filter-bronze-6323 {
  margin-top: var(--space-xxl);
}

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

.footer_ce0a {
  text-align: center;
}

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

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

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

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

.banner-left-b99d p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.frame-4bc3 {
  margin-bottom: var(--space-xl);
}

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

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

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

.caption-short-5b89 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.summary-632b {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.dark-aa3c {
  border: 2px solid #4caf50;
}

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

.narrow-6a35 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.logo-6b2e {
  text-align: right;
}

.logo-6b2e .description_038e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.focused-794b {
  background: #e8f5e9;
  color: #2e7d32;
}

.white-a575 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.tag-clean-7d0f {
  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);
}

.tag-clean-7d0f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.pro-030b strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.basic_c821[aria-expanded="true"] .next-9710 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary_62b1 ul,
.fresh_2399 ul {
  list-style: none;
  padding: 0;
}

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

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

@media (max-width: 768px) {
  .link-orange-0d85 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.detail_short_ae01 {
  font-style: italic;
}

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

.pattern-03c7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_iron_74d5 .hard-ba81 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hidden-0078 {
  list-style: none;
  padding: 0;
}

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

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

.hidden-0078 a:hover {
  color: white;
}

.advanced-1cdc {
  list-style: none;
  padding: 0;
}

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

.advanced-1cdc a {
  color: #b0b0b0;
  text-decoration: none;
}

.advanced-1cdc a:hover {
  color: white;
}

.hero-70ed {
  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);
}

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

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

.media-7db3 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .hero-70ed {
    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;
  }
  
  .focus_large_2920 {
    font-size: 2rem;
  }
  
  .summary_4b62 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .image-d042,
  .outline-2c18 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .last_ae74,
  .notification_pro_3990,
  .element-aa58,
  .in_6e57,
  .sidebar_action_1c11,
  .link-orange-0d85,
  .photo-f6c2,
  .carousel_04c2 {
    grid-template-columns: 1fr;
  }
  
  .green_5824 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip_silver_5cb9 {
    padding: var(--space-lg) 0;
  }
  
  .aside_667f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside_667f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .first-7db3 {
    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;
  }
  
  .green_5824 {
    grid-template-columns: 1fr;
  }
  
  .secondary_a71f,
  .iron_d997,
  .hover_f6f1 {
    flex-direction: column;
    width: 100%;
  }
  
  .glass_2d4f,
  .small-5c6b,
  .secondary_a71f .first-7db3,
  .iron_d997 .first-7db3 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .focus_large_2920 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .summary_4b62 {
    font-size: 1.375rem;
  }
  
  .surface-wide-2148 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tertiary-blue-6242,
  .wrapper-copper-2bde,
  .medium-70e6,
  .top_f4bc,
  .smooth_4aa6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .card-17eb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .middle-e0c4 {
    gap: var(--space-xs);
  }
  
  .aside-6dc3 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .badge_dirty_a218 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .link_large_986d {
    width: 150px;
    height: 150px;
  }
  
  .tertiary_green_5718 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .brown_b35d,
  .pagination-prev-0645,
  .secondary_a71f,
  .pattern-03c7,
  .gold-445c,
  .first-2bf0,
  .item_pressed_618d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip_silver_5cb9 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: e755 */
.promo-block-v6 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.3;
}
