/* ============================================
   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)
   ============================================ */
.soft_a977 {
  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;
}

.soft_a977:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.content_down_60c9 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .content_down_60c9 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .content_down_60c9 {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.breadcrumb_wood_1ffe):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb_wood_1ffe,
header,
.green-ad68,
.solid_4900,
.wrapper-new-1b42,
.dim-22c0,
.logo-inner-35cf,
.stone-c196,
.background_hot_61fb {
  max-width: none;
}

/* 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
   ============================================ */
.breadcrumb_wood_1ffe {
  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);
}

.tooltip_1ee8 {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.breadcrumb_wood_1ffe.aside_pressed_29f5 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.item-last-3aa1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.purple_a98b {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.accordion_61a7 img {
  height: 36px;
  width: auto;
  display: block;
}

.modal-hard-c52c {
  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;
}

.disabled_7d33 {
  flex: 1;
}

.label-3c6f {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.thumbnail-8bdf {
  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);
}

.thumbnail-8bdf:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.thumbnail-8bdf.avatar_72cc {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.modal-current-97f3 {
  position: relative;
}

.sort_820c {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.sort_820c svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.modal-current-97f3:hover .sort_820c svg,
.sort_820c[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.fresh-6419 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.modal-current-97f3:hover .fresh-6419 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.fresh-6419::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.notification-4a03 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.notification-4a03:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.notification-4a03[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.progress-red-bf47 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.element_f767 {
  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;
}

.element_f767:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.element_f767 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.lite_4f64 {
  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;
}

.lite_4f64: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);
}

.lite_4f64 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.background_prev_d634 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.badge-6c3c {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.background_prev_d634[aria-expanded="true"] .badge-6c3c:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.background_prev_d634[aria-expanded="true"] .badge-6c3c:nth-child(2) {
  opacity: 0;
}

.background_prev_d634[aria-expanded="true"] .badge-6c3c:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .disabled_7d33 {
    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 */
  }

  .disabled_7d33::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .disabled_7d33.dim-b4a9 {
    display: block;
    right: 0;
  }
  
  .label-3c6f {
    flex-direction: column;
    gap: 0;
  }
  
  .thumbnail-8bdf {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .disabled_7d33::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;
  }
  
  .disabled_7d33.dim-b4a9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .disabled_7d33 {
    display: none;
  }
  
  .background_prev_d634 {
    display: flex;
  }
  
  .modal-hard-c52c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .element_f767,
  .lite_4f64 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal-current-97f3 {
    position: relative;
  }
  
  .fresh-6419 {
    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;
  }
  
  .sort_820c[aria-expanded="true"] + .fresh-6419 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notification-4a03 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .progress-red-bf47 {
    gap: 8px;
  }
  
  .element_f767 {
    display: none;
  }
  
  .lite_4f64 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .accordion_61a7 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .lite_4f64 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .lite_4f64 svg {
    width: 14px;
    height: 14px;
  }
  
  .item-last-3aa1 {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.green-ad68 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.slow-a8bd {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.status_e3ec {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status_e3ec svg {
  flex-shrink: 0;
}

.status_e3ec a {
  color: var(--color-primary);
  text-decoration: none;
}

.status_e3ec a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .slow-a8bd {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.solid_4900 {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.right_f8ba {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .right_f8ba {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.green_8518 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.green_8518 a {
  color: var(--color-primary);
  text-decoration: none;
}

.green_8518 a:hover {
  text-decoration: underline;
}

.accordion-basic-6c09 {
  color: var(--color-text-lighter);
}

.column-35d9 {
  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) {
  .column-35d9 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .column-35d9 {
    font-size: 1.5rem;
  }
}

.pressed_2c1b {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.pagination-lite-a221 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .pagination-lite-a221 {
    grid-template-columns: 1fr;
  }
}

.gradient-wide-1197 {
  display: flex;
  gap: var(--space-sm);
}

.solid-bb32 {
  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;
}

.text-stale-cab3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.text-stale-cab3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.text-stale-cab3 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.wrapper_f8c8 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.surface_d830 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-5dae {
  position: relative;
  text-align: center;
}

.logo-5dae img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.inner-5525 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.full-d427 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.link_a901 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.overlay_d343 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.dirty-ff3c {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.lower_810b {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .right_f8ba {
    grid-template-columns: 1fr;
  }
  
  .column-35d9 {
    font-size: 1.75rem;
  }
  
  .surface_d830 {
    order: -1;
    max-width: 100%;
  }
  
  .logo-5dae {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .column-35d9 {
    font-size: 1.5rem;
  }
  
  .pressed_2c1b {
    font-size: 1rem;
  }
  
  .green_8518 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .logo-5dae {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.cool-9abd {
  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;
}

.filter-dirty-f4dc {
  background: var(--color-primary);
  color: white;
}

.filter-dirty-f4dc:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.highlight-next-db11 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.highlight-next-db11:hover {
  background: var(--color-primary);
  color: white;
}

.fresh-076c {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.fresh-076c:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.slider_1d11 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.slider_69b3 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.wrapper-new-1b42 {
  padding: var(--space-xl) 0;
  background: white;
}

.accordion_7439 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.hover-blue-ae2b {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.hover-blue-ae2b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.easy_c838 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.modal_action_d61b {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.cold_3f37 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.dim-22c0 {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.popup_east_1696 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.widget-7e3c {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.overlay_bright_aade {
  list-style: none;
  counter-reset: toc-counter;
}

.overlay_bright_aade li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.overlay_bright_aade 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);
}

.overlay_bright_aade 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;
}

.overlay_bright_aade li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.logo-inner-35cf {
  padding: var(--space-xxl) 0;
}

.list_2e94 {
  background: var(--color-bg-section);
}

.frame_8693 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.stone_0c99 {
  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);
}

.middle-d9ee {
  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);
}

.shade-332d {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.summary_6ec2 {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .summary_6ec2 {
    grid-template-columns: 1fr 300px;
  }
}

.action_8f69 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.action_8f69 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.action_8f69 pre,
.action_8f69 code {
  overflow-x: auto;
  max-width: 100%;
}

.action_8f69 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);
}

.action_8f69 h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.action_8f69 h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.action_8f69 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.action_8f69 ul,
.action_8f69 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.action_8f69 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.action_8f69 strong {
  font-weight: 600;
  color: var(--color-text);
}

.action_8f69 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.action_8f69 a:hover {
  color: var(--color-primary-dark);
}

.narrow-58f4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.narrow-58f4 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.narrow-58f4 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) {
  .summary_6ec2 {
    grid-template-columns: 1fr;
  }
  
  .middle-d9ee {
    font-size: 1.75rem;
  }
  
  .action_8f69 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .middle-d9ee {
    font-size: 1.5rem;
  }
  
  .action_8f69 h3 {
    font-size: 1.375rem;
  }
  
  .action_8f69 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.gradient_383f {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.purple-233d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.info-first-73bd {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.accordion-2a58 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.in-1ca2 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.widget_hard_ffac {
  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;
}

.glass-cd4a {
  flex-shrink: 0;
}

.hovered_b003 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.sort-selected-3bdb {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .sort-selected-3bdb {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.box-ecf8,
.component_simple_d422,
.icon-fd92 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.box-ecf8 thead,
.component_simple_d422 thead {
  background: var(--color-primary);
  color: white;
}

.box-ecf8 th,
.box-ecf8 td,
.component_simple_d422 th,
.component_simple_d422 td,
.icon-fd92 th,
.icon-fd92 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .box-ecf8 th,
  .box-ecf8 td,
  .component_simple_d422 th,
  .component_simple_d422 td,
  .icon-fd92 th,
  .icon-fd92 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .box-ecf8,
  .component_simple_d422,
  .icon-fd92 {
    min-width: 600px;
  }
}

.box-ecf8 th,
.component_simple_d422 th,
.icon-fd92 th {
  font-weight: 600;
}

.box-ecf8 tbody tr:hover,
.component_simple_d422 tbody tr:hover,
.icon-fd92 tbody tr:hover {
  background: var(--color-bg-alt);
}

.carousel_eadd {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.gas-fc97 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.frame-up-bdd4 {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.frame-up-bdd4 h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.preview_67ef {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.preview_67ef h4 {
  color: white;
}

.media_last_5fbe {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pressed-eaa1 {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.pressed-eaa1:last-child {
  border-bottom: none;
}

.pressed-eaa1 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.pressed-eaa1 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.white-7afa {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.silver-8edb {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.silver-8edb:hover {
  text-decoration: underline;
}

.status_motion_9c26 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.container_d245 {
  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);
}

.container_d245 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.card_4836 {
  font-weight: 600;
  color: white;
}

.popup_50ee {
  list-style: none;
  padding: 0;
}

.popup_50ee li {
  padding: var(--space-xs) 0;
}

.plasma_5731 {
  color: #4caf50;
}

.wrapper_pressed_ae8f {
  color: #ff9800;
}

.old_865d {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.grid_hard_547e {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.first_b0b5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.south-4c61 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.background_slow_9c1f {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.breadcrumb-708a {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.narrow-d199 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .narrow-d199 {
    grid-template-columns: 1fr;
  }
}

.block_5fff {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.block_5fff:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.media_dc68 {
  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;
}

.block_5fff h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.block_5fff p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.background_30d7 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.card_4836 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.module_7103 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.module-94af {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.module-94af h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.lite-8cde {
  max-width: 900px;
  margin: 0 auto;
}

.container_6ef7 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.box-clean-389c {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .box-clean-389c {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.detail_fast_cd25 {
  margin-top: var(--space-xxl);
}

.detail_fast_cd25 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.slow-c870 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .slow-c870 {
    grid-template-columns: 1fr;
  }
}

.sort_motion_4dda {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.outline_right_cee6 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.green-da76 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.sort_motion_4dda h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.sort_motion_4dda ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.sort_motion_4dda li {
  padding: var(--space-xs) 0;
  color: white;
}

.sort_motion_4dda .cool-9abd {
  width: 100%;
  background: white;
}

.outline_right_cee6 .cool-9abd {
  color: #667eea;
}

.green-da76 .cool-9abd {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.badge-top-5743 {
  max-width: 900px;
  margin: 0 auto;
}

.banner_b0d4 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.aside_774e {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.backdrop-cbbe {
  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);
}

.aside_774e h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.center-8b08 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .aside_774e {
    padding: var(--space-md);
  }
  
  .center-8b08 {
    padding: var(--space-md);
  }
  
  .outline_full_5c68 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.description-small-b54c ol,
.description-small-b54c ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.description-small-b54c li {
  margin-bottom: var(--space-sm);
}

.description-small-b54c code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.container_145d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.pattern_d8d9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.outline_full_5c68 {
  margin-top: var(--space-lg);
  text-align: center;
}

.outline_full_5c68 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.list_2027,
.component_5c8f,
.feature_c958,
.tertiary_easy_d1ae {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.video-ab20 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.secondary_fe4a {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.notice_37cc {
  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) {
  .notice_37cc {
    font-size: 0.625rem;
  }
}

.photo-3575 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.photo-3575:hover {
  background: var(--color-primary-dark);
}

.item_warm_e450 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.item_warm_e450 h4 {
  margin-bottom: var(--space-md);
}

.tag-821b {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.pink-abf7 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.header_orange_2d50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .header_orange_2d50 {
    grid-template-columns: 1fr;
  }
}

.icon-57ae {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.label-eb87 {
  border-color: var(--color-success);
}

.hard_8d8c {
  border-color: var(--color-warning);
}

.static-03a1 {
  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);
}

.label-eb87 .static-03a1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hard_8d8c .static-03a1 {
  background: #fff3e0;
  color: var(--color-warning);
}

.icon-57ae h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.icon-57ae p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.bright_8d71 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.huge_1075 {
  margin: var(--space-xxl) 0;
}

.huge_1075 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.huge_1075 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.over_d46b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .over_d46b {
    grid-template-columns: 1fr;
  }
}

.title_west_ba45 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.title_west_ba45 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.sort_f55b {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.sort_f55b input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.hover_warm_7344 {
  margin-top: var(--space-xxl);
}

.frame-blue-9590 {
  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);
}

.highlight-b585 {
  text-align: center;
}

.photo-red-c7ca {
  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);
}

.card-mini-6a87 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.photo-red-c7ca .card_4836 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.hero-ecc2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.border-a405 p {
  margin-bottom: var(--space-md);
}

.medium_05a2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .frame-blue-9590 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.east_167a {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.motion_d992 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.east-7630 {
  margin-bottom: var(--space-xl);
}

.caption-721b {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.message-1374 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.dim_97ce {
  color: var(--color-text-light);
}

.slider_current_7606 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.notice-8aec {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.breadcrumb_9c9e {
  font-weight: 600;
  color: var(--color-text);
}

.tooltip-5237 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.disabled_3d3c {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.south_58e2 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.active-ad06 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.focus-c8c5 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.bright-e9bd {
  border: 2px solid #4caf50;
}

.pattern_wood_7e51 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.popup-orange-819e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.badge-upper-1277 {
  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;
}

.tooltip-825d {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.highlight-acff {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.description-under-7897 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.west-1d7b {
  text-align: right;
}

.west-1d7b .tiny_4feb {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.overlay_7a22 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.text_aa75 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.text_aa75 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.sidebar-2c76 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.clean_e725 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.widget-warm-32ed {
  background: #e8f5e9;
  color: #2e7d32;
}

.solid_1e24 {
  background: #e3f2fd;
  color: #1565c0;
}

.caption_clean_79b1 {
  background: #fff3e0;
  color: #e65100;
}

.mask_c016 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.mask_c016 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.dropdown-237f {
  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);
}

.dropdown-237f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.gas_c4db {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.popup_24cf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.popup_24cf strong {
  color: var(--color-primary);
}

.breadcrumb-green-6262 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.badge-8ad1 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.main-ee50 {
  max-width: 900px;
  margin: 0 auto;
}

.feature-8c49 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.header-wide-e36a {
  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);
}

.header-wide-e36a:hover {
  background: var(--color-bg-alt);
}

.clean_e8da {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.header-wide-e36a[aria-expanded="true"] .clean_e8da {
  transform: rotate(180deg);
}

.article-50ac {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.article-50ac h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.article-50ac ul,
.article-50ac ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.article-50ac li {
  margin-bottom: var(--space-xs);
}

.section_a866 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.banner-1996 {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.section_a866 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.mask-medium-a759 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.list-east-8dce {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.chip_f6a7 {
  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);
}

.section-d487 {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.logo-2c55 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .logo-2c55 {
    grid-template-columns: 1fr;
  }
}

.shadow_copper_1802,
.link_d8d5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.shadow_copper_1802 {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.link_d8d5 {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.shadow_copper_1802 h4,
.link_d8d5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.shadow_copper_1802 ul,
.link_d8d5 ul {
  list-style: none;
  padding: 0;
}

.shadow_copper_1802 li,
.link_d8d5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.shade_46d7 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .shade_46d7 {
    grid-template-columns: 1fr;
  }
}

.footer-9cba {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.item_148f {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.shade-liquid-4b44 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.footer-9cba h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.footer-9cba ul {
  list-style: none;
  padding: 0;
}

.footer-9cba li {
  padding: var(--space-xs) 0;
  color: white;
}

.frame_gold_3b52 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.frame_gold_3b52 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.frame_gold_3b52 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.north-6d16 {
  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);
}

.thumbnail_fluid_7a26 {
  font-style: italic;
}

.filter_2fdd {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.light_a592 {
  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;
}

.light_a592 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.light_a592 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.south_4364 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.stone-c196 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.focus-bf3b {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.dark_ad32 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .dark_ad32 {
    grid-template-columns: 1fr;
  }
}

.surface-908c {
  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);
}

.surface-908c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.soft_f3bc {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.surface-908c h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.surface-908c p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.background_hot_61fb {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.background_791d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

/* Footer variant: footer-content (subpages) */
.preview-in-bb44 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.focus_brown_ee67 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.focus_brown_ee67 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.pagination-51a6 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-51a6 li {
  margin-bottom: var(--space-xs);
}

.pagination-51a6 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.pagination-51a6 a:hover {
  color: white;
}

.overlay_7c26 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.overlay_7c26 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.overlay_7c26 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.video_small_09bc {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.video_small_09bc a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.video_small_09bc a:hover {
  color: white;
}

.last-9fc9 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .background_791d,
  .preview-in-bb44 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.red-b165 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.component_6421 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.background_0f07 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.background_0f07 .gradient-wide-1197 {
  color: #4caf50;
  font-size: 0.875rem;
}

.video_31b4 {
  list-style: none;
  padding: 0;
}

.video_31b4 li {
  margin-bottom: var(--space-xs);
}

.video_31b4 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.video_31b4 a:hover {
  color: white;
}

.glass_c9ac {
  list-style: none;
  padding: 0;
}

.glass_c9ac li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.glass_c9ac a {
  color: #b0b0b0;
  text-decoration: none;
}

.glass_c9ac a:hover {
  color: white;
}

.last-9fc9 {
  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);
}

.main_d0f9 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.main_d0f9 a {
  color: #4caf50;
  text-decoration: none;
}

.module_56a3 {
  font-size: 0.75rem;
  color: #666666;
}

.surface-46e3 {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.surface-46e3 a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.surface-46e3 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.section_dynamic_3911 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.section_dynamic_3911:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .last-9fc9 {
    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;
  }
  
  .column-35d9 {
    font-size: 2rem;
  }
  
  .middle-d9ee {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .right_f8ba,
  .summary_6ec2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .narrow-d199,
  .header_orange_2d50,
  .slow-c870,
  .over_d46b,
  .logo-2c55,
  .shade_46d7,
  .dark_ad32,
  .background_791d,
  .preview-in-bb44 {
    grid-template-columns: 1fr;
  }
  
  .accordion_7439 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .logo-inner-35cf {
    padding: var(--space-lg) 0;
  }
  
  .overlay_bright_aade li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .overlay_bright_aade li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cool-9abd {
    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;
  }
  
  .accordion_7439 {
    grid-template-columns: 1fr;
  }
  
  .wrapper_f8c8,
  .south_4364,
  .tag-821b {
    flex-direction: column;
    width: 100%;
  }
  
  .slider_1d11,
  .slider_69b3,
  .wrapper_f8c8 .cool-9abd,
  .south_4364 .cool-9abd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .column-35d9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .middle-d9ee {
    font-size: 1.375rem;
  }
  
  .easy_c838 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hover-blue-ae2b,
  .block_5fff,
  .frame-up-bdd4,
  .focus-c8c5,
  .banner_b0d4 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .notice_37cc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .slow-a8bd {
    gap: var(--space-xs);
  }
  
  .status_e3ec {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .container_d245 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .photo-red-c7ca {
    width: 150px;
    height: 150px;
  }
  
  .card-mini-6a87 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb_wood_1ffe,
  .green-ad68,
  .wrapper_f8c8,
  .light_a592,
  .stone-c196,
  .background_hot_61fb,
  .background_prev_d634 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .logo-inner-35cf {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.sort_03d6 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: 836c */
.promo-block-c6 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.0;
}
