/* ============================================
   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)
   ============================================ */
.element-warm-3b20 {
  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;
}

.element-warm-3b20:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.feature-glass-b97f):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. */
.feature-glass-b97f,
header,
.bottom_016c,
.disabled-7e5f,
.section-lower-cd3a,
.grid_9fa2,
.nav_lower_51b8,
.caption-upper-2565,
.chip-west-8659 {
  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
   ============================================ */
.feature-glass-b97f {
  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);
}

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

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

/* Scrolled state */
.feature-glass-b97f.section-new-54bf {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.filter-soft-47aa img {
  height: 36px;
  width: auto;
  display: block;
}

.hard-74c9 {
  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;
}

.pro-5d09 {
  flex: 1;
}

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

.dynamic-05b4 {
  display: block;
  padding: 8px 16px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dynamic-05b4:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dynamic-05b4.message_north_4c86 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-a6f2 svg {
  flex-shrink: 0;
}

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

.mini-76b4: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);
}

.mini-76b4 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .pro-5d09::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .pro-5d09.accent_hot_40cc {
    display: block;
    right: 0;
  }
  
  .mask-9545 {
    flex-direction: column;
    gap: 0;
  }
  
  .dynamic-05b4 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .pro-5d09::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;
  }
  
  .pro-5d09.accent_hot_40cc::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .pro-5d09 {
    display: none;
  }
  
  .lite_911b {
    display: flex;
  }
  
  .hard-74c9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .logo-a6f2,
  .mini-76b4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .element_orange_a623 {
    position: relative;
  }
  
  .dim_c2e2 {
    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;
  }
  
  .summary_337d[aria-expanded="true"] + .dim_c2e2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gas_5797 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .footer_5b50 {
    gap: 8px;
  }
  
  .logo-a6f2 {
    display: none;
  }
  
  .mini-76b4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .filter-soft-47aa img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .mini-76b4 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .mini-76b4 svg {
    width: 14px;
    height: 14px;
  }
  
  .tooltip_ab54 {
    gap: var(--space-sm);
  }
}

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

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

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

.tabs_e24c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.tooltip-current-5a43 a {
  color: var(--color-primary);
  text-decoration: none;
}

.tooltip-current-5a43 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

@media (max-width: 768px) {
  .nav-center-876d {
    grid-template-columns: 1fr;
  }
}

.summary-short-8af5 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.image-blue-68fd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .orange-fb6b {
    grid-template-columns: 1fr;
  }
  
  .grid_9a23 {
    font-size: 1.75rem;
  }
  
  .purple-2496 {
    order: -1;
    max-width: 100%;
  }
  
  .image-blue-68fd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .grid_9a23 {
    font-size: 1.5rem;
  }
  
  .form_e707 {
    font-size: 1rem;
  }
  
  .tooltip-current-5a43 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .image-blue-68fd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-8617 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;
}

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

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

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

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

.aside-north-288c {
  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);
}

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

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

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

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

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

.module-9df1 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.module-9df1 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);
}

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

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

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

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

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

.module-9df1 strong {
  font-weight: 600;
  color: var(--color-text);
}

.module-9df1 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.module-9df1 a:hover {
  color: var(--color-primary-dark);
}

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

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

.input_out_b93b 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) {
  .component_7ba9 {
    grid-template-columns: 1fr;
  }
  
  .photo_9217 {
    font-size: 1.75rem;
  }
  
  .module-9df1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .photo_9217 {
    font-size: 1.5rem;
  }
  
  .module-9df1 h3 {
    font-size: 1.375rem;
  }
  
  .module-9df1 h4 {
    font-size: 1.125rem;
  }
}

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

.thick-891a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.detail-complex-56ae {
  flex-shrink: 0;
}

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

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

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

.notification-0f90,
.selected_3058,
.status-955e {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.notification-0f90 thead,
.selected_3058 thead {
  background: var(--color-primary);
  color: white;
}

.notification-0f90 th,
.notification-0f90 td,
.selected_3058 th,
.selected_3058 td,
.status-955e th,
.status-955e td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .notification-0f90 th,
  .notification-0f90 td,
  .selected_3058 th,
  .selected_3058 td,
  .status-955e th,
  .status-955e td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .notification-0f90,
  .selected_3058,
  .status-955e {
    min-width: 600px;
  }
}

.notification-0f90 th,
.selected_3058 th,
.status-955e th {
  font-weight: 600;
}

.notification-0f90 tbody tr:hover,
.selected_3058 tbody tr:hover,
.status-955e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.main-d758 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center_5dbc {
  color: #4caf50;
}

.secondary-wood-2cb9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight_stone_23cd .layout_selected_b6b7 {
  width: 100%;
  background: white;
}

.overlay-77cd .layout_selected_b6b7 {
  color: #667eea;
}

.modal-selected-dd17 .layout_selected_b6b7 {
  color: #f5576c;
}

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

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

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

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

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

.modal-north-5cd1 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .media_huge_6252 {
    padding: var(--space-md);
  }
  
  .modal-north-5cd1 {
    padding: var(--space-md);
  }
  
  .background-e461 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.alert-bottom-0979,
.frame-6380,
.article_smooth_e3f1,
.tooltip-ada5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.liquid_d75f .prev_6691 {
  background: #e8f5e9;
  color: var(--color-success);
}

.section-fc71 .prev_6691 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description-dedf {
  text-align: center;
}

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

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

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

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

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

.column-lite-8b8f {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.hover-current-8f52 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

.bright-078c {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.narrow_b017 {
  text-align: right;
}

.narrow_b017 .logo-prev-bdbc {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.status-18be {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.basic-ccbb {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

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

.basic-ccbb[aria-expanded="true"] .wide_cd72 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.down_ff4d,
.thumbnail-21ad {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.down_ff4d h4,
.thumbnail-21ad h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.down_ff4d ul,
.thumbnail-21ad ul {
  list-style: none;
  padding: 0;
}

.down_ff4d li,
.thumbnail-21ad li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.accent-6eb1 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.title-wood-971d {
  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);
}

.tertiary-2393 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-tiny-aa7b .summary-short-8af5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.wood-7731 {
  list-style: none;
  padding: 0;
}

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

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

.wood-7731 a:hover {
  color: white;
}

.frame-6746 {
  list-style: none;
  padding: 0;
}

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

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

.frame-6746 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .gallery_105e {
    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;
  }
  
  .grid_9a23 {
    font-size: 2rem;
  }
  
  .photo_9217 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .orange-fb6b,
  .component_7ba9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pattern_d68f,
  .badge-narrow-4a06,
  .pink-f442,
  .button_a897,
  .caption-75da,
  .wide_cb3b,
  .out-d8ad,
  .section-9643 {
    grid-template-columns: 1fr;
  }
  
  .dropdown_55e4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .nav_lower_51b8 {
    padding: var(--space-lg) 0;
  }
  
  .box-8617 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box-8617 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .layout_selected_b6b7 {
    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;
  }
  
  .dropdown_55e4 {
    grid-template-columns: 1fr;
  }
  
  .filter-a90b,
  .component-fresh-9461,
  .up-aafc {
    flex-direction: column;
    width: 100%;
  }
  
  .stale-a205,
  .pink_502c,
  .filter-a90b .layout_selected_b6b7,
  .component-fresh-9461 .layout_selected_b6b7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .grid_9a23 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .photo_9217 {
    font-size: 1.375rem;
  }
  
  .notification-gold-f60b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tag-5cfa,
  .box_under_47d7,
  .list-4baa,
  .carousel_87fd,
  .next-1fe6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .popup-silver-bee3 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .cool_9e95 {
    gap: var(--space-xs);
  }
  
  .tabs_e24c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .east-d541 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .carousel_purple_4b4f {
    width: 150px;
    height: 150px;
  }
  
  .gallery-plasma-aa6d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .feature-glass-b97f,
  .bottom_016c,
  .filter-a90b,
  .soft_87ca,
  .caption-upper-2565,
  .chip-west-8659,
  .lite_911b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .nav_lower_51b8 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b462 */
.promo-block-q3 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.3;
}
