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

.fluid_c0a0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.clean_9d1b,
header,
.stale_d455,
.badge-3b90,
.stale_78ee,
.fast_644b,
.notice-prev-5137,
.bottom-9ec8,
.frame_dark_6cd0 {
  max-width: none;
}

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

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

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

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

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

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

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

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

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

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

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

.heading-up-593e {
  flex: 1;
}

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

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

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

.info-c3b8.fn-active-1653 {
  background: var(--color-primary);
  color: white;
}

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

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

.info-clean-b3b0 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.fixed-481f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.secondary-16d8[aria-expanded="true"] .notice-brown-c9df:nth-child(2) {
  opacity: 0;
}

.secondary-16d8[aria-expanded="true"] .notice-brown-c9df:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .heading-up-593e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .heading-up-593e.accent-26ee {
    display: block;
    right: 0;
  }
  
  .wood-eb7c {
    flex-direction: column;
    gap: 0;
  }
  
  .info-c3b8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .heading-up-593e::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;
  }
  
  .heading-up-593e.accent-26ee::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .heading-up-593e {
    display: none;
  }
  
  .secondary-16d8 {
    display: flex;
  }
  
  .primary_524e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .fixed-481f,
  .accent_west_19a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner_small_6ec8 {
    position: relative;
  }
  
  .hard_0904 {
    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;
  }
  
  .info-clean-b3b0[aria-expanded="true"] + .hard_0904 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .primary-up-e3e1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .element_999a {
    gap: 8px;
  }
  
  .fixed-481f {
    display: none;
  }
  
  .accent_west_19a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .sort_warm_976e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.preview-active-d56b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.preview-active-d56b svg {
  flex-shrink: 0;
}

.preview-active-d56b a {
  color: var(--color-primary);
  text-decoration: none;
}

.preview-active-d56b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-06a5 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.tag-c165 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .icon_hovered_f010 {
    grid-template-columns: 1fr;
  }
  
  .cool_7afa {
    font-size: 1.75rem;
  }
  
  .main_e713 {
    order: -1;
    max-width: 100%;
  }
  
  .tag-c165 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cool_7afa {
    font-size: 1.5rem;
  }
  
  .caption_83ed {
    font-size: 1rem;
  }
  
  .card_left_f1a6 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tag-c165 {
    max-width: 250px;
  }
}

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

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

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

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

.description-6d93:hover {
  background: var(--color-primary);
  color: white;
}

.primary-red-2c2a {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.primary-red-2c2a:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.menu-197b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.active-779f {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

.table-huge-676c {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

.slider-pressed-d7e9 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.label-6b89 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.label-6b89 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);
}

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

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

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

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

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

.label-6b89 strong {
  font-weight: 600;
  color: var(--color-text);
}

.label-6b89 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.label-6b89 a:hover {
  color: var(--color-primary-dark);
}

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

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

.modal_fluid_4be9 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) {
  .section_new_2c51 {
    grid-template-columns: 1fr;
  }
  
  .image-8245 {
    font-size: 1.75rem;
  }
  
  .label-6b89 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .image-8245 {
    font-size: 1.5rem;
  }
  
  .label-6b89 h3 {
    font-size: 1.375rem;
  }
  
  .label-6b89 h4 {
    font-size: 1.125rem;
  }
}

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

.brown-073a {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.box_mini_7352 {
  flex-shrink: 0;
}

.active-light-19f1 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

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

.iron_63d2 thead,
.preview_600f thead {
  background: var(--color-primary);
  color: white;
}

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

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

.iron_63d2 th,
.preview_600f th,
.selected_1d8e th {
  font-weight: 600;
}

.iron_63d2 tbody tr:hover,
.preview_600f tbody tr:hover,
.selected_1d8e tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.red-a12a h4 {
  color: white;
}

.widget-active-9e38 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.accent-dirty-547f {
  font-weight: 600;
  color: white;
}

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

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

.hot_ebc1 {
  color: #4caf50;
}

.purple_ee6f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.caption-slow-cbd9 {
  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;
}

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

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

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

.accent-dirty-547f {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paper-5933 .lite_2463 {
  width: 100%;
  background: white;
}

.button_large_31cf .lite_2463 {
  color: #667eea;
}

.new-d77b .lite_2463 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .alert_9d16 {
    padding: var(--space-md);
  }
  
  .top-e3e1 {
    padding: var(--space-md);
  }
  
  .active_cool_d0c3 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.cool-ea0d,
.pressed-adc0,
.accent-2192,
.progress_hard_d936 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.sort-out-d8f6:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.banner-white-84a3 {
  border-color: var(--color-warning);
}

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

.summary_dbc1 .banner_5e39 {
  background: #e8f5e9;
  color: var(--color-success);
}

.banner-white-84a3 .banner_5e39 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.secondary-945e {
  text-align: center;
}

.highlight-244a {
  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);
}

.border-static-367c {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.highlight-244a .accent-dirty-547f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-south-c204 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.focus-narrow-9833 {
  text-align: right;
}

.focus-narrow-9833 .surface-bd11 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.basic-aaa3 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-fe29,
.article_warm_46d5 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.layout-fe29 h4,
.article_warm_46d5 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.layout-fe29 ul,
.article_warm_46d5 ul {
  list-style: none;
  padding: 0;
}

.layout-fe29 li,
.article_warm_46d5 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.banner-a698 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.notification_997c {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.shade_d040 a:hover {
  color: white;
}

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

.chip_dynamic_633c a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

.dropdown-yellow-72d5 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.dropdown-yellow-72d5 a:hover {
  color: white;
}

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

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

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

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

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

.surface_up_cd50 .nav-06a5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.accordion-fc0b {
  list-style: none;
  padding: 0;
}

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

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

.accordion-fc0b a:hover {
  color: white;
}

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

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

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

.bronze_399a a:hover {
  color: white;
}

.status-522b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid #424242;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.accent-lite-f9fc a {
  color: #4caf50;
  text-decoration: none;
}

.column-old-2135 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.fast_2fcb a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .status-522b {
    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;
  }
  
  .cool_7afa {
    font-size: 2rem;
  }
  
  .image-8245 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .icon_hovered_f010,
  .section_new_2c51 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .orange-38ed,
  .overlay-hovered-4b54,
  .container-8a2b,
  .hovered-a9ce,
  .north_b067,
  .slider-2fff,
  .content-complex-56e6,
  .text-a989,
  .notification_997c {
    grid-template-columns: 1fr;
  }
  
  .blue_0821 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .notice-prev-5137 {
    padding: var(--space-lg) 0;
  }
  
  .fast_6a33 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .fast_6a33 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .lite_2463 {
    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;
  }
  
  .blue_0821 {
    grid-template-columns: 1fr;
  }
  
  .filter_cold_56de,
  .pressed-89d4,
  .down_8358 {
    flex-direction: column;
    width: 100%;
  }
  
  .menu-197b,
  .active-779f,
  .filter_cold_56de .lite_2463,
  .pressed-89d4 .lite_2463 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .cool_7afa {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .image-8245 {
    font-size: 1.375rem;
  }
  
  .modal-6e14 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .first_a6ac,
  .basic_06eb,
  .main_new_39e7,
  .video_dirty_e6a8,
  .highlight-blue-1d5e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .title_1260 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .over_ae07 {
    gap: var(--space-xs);
  }
  
  .preview-active-d56b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .silver_b1af {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .highlight-244a {
    width: 150px;
    height: 150px;
  }
  
  .border-static-367c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .clean_9d1b,
  .stale_d455,
  .filter_cold_56de,
  .label_complex_b53e,
  .bottom-9ec8,
  .frame_dark_6cd0,
  .secondary-16d8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .notice-prev-5137 {
    page-break-inside: avoid;
  }
}

/* css-noise: 32d5 */
.promo-block-e1 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.3;
}
