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

.row_bd94:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.cool-a78e):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. */
.cool-a78e,
header,
.liquid-7436,
.focused_7910,
.main-solid-4ff7,
.video-fluid-ae59,
.main_fc67,
.inner-2adf,
.caption_narrow_cd49 {
  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
   ============================================ */
.cool-a78e {
  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);
}

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

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

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

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

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

.hidden-north-a4ca img {
  height: 36px;
  width: auto;
  display: block;
}

.article-079f {
  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;
}

.outline-under-92e3 {
  flex: 1;
}

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

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

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

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

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

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

.glass-f885 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.media-bronze-4523 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .outline-under-92e3::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .outline-under-92e3.carousel_df39 {
    display: block;
    right: 0;
  }
  
  .grid_small_009b {
    flex-direction: column;
    gap: 0;
  }
  
  .surface_7e8d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .outline-under-92e3::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;
  }
  
  .outline-under-92e3.carousel_df39::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .outline-under-92e3 {
    display: none;
  }
  
  .widget_b635 {
    display: flex;
  }
  
  .article-079f {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .media-bronze-4523,
  .nav-aed7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .red_1d58 {
    position: relative;
  }
  
  .header-b4d0 {
    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;
  }
  
  .glass-f885[aria-expanded="true"] + .header-b4d0 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .avatar_west_82b5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content-b6fa {
    gap: 8px;
  }
  
  .media-bronze-4523 {
    display: none;
  }
  
  .nav-aed7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hidden-north-a4ca img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .nav-aed7 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .nav-aed7 svg {
    width: 14px;
    height: 14px;
  }
  
  .highlight-78a0 {
    gap: var(--space-sm);
  }
}

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

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

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

.pro-5079 svg {
  flex-shrink: 0;
}

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

.pro-5079 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .filter-static-9149 {
    grid-template-columns: 1fr;
  }
  
  .filter-red-fd74 {
    font-size: 1.75rem;
  }
  
  .border_d5ee {
    order: -1;
    max-width: 100%;
  }
  
  .narrow_1a36 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .filter-red-fd74 {
    font-size: 1.5rem;
  }
  
  .feature-0769 {
    font-size: 1rem;
  }
  
  .text_078a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .narrow_1a36 {
    max-width: 250px;
  }
}

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

.widget-stale-bb66 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

.shadow-narrow-632a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.middle-58de {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.carousel-1a97 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.carousel-1a97 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);
}

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

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

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

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

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

.carousel-1a97 strong {
  font-weight: 600;
  color: var(--color-text);
}

.carousel-1a97 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.carousel-1a97 a:hover {
  color: var(--color-primary-dark);
}

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

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

.paper_3842 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) {
  .lite-e18b {
    grid-template-columns: 1fr;
  }
  
  .column-d6d9 {
    font-size: 1.75rem;
  }
  
  .carousel-1a97 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .column-d6d9 {
    font-size: 1.5rem;
  }
  
  .carousel-1a97 h3 {
    font-size: 1.375rem;
  }
  
  .carousel-1a97 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.stale-e522 {
  flex-shrink: 0;
}

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

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

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

.tooltip-4728,
.highlight_23f8,
.tiny-9ea1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tooltip-4728 thead,
.highlight_23f8 thead {
  background: var(--color-primary);
  color: white;
}

.tooltip-4728 th,
.tooltip-4728 td,
.highlight_23f8 th,
.highlight_23f8 td,
.tiny-9ea1 th,
.tiny-9ea1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tooltip-4728 th,
  .tooltip-4728 td,
  .highlight_23f8 th,
  .highlight_23f8 td,
  .tiny-9ea1 th,
  .tiny-9ea1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tooltip-4728,
  .highlight_23f8,
  .tiny-9ea1 {
    min-width: 600px;
  }
}

.tooltip-4728 th,
.highlight_23f8 th,
.tiny-9ea1 th {
  font-weight: 600;
}

.tooltip-4728 tbody tr:hover,
.highlight_23f8 tbody tr:hover,
.tiny-9ea1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.photo-6538 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.mini-59f7 {
  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);
}

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

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

.outline-519a {
  list-style: none;
  padding: 0;
}

.outline-519a li {
  padding: var(--space-xs) 0;
}

.carousel-5779 {
  color: #4caf50;
}

.avatar_e99a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown-0a87 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.popup_adc6 .media_in_73f4 {
  width: 100%;
  background: white;
}

.banner_f8cb .media_in_73f4 {
  color: #667eea;
}

.bright_72c2 .media_in_73f4 {
  color: #f5576c;
}

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

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

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

.banner-28ee {
  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);
}

.breadcrumb-new-ccbb h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .breadcrumb-new-ccbb {
    padding: var(--space-md);
  }
  
  .row_0b5e {
    padding: var(--space-md);
  }
  
  .main-271f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hot_bb86,
.list_inner_9def,
.frame-tall-6f71,
.breadcrumb-3004 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-bright-c5e2 {
  border-color: var(--color-success);
}

.tag-47aa {
  border-color: var(--color-warning);
}

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

.wrapper-bright-c5e2 .accordion_b07a {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag-47aa .accordion_b07a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.tertiary-slow-8f9d {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

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

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

.hard_5102 {
  text-align: center;
}

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

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

.secondary-abe8 .video_pink_0b08 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.pattern-plasma-19df {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

.banner-8c92 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.under_5ee3 {
  text-align: right;
}

.under_5ee3 .hot_145f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.chip-b821 {
  background: #e8f5e9;
  color: #2e7d32;
}

.content_stone_5842 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.light-7884[aria-expanded="true"] .menu_north_eac0 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.video_c1ad,
.pink-9161 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.video_c1ad h4,
.pink-9161 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.video_c1ad ul,
.pink-9161 ul {
  list-style: none;
  padding: 0;
}

.video_c1ad li,
.pink-9161 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.gallery-fluid-3b00 {
  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);
}

.smooth_c695 {
  font-style: italic;
}

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

.pattern-silver-37d1 {
  margin-top: var(--space-xxl);
  padding: var(--space-xxl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-6941 .cool_022c {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.hidden-1e08 a:hover {
  color: white;
}

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

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

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

.wrapper_cool_a7d6 a:hover {
  color: white;
}

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

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

.focus-down-8c3b a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.input-inner-08e6 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.input-inner-08e6:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .popup-7d1e {
    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;
  }
  
  .filter-red-fd74 {
    font-size: 2rem;
  }
  
  .column-d6d9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .filter-static-9149,
  .lite-e18b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .outer-48e0,
  .focus_fa9c,
  .stale-2b91,
  .hovered-fe0c,
  .search-small-a11f,
  .north_7eaf,
  .filter_02e1,
  .container-out-ebe6 {
    grid-template-columns: 1fr;
  }
  
  .grid_7bf8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .main_fc67 {
    padding: var(--space-lg) 0;
  }
  
  .plasma_7388 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .plasma_7388 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .media_in_73f4 {
    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;
  }
  
  .grid_7bf8 {
    grid-template-columns: 1fr;
  }
  
  .smooth_ccb2,
  .footer-c9da,
  .down_5b17 {
    flex-direction: column;
    width: 100%;
  }
  
  .hovered-2579,
  .shadow-narrow-632a,
  .smooth_ccb2 .media_in_73f4,
  .footer-c9da .media_in_73f4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .filter-red-fd74 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .column-d6d9 {
    font-size: 1.375rem;
  }
  
  .prev_aa39 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .block-ae16,
  .outline-321c,
  .dropdown_white_1f69,
  .outline_3414,
  .sort-66fb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .main_d000 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .aside-1c3f {
    gap: var(--space-xs);
  }
  
  .pro-5079 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .mini-59f7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .secondary-abe8 {
    width: 150px;
    height: 150px;
  }
  
  .inner-0d53 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .cool-a78e,
  .liquid-7436,
  .smooth_ccb2,
  .pattern-silver-37d1,
  .inner-2adf,
  .caption_narrow_cd49,
  .widget_b635 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .main_fc67 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a29f */
.phantom-card-m2 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.0;
}
