/* ============================================
   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)
   ============================================ */
.media-right-29e7 {
  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;
}

.media-right-29e7:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.photo-under-2372):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. */
.photo-under-2372,
header,
.status-cb10,
.menu_hard_1414,
.center-0e5c,
.notice-orange-1d9b,
.popup-7eb6,
.fast_80bb,
.text_84cc {
  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
   ============================================ */
.photo-under-2372 {
  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);
}

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

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

/* Scrolled state */
.photo-under-2372.full-be8f {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.advanced-8513 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.content-huge-2a6d {
  flex: 1;
}

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

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

.dirty-7e31:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.dirty-7e31.element_short_77aa {
  background: var(--color-primary);
  color: white;
}

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

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

.gallery-f966 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.outline-0eaa svg {
  flex-shrink: 0;
}

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

.tertiary-full-7d71: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);
}

.tertiary-full-7d71 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .content-huge-2a6d {
    display: none;
  }
  
  .fast_7034 {
    display: flex;
  }
  
  .border_f4c0 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .outline-0eaa,
  .tertiary-full-7d71 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .secondary_first_5f29 {
    position: relative;
  }
  
  .solid_bb15 {
    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;
  }
  
  .gallery-f966[aria-expanded="true"] + .solid_bb15 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shade_488a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .box-70ee {
    gap: 8px;
  }
  
  .outline-0eaa {
    display: none;
  }
  
  .tertiary-full-7d71 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .advanced-8513 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tertiary-full-7d71 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .tertiary-full-7d71 svg {
    width: 14px;
    height: 14px;
  }
  
  .background_ad91 {
    gap: var(--space-sm);
  }
}

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

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

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

.photo_21f1 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.item-15e5 a {
  color: var(--color-primary);
  text-decoration: none;
}

.item-15e5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.dropdown-93c6 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dropdown-93c6 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.notice-plasma-9ce7 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .black-c646 {
    grid-template-columns: 1fr;
  }
  
  .banner_a316 {
    font-size: 1.75rem;
  }
  
  .sidebar-ab9c {
    order: -1;
    max-width: 100%;
  }
  
  .notice-plasma-9ce7 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner_a316 {
    font-size: 1.5rem;
  }
  
  .article-basic-20b3 {
    font-size: 1rem;
  }
  
  .item-15e5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notice-plasma-9ce7 {
    max-width: 250px;
  }
}

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

.column-fluid-43d1 {
  background: var(--color-primary);
  color: white;
}

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

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

.link-yellow-9537:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.title-pink-7f47 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.hover-2b23 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.hover-2b23 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);
}

.hover-2b23 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;
}

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

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

.card-fixed-05de {
  background: var(--color-bg-section);
}

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

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

.current-990c {
  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);
}

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

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

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

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

.link-2d44 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.link-2d44 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);
}

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

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

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

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

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

.link-2d44 strong {
  font-weight: 600;
  color: var(--color-text);
}

.link-2d44 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.link-2d44 a:hover {
  color: var(--color-primary-dark);
}

.block-action-2a08 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.block-action-2a08 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) {
  .modal-blue-9bdd {
    grid-template-columns: 1fr;
  }
  
  .current-990c {
    font-size: 1.75rem;
  }
  
  .link-2d44 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .current-990c {
    font-size: 1.5rem;
  }
  
  .link-2d44 h3 {
    font-size: 1.375rem;
  }
  
  .link-2d44 h4 {
    font-size: 1.125rem;
  }
}

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

.frame-dim-7050 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.slider-d36e {
  flex-shrink: 0;
}

.title-current-0e3e strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.in_3fa7,
.bottom_dcfa,
.summary_over_8dcf {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.in_3fa7 thead,
.bottom_dcfa thead {
  background: var(--color-primary);
  color: white;
}

.in_3fa7 th,
.in_3fa7 td,
.bottom_dcfa th,
.bottom_dcfa td,
.summary_over_8dcf th,
.summary_over_8dcf td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .in_3fa7 th,
  .in_3fa7 td,
  .bottom_dcfa th,
  .bottom_dcfa td,
  .summary_over_8dcf th,
  .summary_over_8dcf td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .in_3fa7,
  .bottom_dcfa,
  .summary_over_8dcf {
    min-width: 600px;
  }
}

.in_3fa7 th,
.bottom_dcfa th,
.summary_over_8dcf th {
  font-weight: 600;
}

.in_3fa7 tbody tr:hover,
.bottom_dcfa tbody tr:hover,
.summary_over_8dcf tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.logo-21ff h4 {
  color: white;
}

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

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

.description-2e8f:last-child {
  border-bottom: none;
}

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

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

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

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

.aside-2535:hover {
  text-decoration: underline;
}

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

.banner-stone-911a {
  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);
}

.banner-stone-911a span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.upper-6602 {
  font-weight: 600;
  color: white;
}

.tooltip-lower-882e {
  list-style: none;
  padding: 0;
}

.tooltip-lower-882e li {
  padding: var(--space-xs) 0;
}

.glass-34ff {
  color: #4caf50;
}

.breadcrumb_bf4d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.avatar-3e3e {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.feature-e4b4 .sort-137b {
  width: 100%;
  background: white;
}

.pattern-9f81 .sort-137b {
  color: #667eea;
}

.grid-complex-70a2 .sort-137b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .wrapper_small_c6ec {
    padding: var(--space-md);
  }
  
  .border_40a1 {
    padding: var(--space-md);
  }
  
  .inner_5d2f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.info-north-d958 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.search-378d,
.popup_8a20,
.footer_7bd9,
.background-1d60 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.pagination-cool-336e {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.hero-inner-4698 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.form-bottom-ae5c {
  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);
}

.container_huge_4a7f .form-bottom-ae5c {
  background: #e8f5e9;
  color: var(--color-success);
}

.blue-f9c8 .form-bottom-ae5c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.popup-06fc {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.south-1da3 {
  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);
}

.outer_0ac4 {
  text-align: center;
}

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

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

.mask_7aa9 .upper-6602 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas-bab4 {
  border: 2px solid #4caf50;
}

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

.active-456b {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.tabs-old-5e5d {
  text-align: right;
}

.tabs-old-5e5d .notice-west-28f6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.row-dim-684c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.icon-action-421a {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.dropdown-static-1912 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hover-black-a116 {
  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);
}

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

.input-26b6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.hover-black-a116[aria-expanded="true"] .input-26b6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.border-0b07 {
  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);
}

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

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

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

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

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

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

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

.tiny_20e9 ul,
.rough_4a82 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-94a7 {
  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);
}

.lower-24f4 {
  font-style: italic;
}

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

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

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

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

.notice-copper-3bea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

.message-70ec {
  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);
}

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

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

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

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

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

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

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

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

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

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

.row_2651 .sidebar_2f50 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.banner_6779 a:hover {
  color: white;
}

.primary-6950 {
  list-style: none;
  padding: 0;
}

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

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

.primary-6950 a:hover {
  color: white;
}

.status-middle-4a69 {
  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);
}

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

.logo-bronze-fe09 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .status-middle-4a69 {
    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;
  }
  
  .banner_a316 {
    font-size: 2rem;
  }
  
  .current-990c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .black-c646,
  .modal-blue-9bdd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .section_bf01,
  .old-bf23,
  .carousel_f56f,
  .border_afe9,
  .center-3e81,
  .widget_steel_17c4,
  .active-orange-21d5,
  .slider-ea73 {
    grid-template-columns: 1fr;
  }
  
  .bright-c5b9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .popup-7eb6 {
    padding: var(--space-lg) 0;
  }
  
  .hover-2b23 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hover-2b23 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sort-137b {
    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;
  }
  
  .bright-c5b9 {
    grid-template-columns: 1fr;
  }
  
  .header_west_824f,
  .notice-copper-3bea,
  .header-short-1a06 {
    flex-direction: column;
    width: 100%;
  }
  
  .shadow_dc9c,
  .title-pink-7f47,
  .header_west_824f .sort-137b,
  .notice-copper-3bea .sort-137b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner_a316 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .current-990c {
    font-size: 1.375rem;
  }
  
  .tag_2915 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .active_b8ce,
  .primary-b22e,
  .widget-7564,
  .dropdown-purple-9a8d,
  .hard-c30c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .filter_f541 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .rough_bea6 {
    gap: var(--space-xs);
  }
  
  .photo_21f1 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner-stone-911a {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .mask_7aa9 {
    width: 150px;
    height: 150px;
  }
  
  .column-out-a54f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .photo-under-2372,
  .status-cb10,
  .header_west_824f,
  .new_d1cf,
  .fast_80bb,
  .text_84cc,
  .fast_7034 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .popup-7eb6 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.footer-narrow-4679 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 3140 */
.widget-item-w0 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.1;
}
