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

.wood-825a:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.image_selected_eb07):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. */
.image_selected_eb07,
header,
.hovered_29ff,
.wrapper-3934,
.media_tiny_3577,
.paper-78b6,
.notice-1b94,
.detail_c366,
.texture_yellow_9091 {
  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
   ============================================ */
.image_selected_eb07 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

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

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

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

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

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

.footer-fast-13b6 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.thick-4000 {
  flex: 1;
}

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

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

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

.filter_full_dd58.notice-simple-b77d {
  background: var(--color-primary);
  color: white;
}

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

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

.selected-22c2 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.lower-b5ba svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .thick-4000 {
    display: none;
  }
  
  .shadow_d017 {
    display: flex;
  }
  
  .nav-f798 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .lower-b5ba,
  .pagination_copper_7e25 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .widget_f7d6 {
    position: relative;
  }
  
  .menu_wood_80cd {
    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;
  }
  
  .selected-22c2[aria-expanded="true"] + .menu_wood_80cd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .glass_1335 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .table-3dca {
    gap: 8px;
  }
  
  .lower-b5ba {
    display: none;
  }
  
  .pagination_copper_7e25 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .footer-fast-13b6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.small_9fdf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.image-850c {
  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;
}

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

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

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

.popup-blue-9154 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.preview-dim-d115 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aside-0057 {
  position: relative;
  text-align: center;
}

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

.section-lower-3aa9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

@media (max-width: 968px) {
  .filter_01a6 {
    grid-template-columns: 1fr;
  }
  
  .simple_83db {
    font-size: 1.75rem;
  }
  
  .preview-dim-d115 {
    order: -1;
    max-width: 100%;
  }
  
  .aside-0057 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .simple_83db {
    font-size: 1.5rem;
  }
  
  .stone_36bf {
    font-size: 1rem;
  }
  
  .dropdown_135a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .aside-0057 {
    max-width: 250px;
  }
}

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

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

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

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

.smooth-2a3c:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.sort_402f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-fluid-0a86 {
  background: var(--color-bg-section);
}

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

.liquid-243e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow_b6c5 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) {
  .glass_be6e {
    grid-template-columns: 1fr;
  }
  
  .chip_dark_efd7 {
    font-size: 1.75rem;
  }
  
  .paragraph_yellow_a1a1 {
    max-width: 100%;
  }
}

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

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

.status-focused-4c31 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.frame-mini-8ea8 {
  flex-shrink: 0;
}

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

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

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

.sort-d8c1,
.huge_f5a4,
.blue-ff7c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.sort-d8c1 thead,
.huge_f5a4 thead {
  background: var(--color-primary);
  color: white;
}

.sort-d8c1 th,
.sort-d8c1 td,
.huge_f5a4 th,
.huge_f5a4 td,
.blue-ff7c th,
.blue-ff7c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sort-d8c1 th,
  .sort-d8c1 td,
  .huge_f5a4 th,
  .huge_f5a4 td,
  .blue-ff7c th,
  .blue-ff7c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .sort-d8c1,
  .huge_f5a4,
  .blue-ff7c {
    min-width: 600px;
  }
}

.sort-d8c1 th,
.huge_f5a4 th,
.blue-ff7c th {
  font-weight: 600;
}

.sort-d8c1 tbody tr:hover,
.huge_f5a4 tbody tr:hover,
.blue-ff7c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.nav_654f h4 {
  color: white;
}

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

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

.west-f796:last-child {
  border-bottom: none;
}

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

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

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

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

.avatar-fb6f:hover {
  text-decoration: underline;
}

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

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

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

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

.grid-8052 {
  list-style: none;
  padding: 0;
}

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

.silver_52b1 {
  color: #4caf50;
}

.grid-02dd {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text_tall_ca95 .clean_cab5 {
  width: 100%;
  background: white;
}

.mask-3500 .clean_cab5 {
  color: #667eea;
}

.media_fixed_f2e9 .clean_cab5 {
  color: #f5576c;
}

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

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

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

.main-0e23 {
  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);
}

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

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

@media (max-width: 768px) {
  .blue-3105 {
    padding: var(--space-md);
  }
  
  .element_f97c {
    padding: var(--space-md);
  }
  
  .background_glass_70a5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.simple_c969,
.background_brown_4cbd,
.description-steel-e454,
.item-835d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.notification-new-7da0 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.item-dim-84f0 {
  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) {
  .item-dim-84f0 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.over-8c36 {
  border-color: var(--color-success);
}

.column-0f43 {
  border-color: var(--color-warning);
}

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

.over-8c36 .south-9491 {
  background: #e8f5e9;
  color: var(--color-success);
}

.column-0f43 .south-9491 {
  background: #fff3e0;
  color: var(--color-warning);
}

.alert-east-846d h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.alert-east-846d p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

.main-east-ac8c {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.disabled_smooth_3bcc {
  text-align: center;
}

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

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

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

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

.heading-basic-a9d1 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.main-current-54ce {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.status-simple-398a {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

.button-9fa0 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.badge-546d {
  text-align: right;
}

.badge-546d .layout-524d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.notification-solid-2a65 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.info-a111 {
  background: #e3f2fd;
  color: #1565c0;
}

.accordion-72f6 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

.slow-5bb5 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip_tall_403a,
.primary-paper-24ed {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.chip_tall_403a h4,
.primary-paper-24ed h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.chip_tall_403a ul,
.primary-paper-24ed ul {
  list-style: none;
  padding: 0;
}

.chip_tall_403a li,
.primary-paper-24ed li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.soft_3abd {
  font-style: italic;
}

.filter-thick-61c2 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma_1472 .detail_white_685b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.column_orange_ed3a a:hover {
  color: white;
}

.basic-a109 {
  list-style: none;
  padding: 0;
}

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

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

.basic-a109 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .caption-7205 {
    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;
  }
  
  .simple_83db {
    font-size: 2rem;
  }
  
  .chip_dark_efd7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .filter_01a6,
  .glass_be6e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent-fcac,
  .red_8fd7,
  .focus-lite-abb6,
  .narrow-12dd,
  .focused-6a7a,
  .bronze-03b9,
  .link_pink_1cbc,
  .content-c386 {
    grid-template-columns: 1fr;
  }
  
  .article-clean-76a1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notice-1b94 {
    padding: var(--space-lg) 0;
  }
  
  .module_medium_922a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .module_medium_922a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .clean_cab5 {
    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;
  }
  
  .article-clean-76a1 {
    grid-template-columns: 1fr;
  }
  
  .popup-blue-9154,
  .header_2429,
  .action_c2da {
    flex-direction: column;
    width: 100%;
  }
  
  .feature_981b,
  .sort_402f,
  .popup-blue-9154 .clean_cab5,
  .header_2429 .clean_cab5 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .simple_83db {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .chip_dark_efd7 {
    font-size: 1.375rem;
  }
  
  .paragraph-e3f3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .module_medium_3521,
  .badge-dim-3823,
  .pagination-silver-fc2b,
  .progress_cd0d,
  .list-hard-9e34 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .item-dim-84f0 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .description-bf3b {
    gap: var(--space-xs);
  }
  
  .small_9fdf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .surface-ea97 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .motion_7cae {
    width: 150px;
    height: 150px;
  }
  
  .search-b142 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .image_selected_eb07,
  .hovered_29ff,
  .popup-blue-9154,
  .element_8528,
  .detail_c366,
  .texture_yellow_9091,
  .shadow_d017 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notice-1b94 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 5712 */
.widget-item-e1 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.1;
}
