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

.fast_8e3c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tag-left-cbe4,
header,
.next_5269,
.hero_ff10,
.red_55e4,
.gallery-west-218e,
.secondary_action_815d,
.surface-1d2a,
.heading_ab43 {
  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
   ============================================ */
.tag-left-cbe4 {
  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);
}

.pro-4b93 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.section_dark_390b {
  flex: 1;
}

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

.surface-inner-5456 {
  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);
}

.surface-inner-5456:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.surface-inner-5456.fn-active-072e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.purple-2d7b {
  position: relative;
}

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

.slow-238b svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.mask-e303 svg {
  flex-shrink: 0;
}

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

.pagination-366f: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);
}

.pagination-366f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.row_455d[aria-expanded="true"] .media-342d:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .section_dark_390b {
    display: none;
  }
  
  .row_455d {
    display: flex;
  }
  
  .popup_silver_363a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .mask-e303,
  .pagination-366f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .purple-2d7b {
    position: relative;
  }
  
  .row_4c5d {
    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;
  }
  
  .slow-238b[aria-expanded="true"] + .row_4c5d {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .focus-786b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .frame-9a2d {
    gap: 8px;
  }
  
  .mask-e303 {
    display: none;
  }
  
  .pagination-366f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .purple_71f5 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.card_802f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-basic-83c3 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-basic-83c3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.detail-basic-83c3 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.row-inner-dee1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.backdrop-small-79a8 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dim_3f74 {
    grid-template-columns: 1fr;
  }
  
  .pro_3ee6 {
    font-size: 1.75rem;
  }
  
  .huge_3834 {
    order: -1;
    max-width: 100%;
  }
  
  .backdrop-small-79a8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pro_3ee6 {
    font-size: 1.5rem;
  }
  
  .prev_59df {
    font-size: 1rem;
  }
  
  .action_3a6e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .backdrop-small-79a8 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel-brown-611e {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.last-97bc {
  list-style: none;
  counter-reset: toc-counter;
}

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

.last-97bc 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);
}

.last-97bc 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;
}

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

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

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

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

.highlight-simple-d0db {
  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);
}

.footer_iron_5a76 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

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

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

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

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

.medium-244c img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.medium-244c 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);
}

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

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

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

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

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

.medium-244c strong {
  font-weight: 600;
  color: var(--color-text);
}

.medium-244c a {
  color: var(--color-primary);
  text-decoration: underline;
}

.medium-244c a:hover {
  color: var(--color-primary-dark);
}

.input-52eb {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.input-52eb 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) {
  .message-top-96ef {
    grid-template-columns: 1fr;
  }
  
  .footer_iron_5a76 {
    font-size: 1.75rem;
  }
  
  .medium-244c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer_iron_5a76 {
    font-size: 1.5rem;
  }
  
  .medium-244c h3 {
    font-size: 1.375rem;
  }
  
  .medium-244c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.north-1f90 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.modal_smooth_c4e2 {
  flex-shrink: 0;
}

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

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

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

.bronze-8683,
.list_0b99,
.tabs_tiny_9685 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bronze-8683 thead,
.list_0b99 thead {
  background: var(--color-primary);
  color: white;
}

.bronze-8683 th,
.bronze-8683 td,
.list_0b99 th,
.list_0b99 td,
.tabs_tiny_9685 th,
.tabs_tiny_9685 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bronze-8683 th,
  .bronze-8683 td,
  .list_0b99 th,
  .list_0b99 td,
  .tabs_tiny_9685 th,
  .tabs_tiny_9685 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .bronze-8683,
  .list_0b99,
  .tabs_tiny_9685 {
    min-width: 600px;
  }
}

.bronze-8683 th,
.list_0b99 th,
.tabs_tiny_9685 th {
  font-weight: 600;
}

.bronze-8683 tbody tr:hover,
.list_0b99 tbody tr:hover,
.tabs_tiny_9685 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.progress_tiny_c242 h4 {
  color: white;
}

.heading-upper-93f6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

.search-f2c6:last-child {
  border-bottom: none;
}

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

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

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

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

.pattern-center-f6ec:hover {
  text-decoration: underline;
}

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

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

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

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

.tag-7180 {
  list-style: none;
  padding: 0;
}

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

.wrapper-c6f2 {
  color: #4caf50;
}

.main_gas_8bcb {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-easy-4fec {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.solid-3214 .in_98ac {
  width: 100%;
  background: white;
}

.frame_2b50 .in_98ac {
  color: #667eea;
}

.surface_west_e11b .in_98ac {
  color: #f5576c;
}

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

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

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

.narrow-53e8 {
  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);
}

.component-4eac h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.notice-up-cd56 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .component-4eac {
    padding: var(--space-md);
  }
  
  .notice-up-cd56 {
    padding: var(--space-md);
  }
  
  .red-0c92 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.selected-dd8e,
.new_0ad6,
.info_329e,
.block-hot-f819 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.light-9cb3 {
  border-color: var(--color-success);
}

.right-13c5 {
  border-color: var(--color-warning);
}

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

.light-9cb3 .under-d1ea {
  background: #e8f5e9;
  color: var(--color-success);
}

.right-13c5 .under-d1ea {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.label-copper-11b0 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.text-copper-efd4 {
  margin-top: var(--space-xxl);
}

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

.button-0aad {
  text-align: center;
}

.block-glass-4a08 {
  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);
}

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

.block-glass-4a08 .fast_26bf {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

.photo-mini-3f86 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.gradient-center-db54 {
  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;
}

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

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

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

.background_0569 {
  text-align: right;
}

.background_0569 .plasma-fb04 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.notification-last-2faf {
  background: #e8f5e9;
  color: #2e7d32;
}

.paragraph_rough_4431 {
  background: #e3f2fd;
  color: #1565c0;
}

.blue-5b6e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

.column-narrow-6cc6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

.alert-simple-41da {
  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);
}

.alert-simple-41da:hover {
  background: var(--color-bg-alt);
}

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

.alert-simple-41da[aria-expanded="true"] .image_31f5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.north-67ee,
.middle-cf98 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.north-67ee h4,
.middle-cf98 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.north-67ee ul,
.middle-cf98 ul {
  list-style: none;
  padding: 0;
}

.north-67ee li,
.middle-cf98 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.primary-hard-0e5b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.primary-hard-0e5b ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.action-b577 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.fast-2ee1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.tiny_9fc4 a:hover {
  color: white;
}

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

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

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

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

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

.orange_fb38 a:hover {
  color: white;
}

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

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

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

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

.box-outer-97b8 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.box-outer-97b8 .info_cold_8cce {
  color: #4caf50;
  font-size: 0.875rem;
}

.thumbnail-dark-d4fd {
  list-style: none;
  padding: 0;
}

.thumbnail-dark-d4fd li {
  margin-bottom: var(--space-xs);
}

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

.thumbnail-dark-d4fd a:hover {
  color: white;
}

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

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

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

.active_d76c a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.avatar-36ce:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .light_eb70 {
    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;
  }
  
  .pro_3ee6 {
    font-size: 2rem;
  }
  
  .footer_iron_5a76 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dim_3f74,
  .message-top-96ef {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .summary-c982,
  .cold-d38a,
  .footer-3cc9,
  .south_c556,
  .active_f0b4,
  .main-8669,
  .hero-25e3,
  .input_9026,
  .tag_under_a4cc {
    grid-template-columns: 1fr;
  }
  
  .thumbnail-4c0e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .secondary_action_815d {
    padding: var(--space-lg) 0;
  }
  
  .last-97bc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .last-97bc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .in_98ac {
    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;
  }
  
  .thumbnail-4c0e {
    grid-template-columns: 1fr;
  }
  
  .row-inner-dee1,
  .column_pro_7aae,
  .container_20d8 {
    flex-direction: column;
    width: 100%;
  }
  
  .status_in_e970,
  .tertiary-1176,
  .row-inner-dee1 .in_98ac,
  .column_pro_7aae .in_98ac {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pro_3ee6 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .footer_iron_5a76 {
    font-size: 1.375rem;
  }
  
  .center_3830 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .paragraph-53e2,
  .slow-a04d,
  .paper-8df9,
  .active_8afc,
  .media-steel-11bf {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .filter_744b {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fluid-eccf {
    gap: var(--space-xs);
  }
  
  .card_802f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .surface_dcdc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .block-glass-4a08 {
    width: 150px;
    height: 150px;
  }
  
  .element-9325 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tag-left-cbe4,
  .next_5269,
  .row-inner-dee1,
  .active_current_ee39,
  .surface-1d2a,
  .heading_ab43,
  .row_455d {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .secondary_action_815d {
    page-break-inside: avoid;
  }
}

/* css-noise: 460f */
.phantom-card-i0 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.1;
}
