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

.thick_3bf5:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.dim-c2f1):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. */
.dim-c2f1,
header,
.status-yellow-f059,
.tag_slow_1762,
.east-0c66,
.red_3de0,
.gas_8102,
.hover_advanced_faa8,
.hidden-smooth-4ea4 {
  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
   ============================================ */
.dim-c2f1 {
  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);
}

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

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

/* Scrolled state */
.dim-c2f1.article-dark-9ad4 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.new-003c {
  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;
}

.summary_hard_5454 {
  flex: 1;
}

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

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

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

.element_1cf2.element-cool-b364 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.hard-cb7a {
  position: relative;
}

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

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

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

.overlay-right-352f {
  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;
}

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

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

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

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

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

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

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

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

.tag_copper_9256 svg {
  flex-shrink: 0;
}

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

.photo-red-d346: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);
}

.photo-red-d346 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.hovered_5855[aria-expanded="true"] .white-95ce:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .summary_hard_5454 {
    display: none;
  }
  
  .hovered_5855 {
    display: flex;
  }
  
  .new-003c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .tag_copper_9256,
  .photo-red-d346 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hard-cb7a {
    position: relative;
  }
  
  .overlay-right-352f {
    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;
  }
  
  .article_in_31c4[aria-expanded="true"] + .overlay-right-352f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .highlight_ab77 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .feature-a262 {
    gap: 8px;
  }
  
  .tag_copper_9256 {
    display: none;
  }
  
  .photo-red-d346 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outline_prev_be55 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .photo-red-d346 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .photo-red-d346 svg {
    width: 14px;
    height: 14px;
  }
  
  .text_next_1f01 {
    gap: var(--space-sm);
  }
}

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

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

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

.summary_37cf svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.info-in-690d {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.element-2d72 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.layout-hovered-e10b {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .mini-d3ec {
    grid-template-columns: 1fr;
  }
  
  .smooth-b1be {
    font-size: 1.75rem;
  }
  
  .background_gas_eae7 {
    order: -1;
    max-width: 100%;
  }
  
  .layout-hovered-e10b {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .smooth-b1be {
    font-size: 1.5rem;
  }
  
  .glass-74bf {
    font-size: 1rem;
  }
  
  .tabs_down_f272 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout-hovered-e10b {
    max-width: 250px;
  }
}

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

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

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

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

.thumbnail-east-beca:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.overlay-copper-d531 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.shadow-copper-3aec {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.progress-complex-637e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.progress-complex-637e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.progress-complex-637e pre,
.progress-complex-637e code {
  overflow-x: auto;
  max-width: 100%;
}

.progress-complex-637e 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);
}

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

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

.progress-complex-637e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.progress-complex-637e ul,
.progress-complex-637e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.progress-complex-637e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.progress-complex-637e strong {
  font-weight: 600;
  color: var(--color-text);
}

.progress-complex-637e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.progress-complex-637e a:hover {
  color: var(--color-primary-dark);
}

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

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

.static-e090 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) {
  .simple-de8c {
    grid-template-columns: 1fr;
  }
  
  .filter_9893 {
    font-size: 1.75rem;
  }
  
  .progress-complex-637e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .filter_9893 {
    font-size: 1.5rem;
  }
  
  .progress-complex-637e h3 {
    font-size: 1.375rem;
  }
  
  .progress-complex-637e h4 {
    font-size: 1.125rem;
  }
}

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

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

.simple-7cc4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.pattern-778b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.text-d6d8 {
  flex-shrink: 0;
}

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

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

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

.list_tiny_6203,
.advanced-5c03,
.modal_hot_09f3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.list_tiny_6203 thead,
.advanced-5c03 thead {
  background: var(--color-primary);
  color: white;
}

.list_tiny_6203 th,
.list_tiny_6203 td,
.advanced-5c03 th,
.advanced-5c03 td,
.modal_hot_09f3 th,
.modal_hot_09f3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .list_tiny_6203 th,
  .list_tiny_6203 td,
  .advanced-5c03 th,
  .advanced-5c03 td,
  .modal_hot_09f3 th,
  .modal_hot_09f3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .list_tiny_6203,
  .advanced-5c03,
  .modal_hot_09f3 {
    min-width: 600px;
  }
}

.list_tiny_6203 th,
.advanced-5c03 th,
.modal_hot_09f3 th {
  font-weight: 600;
}

.list_tiny_6203 tbody tr:hover,
.advanced-5c03 tbody tr:hover,
.modal_hot_09f3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.highlight-purple-518a h4 {
  color: white;
}

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

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

.tiny-6eac:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

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

.picture-mini-8b26 {
  color: #4caf50;
}

.overlay-b711 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-mini-17c4 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.steel_e12b .mini-53de {
  width: 100%;
  background: white;
}

.container-top-c168 .mini-53de {
  color: #667eea;
}

.row-cool-438e .mini-53de {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .out-c438 {
    padding: var(--space-md);
  }
  
  .main_fluid_7e6f {
    padding: var(--space-md);
  }
  
  .widget_4d3c {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.gold-4be4 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.grid-20e8,
.smooth-f470,
.silver-de0c,
.text-plasma-f58c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.shade-simple-100a {
  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) {
  .shade-simple-100a {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.hidden_full_c215 .dropdown_8c9b {
  background: #e8f5e9;
  color: var(--color-success);
}

.item_7623 .dropdown_8c9b {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.focused-18a0 {
  margin-top: var(--space-xxl);
}

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

.active-over-39b8 {
  text-align: center;
}

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

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

.light-2ed5 .link_6728 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.shade-29f4 {
  color: var(--color-text-light);
}

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

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

.picture-91cb {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.sidebar-left-c77f {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.sort-thick-a8a8 {
  text-align: right;
}

.sort-thick-a8a8 .table_5487 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.focus-gold-2ecc {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.text-fixed-05aa {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.clean-910e {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old_46ac[aria-expanded="true"] .hovered-cce0 {
  transform: rotate(180deg);
}

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

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

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

.content-pro-a0e6 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

.block_5b5d h4,
.alert_middle_f92f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.block_5b5d ul,
.alert_middle_f92f ul {
  list-style: none;
  padding: 0;
}

.block_5b5d li,
.alert_middle_f92f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.gallery-light-dd2a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.table_4105 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-3f2a .column-f00e {
  color: #4caf50;
  font-size: 0.875rem;
}

.outer-4b2c {
  list-style: none;
  padding: 0;
}

.outer-4b2c li {
  margin-bottom: var(--space-xs);
}

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

.outer-4b2c a:hover {
  color: white;
}

.dim-d5ea {
  list-style: none;
  padding: 0;
}

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

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

.dim-d5ea a:hover {
  color: white;
}

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

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

.sort-first-be66 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.picture-95e3:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .stale-b3f5 {
    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-b1be {
    font-size: 2rem;
  }
  
  .filter_9893 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .mini-d3ec,
  .simple-de8c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .heading-b8c6,
  .tabs_a5a1,
  .filter-d0db,
  .feature-7c9c,
  .form_cca0,
  .status-7a39,
  .bright-b28b,
  .outer-176f {
    grid-template-columns: 1fr;
  }
  
  .popup_glass_79c0 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gas_8102 {
    padding: var(--space-lg) 0;
  }
  
  .grid_cf34 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .grid_cf34 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mini-53de {
    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;
  }
  
  .popup_glass_79c0 {
    grid-template-columns: 1fr;
  }
  
  .element-2d72,
  .input_prev_aae1,
  .gallery-outer-c98b {
    flex-direction: column;
    width: 100%;
  }
  
  .bottom_bb98,
  .overlay-copper-d531,
  .element-2d72 .mini-53de,
  .input_prev_aae1 .mini-53de {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .smooth-b1be {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .filter_9893 {
    font-size: 1.375rem;
  }
  
  .secondary-under-d918 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .active_505b,
  .main-fc16,
  .highlight-d898,
  .glass_4f6c,
  .dark_f6ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shade-simple-100a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wood-6ee6 {
    gap: var(--space-xs);
  }
  
  .summary_37cf {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .aside_cold_846a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .light-2ed5 {
    width: 150px;
    height: 150px;
  }
  
  .huge_77a6 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dim-c2f1,
  .status-yellow-f059,
  .element-2d72,
  .liquid_d79a,
  .hover_advanced_faa8,
  .hidden-smooth-4ea4,
  .hovered_5855 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gas_8102 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 45a2 */
.promo-block-h0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.2;
}
