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

.link-6987:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.icon-d877,
header,
.media-focused-7f83,
.chip_short_b3cc,
.content_south_6b93,
.tooltip_basic_e4f7,
.link_6b9f,
.column_638e,
.focus-f165 {
  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
   ============================================ */
.icon-d877 {
  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);
}

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

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

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

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

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

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

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

.sort-8fae {
  flex: 1;
}

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

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

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

.component_acf2.fn-active-3a10 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.new-c5b1 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

.wrapper-prev-4e18 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.menu_center_2fad svg {
  flex-shrink: 0;
}

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

.left-1bd9: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);
}

.left-1bd9 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

.highlight-dynamic-02e2 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.hovered-dc24[aria-expanded="true"] .highlight-dynamic-02e2:nth-child(2) {
  opacity: 0;
}

.hovered-dc24[aria-expanded="true"] .highlight-dynamic-02e2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .sort-8fae {
    display: none;
  }
  
  .hovered-dc24 {
    display: flex;
  }
  
  .panel_0adb {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .menu_center_2fad,
  .left-1bd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .new-c5b1 {
    position: relative;
  }
  
  .lower_b04b {
    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;
  }
  
  .smooth_06b0[aria-expanded="true"] + .lower_b04b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .action_0caf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .wrapper-prev-4e18 {
    gap: 8px;
  }
  
  .menu_center_2fad {
    display: none;
  }
  
  .left-1bd9 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .tag_new_4963 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .left-1bd9 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .left-1bd9 svg {
    width: 14px;
    height: 14px;
  }
  
  .aside-7800 {
    gap: var(--space-sm);
  }
}

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

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

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

.accordion_dff7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-016b {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.media-7b3e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gallery-8776 {
    grid-template-columns: 1fr;
  }
  
  .white-39dc {
    font-size: 1.75rem;
  }
  
  .tertiary_f7b2 {
    order: -1;
    max-width: 100%;
  }
  
  .media-7b3e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .white-39dc {
    font-size: 1.5rem;
  }
  
  .next_f26c {
    font-size: 1rem;
  }
  
  .secondary_99f5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .media-7b3e {
    max-width: 250px;
  }
}

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

.accordion-red-b57e {
  background: var(--color-primary);
  color: white;
}

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

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

.grid-249d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.east-a751 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;
}

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

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

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

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

.image-lower-95bc {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown_white_d126 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) {
  .right_f0b9 {
    grid-template-columns: 1fr;
  }
  
  .mask_gas_7597 {
    font-size: 1.75rem;
  }
  
  .pattern_pro_bb2c {
    max-width: 100%;
  }
}

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

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

.medium-7b6f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.block-complex-3bb3 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.message_under_376d {
  flex-shrink: 0;
}

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

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

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

.purple-b2b9,
.list_fluid_7f62,
.tag-d1ed {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.purple-b2b9 thead,
.list_fluid_7f62 thead {
  background: var(--color-primary);
  color: white;
}

.purple-b2b9 th,
.purple-b2b9 td,
.list_fluid_7f62 th,
.list_fluid_7f62 td,
.tag-d1ed th,
.tag-d1ed td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .purple-b2b9 th,
  .purple-b2b9 td,
  .list_fluid_7f62 th,
  .list_fluid_7f62 td,
  .tag-d1ed th,
  .tag-d1ed td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .purple-b2b9,
  .list_fluid_7f62,
  .tag-d1ed {
    min-width: 600px;
  }
}

.purple-b2b9 th,
.list_fluid_7f62 th,
.tag-d1ed th {
  font-weight: 600;
}

.purple-b2b9 tbody tr:hover,
.list_fluid_7f62 tbody tr:hover,
.tag-d1ed tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.glass_4259 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.list-liquid-bc78 {
  font-weight: 600;
  color: white;
}

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

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

.hidden-73b9 {
  color: #4caf50;
}

.picture_yellow_473f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.overlay-dirty-468a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-lower-3434 .accent-b387 {
  width: 100%;
  background: white;
}

.warm-7122 .accent-b387 {
  color: #667eea;
}

.footer-current-419a .accent-b387 {
  color: #f5576c;
}

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

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

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

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

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

.thick-93ad {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .background_2b7a {
    padding: var(--space-md);
  }
  
  .thick-93ad {
    padding: var(--space-md);
  }
  
  .tooltip-05f0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.banner_612a,
.shade-complex-0b64,
.list-1090,
.badge_slow_d42a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-60c7 {
  border-color: var(--color-warning);
}

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

.icon_top_8e02 .smooth_cd54 {
  background: #e8f5e9;
  color: var(--color-success);
}

.west-60c7 .smooth_cd54 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.card-new-b1ba {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.badge-bronze-a64c {
  margin-top: var(--space-xxl);
}

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

.shadow_pressed_8193 {
  text-align: center;
}

.backdrop-silver-157f {
  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);
}

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

.backdrop-silver-157f .list-liquid-bc78 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.liquid-3c52 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.breadcrumb-mini-fe6d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-orange-a67b {
  text-align: right;
}

.sidebar-orange-a67b .gas_8307 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.progress-3464 {
  background: #e8f5e9;
  color: #2e7d32;
}

.row-up-3349 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-lower-a5d4 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.main-a39c,
.chip-04a9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.main-a39c h4,
.chip-04a9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.main-a39c ul,
.chip-04a9 ul {
  list-style: none;
  padding: 0;
}

.main-a39c li,
.chip-04a9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.filter-138a {
  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);
}

.iron_974b {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.grid-6b9a {
  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);
}

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

.component-out-05d7 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.steel-65e5 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steel-65e5 li {
  margin-bottom: var(--space-xs);
}

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

.steel-65e5 a:hover {
  color: white;
}

.tooltip-38b3 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.tooltip-38b3 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);
}

.tooltip-38b3 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.footer-middle-690a {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.footer-middle-690a a:hover {
  color: white;
}

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

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

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

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

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

.summary_narrow_6040 .summary_d79a {
  color: #4caf50;
  font-size: 0.875rem;
}

.caption-eae9 {
  list-style: none;
  padding: 0;
}

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

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

.caption-eae9 a:hover {
  color: white;
}

.pink-a46b {
  list-style: none;
  padding: 0;
}

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

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

.pink-a46b a:hover {
  color: white;
}

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

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

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

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

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

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

.active-f9d2 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;
}

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

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

@media (max-width: 768px) {
  .hard_6488 {
    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;
  }
  
  .white-39dc {
    font-size: 2rem;
  }
  
  .mask_gas_7597 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gallery-8776,
  .right_f0b9 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .dropdown-inner-8086,
  .huge_02d7,
  .accent_tiny_f0da,
  .module_9196,
  .focus_small_8c11,
  .north-8e65,
  .hard-75d5,
  .sort_right_f9b9,
  .over-0810 {
    grid-template-columns: 1fr;
  }
  
  .container_dfcc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .link_6b9f {
    padding: var(--space-lg) 0;
  }
  
  .east-a751 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .east-a751 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .accent-b387 {
    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;
  }
  
  .container_dfcc {
    grid-template-columns: 1fr;
  }
  
  .secondary-016b,
  .complex-d7ae,
  .menu_dark_fbd5 {
    flex-direction: column;
    width: 100%;
  }
  
  .tall_245c,
  .wood-d2fd,
  .secondary-016b .accent-b387,
  .complex-d7ae .accent-b387 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .white-39dc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .mask_gas_7597 {
    font-size: 1.375rem;
  }
  
  .widget_5367 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .nav_short_c418,
  .module-5901,
  .in_3a4b,
  .icon_dynamic_8630,
  .plasma-2eb5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .content_center_a83e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .alert-970d {
    gap: var(--space-xs);
  }
  
  .accordion_dff7 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .info_blue_8c24 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .backdrop-silver-157f {
    width: 150px;
    height: 150px;
  }
  
  .button_bce7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .icon-d877,
  .media-focused-7f83,
  .secondary-016b,
  .description-d423,
  .column_638e,
  .focus-f165,
  .hovered-dc24 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .link_6b9f {
    page-break-inside: avoid;
  }
}

/* css-noise: 59a3 */
.promo-block-y4 {
  padding: 0.2rem;
  font-size: 11px;
  line-height: 1.1;
}
