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

.badge-inner-c8da:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.layout-e184,
header,
.first_4641,
.short_4b9f,
.orange_dccc,
.prev_d969,
.upper_a2e9,
.thumbnail_current_8614,
.warm_0eda {
  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
   ============================================ */
.layout-e184 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

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

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

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

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

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

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

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

.surface_ca69 {
  flex: 1;
}

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

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

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

.pro_7f5c.fn-active-4461 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.avatar_focused_b38d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.popup_7247[aria-expanded="true"] .gradient-9da5:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .surface_ca69 {
    display: none;
  }
  
  .popup_7247 {
    display: flex;
  }
  
  .basic-b87a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .avatar_focused_b38d,
  .progress_wood_5064 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .sort_copper_302d {
    position: relative;
  }
  
  .progress_medium_2085 {
    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;
  }
  
  .popup_040d[aria-expanded="true"] + .progress_medium_2085 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .up-6a55 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .container_gas_428f {
    gap: 8px;
  }
  
  .avatar_focused_b38d {
    display: none;
  }
  
  .progress_wood_5064 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .feature_a317 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.link_cold_9af8 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .slider-current-54a2 {
    grid-template-columns: 1fr;
  }
}

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

.texture-bottom-39db {
  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;
}

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

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

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

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

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

.slow_70fa {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .complex-66bb {
    grid-template-columns: 1fr;
  }
  
  .card-e35b {
    font-size: 1.75rem;
  }
  
  .carousel_8e7b {
    order: -1;
    max-width: 100%;
  }
  
  .slow_70fa {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .card-e35b {
    font-size: 1.5rem;
  }
  
  .list-0d0b {
    font-size: 1rem;
  }
  
  .item_light_64d6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slow_70fa {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-wide-733b {
  background: var(--color-bg-section);
}

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

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

.description-86d7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_solid_f075 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) {
  .content_liquid_a8c5 {
    grid-template-columns: 1fr;
  }
  
  .description-86d7 {
    font-size: 1.75rem;
  }
  
  .hero-eb8a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .description-86d7 {
    font-size: 1.5rem;
  }
  
  .hero-eb8a h3 {
    font-size: 1.375rem;
  }
  
  .hero-eb8a h4 {
    font-size: 1.125rem;
  }
}

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

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

.label-091d {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.block-103c {
  flex-shrink: 0;
}

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

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

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

.cold-80b4,
.hover_4d20,
.container-dynamic-d077 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cold-80b4 thead,
.hover_4d20 thead {
  background: var(--color-primary);
  color: white;
}

.cold-80b4 th,
.cold-80b4 td,
.hover_4d20 th,
.hover_4d20 td,
.container-dynamic-d077 th,
.container-dynamic-d077 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cold-80b4 th,
  .cold-80b4 td,
  .hover_4d20 th,
  .hover_4d20 td,
  .container-dynamic-d077 th,
  .container-dynamic-d077 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .cold-80b4,
  .hover_4d20,
  .container-dynamic-d077 {
    min-width: 600px;
  }
}

.cold-80b4 th,
.hover_4d20 th,
.container-dynamic-d077 th {
  font-weight: 600;
}

.cold-80b4 tbody tr:hover,
.hover_4d20 tbody tr:hover,
.container-dynamic-d077 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.item-west-0c73 h4 {
  color: white;
}

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

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

.fresh-ad15:last-child {
  border-bottom: none;
}

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

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

.sidebar-solid-2dc2 {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

.picture-large-5f50 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.feature-3f15 {
  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);
}

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

.alert-cool-55a3 {
  font-weight: 600;
  color: white;
}

.detail-narrow-6a76 {
  list-style: none;
  padding: 0;
}

.detail-narrow-6a76 li {
  padding: var(--space-xs) 0;
}

.logo_tall_56c0 {
  color: #4caf50;
}

.medium_7c53 {
  color: #ff9800;
}

.hover-white-166a {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-cool-55a3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-under-d8a7 .slider-25f6 {
  width: 100%;
  background: white;
}

.container_b486 .slider-25f6 {
  color: #667eea;
}

.pattern_4ab8 .slider-25f6 {
  color: #f5576c;
}

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

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

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

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

.info-hard-f935 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .info-hard-f935 {
    padding: var(--space-md);
  }
  
  .lite_017e {
    padding: var(--space-md);
  }
  
  .video_steel_4090 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.outline-hard-5a89,
.modal-prev-3a54,
.table-large-1a53,
.banner-715d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.row-up-3ec4 {
  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) {
  .row-up-3ec4 {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.clean-4adc {
  border-color: var(--color-success);
}

.banner-rough-784e {
  border-color: var(--color-warning);
}

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

.clean-4adc .pagination_d9f3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.banner-rough-784e .pagination_d9f3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.title-bottom-32f2 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.border-silver-6e8e {
  margin-top: var(--space-xxl);
}

.form_stale_94f3 {
  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_solid_af44 {
  text-align: center;
}

.detail-simple-7183 {
  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);
}

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

.detail-simple-7183 .alert-cool-55a3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.border-top-5b65 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.notice-066f {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_f296 {
  text-align: right;
}

.badge_f296 .feature-slow-fa7e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.outer-1429 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.texture-4b4a {
  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);
}

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

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

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

.badge-61b9 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east_75b4 ul,
.dim_dbe5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-cold-418c {
  font-style: italic;
}

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

.modal-active-8ff5 {
  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;
}

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

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

.focus-lower-74a3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.input_up_34b1 {
  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) */
.photo_iron_f85f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.highlight_8a8b {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

.highlight_8a8b a:hover {
  color: white;
}

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

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

.notification-ee0d a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.image-south-b83a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.image-south-b83a a:hover {
  color: white;
}

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

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

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

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

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

.blue_f2c3 .alert_dirty_666b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.overlay_orange_3907 a:hover {
  color: white;
}

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

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

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

.status_cold_f07a a:hover {
  color: white;
}

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

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

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

.focused-4f00 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.wide-2a10:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pressed_7024 {
    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;
  }
  
  .card-e35b {
    font-size: 2rem;
  }
  
  .description-86d7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .complex-66bb,
  .content_liquid_a8c5 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .modal_7e95,
  .gallery_3c46,
  .border-e729,
  .east_3762,
  .hovered-f37f,
  .button-bad0,
  .logo_671a,
  .input_up_34b1,
  .photo_iron_f85f {
    grid-template-columns: 1fr;
  }
  
  .video_pink_4fa3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .upper_a2e9 {
    padding: var(--space-lg) 0;
  }
  
  .first_55e0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .first_55e0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .slider-25f6 {
    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;
  }
  
  .video_pink_4fa3 {
    grid-template-columns: 1fr;
  }
  
  .description_white_b7ce,
  .focus-lower-74a3,
  .top_9ffb {
    flex-direction: column;
    width: 100%;
  }
  
  .description_a06d,
  .gallery-a550,
  .description_white_b7ce .slider-25f6,
  .focus-lower-74a3 .slider-25f6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .card-e35b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .description-86d7 {
    font-size: 1.375rem;
  }
  
  .list-27de {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .module_7880,
  .in_30dc,
  .west_e547,
  .panel-5b25,
  .status-c81c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .row-up-3ec4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .mask-7693 {
    gap: var(--space-xs);
  }
  
  .link_cold_9af8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .feature-3f15 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail-simple-7183 {
    width: 150px;
    height: 150px;
  }
  
  .accordion_35a1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .layout-e184,
  .first_4641,
  .description_white_b7ce,
  .modal-active-8ff5,
  .thumbnail_current_8614,
  .warm_0eda,
  .popup_7247 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .upper_a2e9 {
    page-break-inside: avoid;
  }
}

/* css-noise: 1d68 */
.widget-item-f4 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.3;
}
