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

.pagination_f764:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.progress_last_58f8):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. */
.progress_last_58f8,
header,
.accent-d644,
.grid-lite-29e3,
.title_large_6966,
.sort_0b47,
.nav-d6f6,
.sidebar-pink-6855,
.action_2799 {
  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
   ============================================ */
.progress_last_58f8 {
  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);
}

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

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

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

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

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

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

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

.dynamic-4ccf {
  flex: 1;
}

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

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

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

.tooltip_dynamic_54b2.gas-f51b {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main_2aee svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.media-tall-ae4c[aria-expanded="true"] .full_36cc:nth-child(2) {
  opacity: 0;
}

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

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

  .dynamic-4ccf::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .dynamic-4ccf.hover-bottom-1ac9 {
    display: block;
    right: 0;
  }
  
  .dropdown_first_3a66 {
    flex-direction: column;
    gap: 0;
  }
  
  .tooltip_dynamic_54b2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .dynamic-4ccf::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;
  }
  
  .dynamic-4ccf.hover-bottom-1ac9::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .dynamic-4ccf {
    display: none;
  }
  
  .media-tall-ae4c {
    display: flex;
  }
  
  .bottom_4882 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main_2aee,
  .link-0362 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .upper_f172 {
    position: relative;
  }
  
  .steel_940a {
    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;
  }
  
  .primary_d343[aria-expanded="true"] + .steel_940a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .info-a463 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .row-black-5081 {
    gap: 8px;
  }
  
  .main_2aee {
    display: none;
  }
  
  .link-0362 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sort_b079 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .link-0362 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .link-0362 svg {
    width: 14px;
    height: 14px;
  }
  
  .article-center-b549 {
    gap: var(--space-sm);
  }
}

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

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

.link-168c {
  display: flex;
  align-items: center;
  gap: 6px;
}

.link-168c svg {
  flex-shrink: 0;
}

.link-168c a {
  color: var(--color-primary);
  text-decoration: none;
}

.link-168c a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-139c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-9a56 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .notification_bottom_baba {
    grid-template-columns: 1fr;
  }
  
  .smooth_52b8 {
    font-size: 1.75rem;
  }
  
  .east-139c {
    order: -1;
    max-width: 100%;
  }
  
  .highlight-9a56 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .smooth_52b8 {
    font-size: 1.5rem;
  }
  
  .menu-c9d3 {
    font-size: 1rem;
  }
  
  .paragraph_b5bb {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .highlight-9a56 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-63e4 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.tertiary-63e4 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);
}

.tertiary-63e4 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-18b3 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.component-18b3 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) {
  .media_left_82a7 {
    grid-template-columns: 1fr;
  }
  
  .stale_e749 {
    font-size: 1.75rem;
  }
  
  .soft_0930 {
    max-width: 100%;
  }
}

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

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

.center-9d1c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.clean-39c9 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.focus-dim-6b95 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.advanced-a646 {
  flex-shrink: 0;
}

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

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

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

.backdrop-east-fe11,
.module-be79,
.menu_6390 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.backdrop-east-fe11 thead,
.module-be79 thead {
  background: var(--color-primary);
  color: white;
}

.backdrop-east-fe11 th,
.backdrop-east-fe11 td,
.module-be79 th,
.module-be79 td,
.menu_6390 th,
.menu_6390 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .backdrop-east-fe11 th,
  .backdrop-east-fe11 td,
  .module-be79 th,
  .module-be79 td,
  .menu_6390 th,
  .menu_6390 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .backdrop-east-fe11,
  .module-be79,
  .menu_6390 {
    min-width: 600px;
  }
}

.backdrop-east-fe11 th,
.module-be79 th,
.menu_6390 th {
  font-weight: 600;
}

.backdrop-east-fe11 tbody tr:hover,
.module-be79 tbody tr:hover,
.menu_6390 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.black-046f h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.top-c713 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

.in-d204 {
  font-weight: 600;
  color: white;
}

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

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

.black_8716 {
  color: #4caf50;
}

.article_f26a {
  color: #ff9800;
}

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

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

.frame-up-907b {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

.tertiary-rough-5e55:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.tertiary-rough-5e55 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget_simple_7aa2 .shade-2e02 {
  width: 100%;
  background: white;
}

.hard_6245 .shade-2e02 {
  color: #667eea;
}

.element-1f7f .shade-2e02 {
  color: #f5576c;
}

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

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

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

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

.up-46c7 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.summary-current-27cf {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .up-46c7 {
    padding: var(--space-md);
  }
  
  .summary-current-27cf {
    padding: var(--space-md);
  }
  
  .gallery_dirty_c800 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.carousel_8027,
.background-6d68,
.sidebar_stale_55e5,
.footer_tiny_dbd9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.texture-warm-b69a:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.column-1d80 {
  border-color: var(--color-success);
}

.texture-48bd {
  border-color: var(--color-warning);
}

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

.column-1d80 .avatar-b260 {
  background: #e8f5e9;
  color: var(--color-success);
}

.texture-48bd .avatar-b260 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-fresh-61dd {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.mini_4110 {
  text-align: center;
}

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

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

.orange_0ef4 .in-d204 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-south-9dfc {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.accordion-9d36 {
  text-align: right;
}

.accordion-9d36 .main_center_f931 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.info-lower-d39a {
  background: #e8f5e9;
  color: #2e7d32;
}

.nav-926d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.tertiary-14e6 {
  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);
}

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

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

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

.table-6ae2 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.static-87b3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.current_5c8e[aria-expanded="true"] .static-87b3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.banner-selected-f738 {
  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);
}

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

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

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

.dynamic-17aa,
.element_af32 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dynamic-17aa h4,
.element_af32 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dynamic-17aa ul,
.element_af32 ul {
  list-style: none;
  padding: 0;
}

.dynamic-17aa li,
.element_af32 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bright_17cd {
  font-style: italic;
}

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

.row-motion-3171 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper_34e6 .active_active_d899 {
  color: #4caf50;
  font-size: 0.875rem;
}

.grid-solid-53a4 {
  list-style: none;
  padding: 0;
}

.grid-solid-53a4 li {
  margin-bottom: var(--space-xs);
}

.grid-solid-53a4 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.grid-solid-53a4 a:hover {
  color: white;
}

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

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

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

.fluid_1953 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .hot-dc5c {
    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;
  }
  
  .smooth_52b8 {
    font-size: 2rem;
  }
  
  .stale_e749 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .notification_bottom_baba,
  .media_left_82a7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fluid_45df,
  .pro_3755,
  .fluid-ce1b,
  .pink-97b7,
  .gas_91fa,
  .sidebar_6967,
  .out_05a8,
  .avatar-fff0 {
    grid-template-columns: 1fr;
  }
  
  .banner-east-8b48 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .nav-d6f6 {
    padding: var(--space-lg) 0;
  }
  
  .tertiary-63e4 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .tertiary-63e4 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .shade-2e02 {
    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;
  }
  
  .banner-east-8b48 {
    grid-template-columns: 1fr;
  }
  
  .tabs_e569,
  .shadow-stale-ed79,
  .thick_4635 {
    flex-direction: column;
    width: 100%;
  }
  
  .info_3b95,
  .text-f1f0,
  .tabs_e569 .shade-2e02,
  .shadow-stale-ed79 .shade-2e02 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .smooth_52b8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .stale_e749 {
    font-size: 1.375rem;
  }
  
  .nav-3b26 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .complex-d9e3,
  .tertiary-rough-5e55,
  .south-c746,
  .tabs_51ae,
  .focus_ac21 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .static_96d8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .footer_left_277a {
    gap: var(--space-xs);
  }
  
  .link-168c {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .top-c713 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .orange_0ef4 {
    width: 150px;
    height: 150px;
  }
  
  .frame_glass_eee5 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .progress_last_58f8,
  .accent-d644,
  .tabs_e569,
  .row-motion-3171,
  .sidebar-pink-6855,
  .action_2799,
  .media-tall-ae4c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .nav-d6f6 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: b74b */
.widget-item-m0 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
