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

.banner-left-6551:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.main_898f,
header,
.last_04e7,
.next-92ed,
.backdrop_c66f,
.yellow-a611,
.warm-9c77,
.layout_stale_dc2f,
.block_2a9f {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.main_898f {
  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);
}

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

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

/* Scrolled state */
.main_898f.highlight-lite-154a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.breadcrumb-inner-442c {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mask-smooth-87b0 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.chip_d98d {
  flex: 1;
}

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

.static-60b2 {
  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);
}

.static-60b2:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.static-60b2.active-4354 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.icon-573e {
  position: relative;
}

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

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

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

.feature-0cca {
  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;
}

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

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

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

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

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

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

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

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

.thumbnail_green_8665 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .chip_d98d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .chip_d98d.dropdown-f6fa {
    display: block;
    right: 0;
  }
  
  .paragraph-tiny-22e7 {
    flex-direction: column;
    gap: 0;
  }
  
  .static-60b2 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .chip_d98d::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;
  }
  
  .chip_d98d.dropdown-f6fa::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .chip_d98d {
    display: none;
  }
  
  .paper_524e {
    display: flex;
  }
  
  .accent_bfd8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .thumbnail_green_8665,
  .old-eeaf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .icon-573e {
    position: relative;
  }
  
  .feature-0cca {
    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;
  }
  
  .silver_195b[aria-expanded="true"] + .feature-0cca {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .fast-9405 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .layout_1635 {
    gap: 8px;
  }
  
  .thumbnail_green_8665 {
    display: none;
  }
  
  .old-eeaf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .mask-smooth-87b0 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .old-eeaf {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .old-eeaf svg {
    width: 14px;
    height: 14px;
  }
  
  .overlay-inner-a717 {
    gap: var(--space-sm);
  }
}

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

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

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

.logo_7d1a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.tertiary-middle-4089 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.black-67b1 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .tall_4d25 {
    grid-template-columns: 1fr;
  }
  
  .filter-soft-f7dc {
    font-size: 1.75rem;
  }
  
  .complex_1a7e {
    order: -1;
    max-width: 100%;
  }
  
  .black-67b1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .filter-soft-f7dc {
    font-size: 1.5rem;
  }
  
  .message_d0b1 {
    font-size: 1rem;
  }
  
  .slow_88e2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .black-67b1 {
    max-width: 250px;
  }
}

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

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

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

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

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

.icon-mini-88d6 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.icon-mini-88d6:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-e09f 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;
}

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

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

.menu-924f {
  background: var(--color-bg-section);
}

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

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

.notification-thick-170a {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stone-178e {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.stone-178e 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) {
  .clean-c1c3 {
    grid-template-columns: 1fr;
  }
  
  .notification-thick-170a {
    font-size: 1.75rem;
  }
  
  .small_db6d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .notification-thick-170a {
    font-size: 1.5rem;
  }
  
  .small_db6d h3 {
    font-size: 1.375rem;
  }
  
  .small_db6d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.fluid_66d8 {
  flex-shrink: 0;
}

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

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

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

.chip-south-d223,
.aside-8c0a,
.sidebar-9546 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.chip-south-d223 thead,
.aside-8c0a thead {
  background: var(--color-primary);
  color: white;
}

.chip-south-d223 th,
.chip-south-d223 td,
.aside-8c0a th,
.aside-8c0a td,
.sidebar-9546 th,
.sidebar-9546 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .chip-south-d223 th,
  .chip-south-d223 td,
  .aside-8c0a th,
  .aside-8c0a td,
  .sidebar-9546 th,
  .sidebar-9546 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .chip-south-d223,
  .aside-8c0a,
  .sidebar-9546 {
    min-width: 600px;
  }
}

.chip-south-d223 th,
.aside-8c0a th,
.sidebar-9546 th {
  font-weight: 600;
}

.chip-south-d223 tbody tr:hover,
.aside-8c0a tbody tr:hover,
.sidebar-9546 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.icon_4f5e h4 {
  color: white;
}

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

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

.wood-7f7a:last-child {
  border-bottom: none;
}

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

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

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

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

.south-e584:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.complex-052e {
  color: #4caf50;
}

.description_0818 {
  color: #ff9800;
}

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

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

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

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

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

.highlight-gas-6d4d {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hot-f82a .breadcrumb_upper_deee {
  width: 100%;
  background: white;
}

.row_smooth_b2a0 .breadcrumb_upper_deee {
  color: #667eea;
}

.tooltip-warm-9997 .breadcrumb_upper_deee {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .heading_30c3 {
    padding: var(--space-md);
  }
  
  .basic-b079 {
    padding: var(--space-md);
  }
  
  .lower_9347 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.column_832a,
.banner_40f8,
.pattern_cold_5f6c,
.bronze_6f01 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.menu-focused-2cdb h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.info-24cb {
  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);
}

.logo_4295 .info-24cb {
  background: #e8f5e9;
  color: var(--color-success);
}

.content_4aa7 .info-24cb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-clean-f72b {
  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);
}

.main_new_2e99 {
  text-align: center;
}

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

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

.detail_2be4 .plasma_7158 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple-6726 {
  border: 2px solid #4caf50;
}

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

.table-next-cd8e {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

.tertiary-silver-82d7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.secondary_10f7 {
  text-align: right;
}

.secondary_10f7 .simple-428e {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.silver-090c {
  background: #e3f2fd;
  color: #1565c0;
}

.hovered-d0f1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.form-hard-2ba9 strong {
  color: var(--color-primary);
}

.feature-cool-864c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fast_8cab ul,
.status_steel_224f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.preview-05d2 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.progress-action-8438 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.fast_ecb4 {
  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_ecb4:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

.input_ba65 .outline_under_7a1f {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.aside_tall_2301 a:hover {
  color: white;
}

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

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

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

.stone_3a7b a:hover {
  color: white;
}

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

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

.secondary-dirty-0514 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

.image-west-6e37 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.image-west-6e37:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .row_right_4210 {
    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;
  }
  
  .filter-soft-f7dc {
    font-size: 2rem;
  }
  
  .notification-thick-170a {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .tall_4d25,
  .clean-c1c3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .wrapper-31e6,
  .hidden_28a9,
  .content_4a63,
  .thick-a65f,
  .last-8f86,
  .copper_a174,
  .component-tall-c846,
  .selected_d140 {
    grid-template-columns: 1fr;
  }
  
  .input-active-2cc5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .warm-9c77 {
    padding: var(--space-lg) 0;
  }
  
  .gallery-e09f li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .gallery-e09f li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .breadcrumb_upper_deee {
    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;
  }
  
  .input-active-2cc5 {
    grid-template-columns: 1fr;
  }
  
  .accent_bronze_d9bc,
  .hovered-0eae,
  .video_7798 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_0353,
  .focused_f14b,
  .accent_bronze_d9bc .breadcrumb_upper_deee,
  .hovered-0eae .breadcrumb_upper_deee {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .filter-soft-f7dc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notification-thick-170a {
    font-size: 1.375rem;
  }
  
  .light-eb3b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tag_5ce9,
  .secondary-18b2,
  .module-00f2,
  .wrapper-narrow-488b,
  .table_05f8 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .preview_blue_da94 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fresh_f393 {
    gap: var(--space-xs);
  }
  
  .logo_7d1a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .glass-7304 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .detail_2be4 {
    width: 150px;
    height: 150px;
  }
  
  .solid_5678 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .main_898f,
  .last_04e7,
  .accent_bronze_d9bc,
  .message_stale_9508,
  .layout_stale_dc2f,
  .block_2a9f,
  .paper_524e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .warm-9c77 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: 04e8 */
.widget-item-i0 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.1;
}
