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

.primary_e727:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.badge_gas_a87d):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.badge_gas_a87d,
header,
.feature-c997,
.chip_upper_80a8,
.active-b423,
.modal-1fa4,
.tall_0828,
.red_495b,
.notification-c46c {
  max-width: none;
}

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

.stale-09dd {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.tabs-iron-829a {
  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;
}

.mask_tall_522e {
  flex: 1;
}

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

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

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

.tabs_39bc.fn-active-a746 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.short-d0f4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .mask_tall_522e {
    display: none;
  }
  
  .box_5281 {
    display: flex;
  }
  
  .tabs-iron-829a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .short-d0f4,
  .shade-5028 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .inner_3a8c {
    position: relative;
  }
  
  .complex_e46c {
    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;
  }
  
  .block_f914[aria-expanded="true"] + .complex_e46c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .heading_55d4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .content-simple-a724 {
    gap: 8px;
  }
  
  .short-d0f4 {
    display: none;
  }
  
  .shade-5028 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .module_1450 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.sidebar_mini_4516 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron-3ff6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.iron-3ff6 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.item-basic-d122 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-17bf {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .banner-black-fc00 {
    grid-template-columns: 1fr;
  }
  
  .sidebar-2ac1 {
    font-size: 1.75rem;
  }
  
  .item-basic-d122 {
    order: -1;
    max-width: 100%;
  }
  
  .item-17bf {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sidebar-2ac1 {
    font-size: 1.5rem;
  }
  
  .box_5d2f {
    font-size: 1rem;
  }
  
  .stale_6a02 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .item-17bf {
    max-width: 250px;
  }
}

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

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

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

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

.highlight-7c2a:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

.section-pressed-97a2:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

.image-cool-55ae {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

.filter-medium-79bf {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider_upper_7e72 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) {
  .breadcrumb_solid_18c5 {
    grid-template-columns: 1fr;
  }
  
  .status_red_5543 {
    font-size: 1.75rem;
  }
  
  .light_9c08 {
    max-width: 100%;
  }
}

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

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

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

.under-06b2 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.modal-1a34 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.box_slow_bdaa {
  flex-shrink: 0;
}

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

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

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

.south_f149,
.dropdown_7945,
.box-large-ae3f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.south_f149 thead,
.dropdown_7945 thead {
  background: var(--color-primary);
  color: white;
}

.south_f149 th,
.south_f149 td,
.dropdown_7945 th,
.dropdown_7945 td,
.box-large-ae3f th,
.box-large-ae3f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .south_f149 th,
  .south_f149 td,
  .dropdown_7945 th,
  .dropdown_7945 td,
  .box-large-ae3f th,
  .box-large-ae3f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .south_f149,
  .dropdown_7945,
  .box-large-ae3f {
    min-width: 600px;
  }
}

.south_f149 th,
.dropdown_7945 th,
.box-large-ae3f th {
  font-weight: 600;
}

.south_f149 tbody tr:hover,
.dropdown_7945 tbody tr:hover,
.box-large-ae3f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.detail-rough-ce51 h4 {
  color: white;
}

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

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

.orange-ba40:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.steel-2d90 {
  font-weight: 600;
  color: white;
}

.link-focused-7501 {
  list-style: none;
  padding: 0;
}

.link-focused-7501 li {
  padding: var(--space-xs) 0;
}

.highlight-brown-3b8d {
  color: #4caf50;
}

.accent-cool-3cac {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.accent-huge-6c16 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.message-up-adaf {
  margin-top: var(--space-xxl);
}

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

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

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

.tooltip-glass-7ab0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.tooltip-glass-7ab0 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.tooltip-glass-7ab0 li {
  padding: var(--space-xs) 0;
  color: white;
}

.tooltip-glass-7ab0 .narrow-6c7d {
  width: 100%;
  background: white;
}

.detail-tall-5e41 .narrow-6c7d {
  color: #667eea;
}

.nav_630b .narrow-6c7d {
  color: #f5576c;
}

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

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

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

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

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

.highlight-3a6b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .status_6dff {
    padding: var(--space-md);
  }
  
  .highlight-3a6b {
    padding: var(--space-md);
  }
  
  .aside_smooth_84a4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.stale-c6ea,
.focus-lite-2804,
.pink-40c5,
.cool_a0f2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.solid-557f h4 {
  margin-bottom: var(--space-md);
}

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

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

.tabs_45db {
  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_45db {
    grid-template-columns: 1fr;
  }
}

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

.fixed-329c {
  border-color: var(--color-success);
}

.breadcrumb-down-9b56 {
  border-color: var(--color-warning);
}

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

.fixed-329c .alert_a999 {
  background: #e8f5e9;
  color: var(--color-success);
}

.breadcrumb-down-9b56 .alert_a999 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.popup-easy-622e {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.texture-e6a1 {
  text-align: center;
}

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

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

.tooltip_fd54 .steel-2d90 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.component-center-e6e3 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.message-8f93 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.section-right-26f4 {
  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;
}

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

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

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

.solid-fb95 {
  text-align: right;
}

.solid-fb95 .sidebar-ccf0 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.selected-df4f {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.tertiary-d1e2 {
  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-d1e2:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hot_f7f2 ul,
.title_orange_9a51 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.section-first-84f9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.section-first-84f9 ul {
  list-style: none;
  padding: 0;
}

.section-first-84f9 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

.label-tall-c041 {
  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);
}

.avatar_copper_fb05 {
  font-style: italic;
}

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

.card-west-3c72 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.menu-plasma-b89e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.right-950d {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-950d li {
  margin-bottom: var(--space-xs);
}

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

.right-950d a:hover {
  color: white;
}

.component-d0a8 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.component-d0a8 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.component-d0a8 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.thick-2456 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.thick-2456 a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.thick-2456 a:hover {
  color: white;
}

.item-d873 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .text_pro_e6e9,
  .menu-plasma-b89e {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.dropdown-5948 .input_fresh_f163 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.gallery_down_178b a:hover {
  color: white;
}

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

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

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

.advanced_daa4 a:hover {
  color: white;
}

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

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

.easy-56ef a {
  color: #4caf50;
  text-decoration: none;
}

.column-bronze-91ae {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.border_south_0d1a a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

.modal-advanced-005a {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.modal-advanced-005a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .item-d873 {
    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;
  }
  
  .sidebar-2ac1 {
    font-size: 2rem;
  }
  
  .status_red_5543 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .banner-black-fc00,
  .breadcrumb_solid_18c5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box_c2fd,
  .tabs_45db,
  .section-41e6,
  .blue-1ae8,
  .column-5ff2,
  .image-faa9,
  .liquid-4c91,
  .text_pro_e6e9,
  .menu-plasma-b89e {
    grid-template-columns: 1fr;
  }
  
  .row-1d0d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tall_0828 {
    padding: var(--space-lg) 0;
  }
  
  .carousel_a098 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .carousel_a098 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .narrow-6c7d {
    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;
  }
  
  .row-1d0d {
    grid-template-columns: 1fr;
  }
  
  .stale_0590,
  .detail-plasma-6135,
  .selected_a94d {
    flex-direction: column;
    width: 100%;
  }
  
  .module_860a,
  .solid_8ae4,
  .stale_0590 .narrow-6c7d,
  .detail-plasma-6135 .narrow-6c7d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .sidebar-2ac1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .status_red_5543 {
    font-size: 1.375rem;
  }
  
  .main-2204 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .section-pressed-97a2,
  .avatar-835b,
  .breadcrumb-71fe,
  .paragraph-d09d,
  .input-00aa {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mini-59be {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .slow_2c72 {
    gap: var(--space-xs);
  }
  
  .sidebar_mini_4516 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .accent-aca7 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .tooltip_fd54 {
    width: 150px;
    height: 150px;
  }
  
  .sidebar_3a90 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .badge_gas_a87d,
  .feature-c997,
  .stale_0590,
  .card-west-3c72,
  .red_495b,
  .notification-c46c,
  .box_5281 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tall_0828 {
    page-break-inside: avoid;
  }
}

/* css-noise: 60a9 */
.phantom-card-m2 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}
