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

.hard-8a34:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.stale_3ffa):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. */
.stale_3ffa,
header,
.hero-stone-b50d,
.hard_a069,
.tooltip_fast_50fb,
.surface-clean-28c6,
.logo-orange-9e95,
.summary_f083,
.pink-e38a {
  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
   ============================================ */
.stale_3ffa {
  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);
}

.backdrop-57bb {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.notification-first-adbf {
  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;
}

.accent_f5a2 {
  flex: 1;
}

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

.nav-034d {
  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);
}

.nav-034d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.nav-034d.modal_0219 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.prev-48ef {
  position: relative;
}

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

.notification-over-0c75 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.active-7617 svg {
  flex-shrink: 0;
}

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

.outline-clean-d356: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);
}

.outline-clean-d356 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .accent_f5a2::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .accent_f5a2.lite_b6fa {
    display: block;
    right: 0;
  }
  
  .photo_d20e {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-034d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .accent_f5a2::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;
  }
  
  .accent_f5a2.lite_b6fa::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .accent_f5a2 {
    display: none;
  }
  
  .detail_black_8e5d {
    display: flex;
  }
  
  .notification-first-adbf {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active-7617,
  .outline-clean-d356 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .prev-48ef {
    position: relative;
  }
  
  .heading-f0b8 {
    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;
  }
  
  .notification-over-0c75[aria-expanded="true"] + .heading-f0b8 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hover_4046 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .thumbnail-1804 {
    gap: 8px;
  }
  
  .active-7617 {
    display: none;
  }
  
  .outline-clean-d356 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter_c3fc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.row-9193 svg {
  flex-shrink: 0;
}

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

.row-9193 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-38b6 {
  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;
}

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

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

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

.mask-dim-2f6c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.over-fc11 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .picture-stone-8144 {
    grid-template-columns: 1fr;
  }
  
  .gradient-176c {
    font-size: 1.75rem;
  }
  
  .center-f701 {
    order: -1;
    max-width: 100%;
  }
  
  .over-fc11 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gradient-176c {
    font-size: 1.5rem;
  }
  
  .table-up-cb9a {
    font-size: 1rem;
  }
  
  .header_16d1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .over-fc11 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.focus-96bf {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-d863 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.logo-orange-9e95 {
  padding: var(--space-xxl) 0;
}

.pagination-048d {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_2edd 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) {
  .footer-0f5f {
    grid-template-columns: 1fr;
  }
  
  .icon_9e7a {
    font-size: 1.75rem;
  }
  
  .summary_fluid_b870 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.up-609f {
  flex-shrink: 0;
}

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

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

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

.under_458e,
.slow-d715,
.hovered_bcf8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.under_458e thead,
.slow-d715 thead {
  background: var(--color-primary);
  color: white;
}

.under_458e th,
.under_458e td,
.slow-d715 th,
.slow-d715 td,
.hovered_bcf8 th,
.hovered_bcf8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .under_458e th,
  .under_458e td,
  .slow-d715 th,
  .slow-d715 td,
  .hovered_bcf8 th,
  .hovered_bcf8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .under_458e,
  .slow-d715,
  .hovered_bcf8 {
    min-width: 600px;
  }
}

.under_458e th,
.slow-d715 th,
.hovered_bcf8 th {
  font-weight: 600;
}

.under_458e tbody tr:hover,
.slow-d715 tbody tr:hover,
.hovered_bcf8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.last-5c46 h4 {
  color: white;
}

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

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

.heading-south-2e81:last-child {
  border-bottom: none;
}

.heading-south-2e81 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.heading-south-2e81 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.widget-53ec:hover {
  text-decoration: underline;
}

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

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

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

.filter-fixed-61ba {
  font-weight: 600;
  color: white;
}

.popup-hard-bbd6 {
  list-style: none;
  padding: 0;
}

.popup-hard-bbd6 li {
  padding: var(--space-xs) 0;
}

.lite-ad39 {
  color: #4caf50;
}

.liquid_a7e6 {
  color: #ff9800;
}

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

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

.widget-lite-97a5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

.image-new-8c6b {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

.filter-fixed-61ba {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.section-stone-4ce3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .content-active-239b {
    grid-template-columns: 1fr;
  }
}

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

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

.rough-80fa {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

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

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

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

.carousel-huge-9682 .detail_dim_6ffa {
  width: 100%;
  background: white;
}

.notification-rough-bd28 .detail_dim_6ffa {
  color: #667eea;
}

.rough-80fa .detail_dim_6ffa {
  color: #f5576c;
}

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

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

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

.form-wide-8059 {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

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

@media (max-width: 768px) {
  .lower_3096 {
    padding: var(--space-md);
  }
  
  .left-f381 {
    padding: var(--space-md);
  }
  
  .layout_motion_bf46 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.input-a8d0,
.box_gold_ff83,
.form-focused-a0a1,
.dim_746b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.new-0d6a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.list_hot_c8a9 .bright_6c92 {
  background: #e8f5e9;
  color: var(--color-success);
}

.banner_mini_6ebb .bright_6c92 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.hidden-stale-6f76 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hidden-stale-6f76 h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

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

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

.yellow-82fd {
  margin-top: var(--space-xxl);
}

.background-first-c150 {
  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);
}

.alert-2862 {
  text-align: center;
}

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

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

.orange_4bbc .filter-fixed-61ba {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.primary-iron-1533 p {
  margin-bottom: var(--space-md);
}

.preview-bottom-44e5 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

.dark-174f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.north-33ce {
  border: 2px solid #4caf50;
}

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

.search-dark-54c5 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.prev-9b72 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.layout-ac91 {
  text-align: right;
}

.layout-ac91 .upper-b211 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.slider-orange-309f {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.header-3084 {
  background: #e8f5e9;
  color: #2e7d32;
}

.smooth-8f40 {
  background: #e3f2fd;
  color: #1565c0;
}

.button-61f8 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.main-lower-bdd1 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.summary-light-f175 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.mask-0a4f,
.highlight_plasma_c763 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.mask-0a4f h4,
.highlight_plasma_c763 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.mask-0a4f ul,
.highlight_plasma_c763 ul {
  list-style: none;
  padding: 0;
}

.mask-0a4f li,
.highlight_plasma_c763 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

.link-2f2a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.feature-f0f0 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.easy_4353 .thumbnail_e6a7 {
  color: #4caf50;
  font-size: 0.875rem;
}

.south-567a {
  list-style: none;
  padding: 0;
}

.south-567a li {
  margin-bottom: var(--space-xs);
}

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

.south-567a a:hover {
  color: white;
}

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

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

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

.list_03b6 a:hover {
  color: white;
}

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

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

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

.accent-83da {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.footer-44d2:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accordion_7f26 {
    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;
  }
  
  .gradient-176c {
    font-size: 2rem;
  }
  
  .icon_9e7a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .picture-stone-8144,
  .footer-0f5f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .disabled-11cb,
  .hard_83b8,
  .content-active-239b,
  .brown-29c4,
  .carousel_16f4,
  .shade_75b1,
  .basic_7ce7,
  .module_c299 {
    grid-template-columns: 1fr;
  }
  
  .solid-87f1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .logo-orange-9e95 {
    padding: var(--space-lg) 0;
  }
  
  .content-d863 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .content-d863 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .detail_dim_6ffa {
    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;
  }
  
  .solid-87f1 {
    grid-template-columns: 1fr;
  }
  
  .mask-dim-2f6c,
  .search-b653,
  .secondary_2237 {
    flex-direction: column;
    width: 100%;
  }
  
  .action-4587,
  .focus-96bf,
  .mask-dim-2f6c .detail_dim_6ffa,
  .search-b653 .detail_dim_6ffa {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gradient-176c {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .icon_9e7a {
    font-size: 1.375rem;
  }
  
  .list-out-2c72 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .sort-ad5e,
  .focus_88bb,
  .dropdown_4f2c,
  .surface-large-8ace,
  .accordion_left_7ca7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .fresh-2039 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .image-dc24 {
    gap: var(--space-xs);
  }
  
  .row-9193 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .top_e74d {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .orange_4bbc {
    width: 150px;
    height: 150px;
  }
  
  .video-1b80 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .stale_3ffa,
  .hero-stone-b50d,
  .mask-dim-2f6c,
  .breadcrumb_stale_19e1,
  .summary_f083,
  .pink-e38a,
  .detail_black_8e5d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .logo-orange-9e95 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 4a76 */
.promo-block-w3 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.2;
}
