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

.tag_south_a0ae:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.gold_cb2c,
header,
.tooltip_69ee,
.dirty_59b7,
.sort_dark_843a,
.paragraph-afa5,
.gallery-3d5b,
.caption_complex_e353,
.prev_41ff {
  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
   ============================================ */
.gold_cb2c {
  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);
}

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

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

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

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

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

.surface-c2fb img {
  height: 36px;
  width: auto;
  display: block;
}

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

.tooltip_dynamic_f0e5 {
  flex: 1;
}

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

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

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

.stale-bd4e.fn-active-e008 {
  background: var(--color-primary);
  color: white;
}

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

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

.box-5d21 svg {
  transition: transform 0.2s ease;
}

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

.background-849a {
  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;
}

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

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

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

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

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

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

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

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

.current-1ee9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.steel-71b0[aria-expanded="true"] .container-a19c:nth-child(2) {
  opacity: 0;
}

.steel-71b0[aria-expanded="true"] .container-a19c:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .tooltip_dynamic_f0e5 {
    display: none;
  }
  
  .steel-71b0 {
    display: flex;
  }
  
  .card_1c9e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .current-1ee9,
  .advanced-d266 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .main_e79e {
    position: relative;
  }
  
  .background-849a {
    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;
  }
  
  .box-5d21[aria-expanded="true"] + .background-849a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .dirty_e43a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .stone_7896 {
    gap: 8px;
  }
  
  .current-1ee9 {
    display: none;
  }
  
  .advanced-d266 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .surface-c2fb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.inner-239f {
  display: flex;
  align-items: center;
  gap: 6px;
}

.inner-239f svg {
  flex-shrink: 0;
}

.inner-239f a {
  color: var(--color-primary);
  text-decoration: none;
}

.inner-239f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.label-4ac9 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.caption-east-e2fd {
  display: flex;
  align-items: center;
  justify-content: center;
}

.element_gold_f705 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

.summary-pressed-161a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .glass_e381 {
    grid-template-columns: 1fr;
  }
  
  .basic-f9e4 {
    font-size: 1.75rem;
  }
  
  .caption-east-e2fd {
    order: -1;
    max-width: 100%;
  }
  
  .element_gold_f705 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .basic-f9e4 {
    font-size: 1.5rem;
  }
  
  .glass-20f4 {
    font-size: 1rem;
  }
  
  .article_db82 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .element_gold_f705 {
    max-width: 250px;
  }
}

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

.disabled-center-9d9c {
  background: var(--color-primary);
  color: white;
}

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

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

.button-894e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-old-ee2b {
  list-style: none;
  counter-reset: toc-counter;
}

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

.alert-old-ee2b 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);
}

.alert-old-ee2b 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;
}

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

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

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

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

.fast-131b {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma_812d 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) {
  .image_fresh_4e74 {
    grid-template-columns: 1fr;
  }
  
  .text-ff21 {
    font-size: 1.75rem;
  }
  
  .shadow_over_04c0 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.filter-6a6f {
  flex-shrink: 0;
}

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

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

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

.card-2ed0,
.bronze_ede6,
.wrapper_hovered_657f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.card-2ed0 thead,
.bronze_ede6 thead {
  background: var(--color-primary);
  color: white;
}

.card-2ed0 th,
.card-2ed0 td,
.bronze_ede6 th,
.bronze_ede6 td,
.wrapper_hovered_657f th,
.wrapper_hovered_657f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .card-2ed0 th,
  .card-2ed0 td,
  .bronze_ede6 th,
  .bronze_ede6 td,
  .wrapper_hovered_657f th,
  .wrapper_hovered_657f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .card-2ed0,
  .bronze_ede6,
  .wrapper_hovered_657f {
    min-width: 600px;
  }
}

.card-2ed0 th,
.bronze_ede6 th,
.wrapper_hovered_657f th {
  font-weight: 600;
}

.card-2ed0 tbody tr:hover,
.bronze_ede6 tbody tr:hover,
.wrapper_hovered_657f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.alert-a398 h4 {
  color: white;
}

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

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

.module-1f6c:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.solid-56dc {
  font-weight: 600;
  color: white;
}

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

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

.over-917c {
  color: #4caf50;
}

.gradient-steel-bdbc {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.banner-10fb {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_1cf1 .overlay-full-f5d6 {
  width: 100%;
  background: white;
}

.aside_0c57 .overlay-full-f5d6 {
  color: #667eea;
}

.outline_251c .overlay-full-f5d6 {
  color: #f5576c;
}

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

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

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

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

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

.green-0a89 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .black-bfb1 {
    padding: var(--space-md);
  }
  
  .green-0a89 {
    padding: var(--space-md);
  }
  
  .dropdown-250f {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.footer-over-a4cb,
.grid_53ef,
.iron-fef1,
.stone_d84a {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.sort-371c:hover {
  background: var(--color-primary-dark);
}

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

.shade-63be h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.slow_f6c8 .highlight_current_817a {
  background: #e8f5e9;
  color: var(--color-success);
}

.first-fccb .highlight_current_817a {
  background: #fff3e0;
  color: var(--color-warning);
}

.backdrop-hard-823b h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.backdrop-hard-823b p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

.paragraph-146c {
  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);
}

.popup-e287 {
  text-align: center;
}

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

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

.pressed-c1f8 .solid-56dc {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.notice-new-1278 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-4ff3 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.accent_7727 {
  text-align: right;
}

.accent_7727 .detail-small-107c {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.solid-13fe {
  background: #e3f2fd;
  color: #1565c0;
}

.aside-cdf3 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.border-344d strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bottom-676d {
  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);
}

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

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

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

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

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

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

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

.overlay_white_5fea ul,
.basic_371f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

.tooltip-2ac8 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

.large-0fcf {
  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);
}

.green-1f0d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-8512 a:hover {
  color: white;
}

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

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

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

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

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

.box_c58b a:hover {
  color: white;
}

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

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

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

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

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

.glass_68cd .huge-d9e0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.detail_dark_3615 a:hover {
  color: white;
}

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

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

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

.search_33eb a:hover {
  color: white;
}

.tertiary-9d19 {
  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);
}

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

.bronze-53fa a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tertiary-9d19 {
    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;
  }
  
  .basic-f9e4 {
    font-size: 2rem;
  }
  
  .text-ff21 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .glass_e381,
  .image_fresh_4e74 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .middle-5c42,
  .west_532c,
  .narrow_ffd6,
  .box-2b1c,
  .lite-f976,
  .pink-b809,
  .input_aebb,
  .tall_f824,
  .tertiary-90a4 {
    grid-template-columns: 1fr;
  }
  
  .prev-8955 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .gallery-3d5b {
    padding: var(--space-lg) 0;
  }
  
  .alert-old-ee2b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .alert-old-ee2b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .overlay-full-f5d6 {
    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;
  }
  
  .prev-8955 {
    grid-template-columns: 1fr;
  }
  
  .heading_narrow_33f3,
  .block_6952,
  .solid_93ab {
    flex-direction: column;
    width: 100%;
  }
  
  .stone_1048,
  .row_7724,
  .heading_narrow_33f3 .overlay-full-f5d6,
  .block_6952 .overlay-full-f5d6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .basic-f9e4 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .text-ff21 {
    font-size: 1.375rem;
  }
  
  .backdrop-dirty-b947 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .small_c54a,
  .progress_dynamic_c203,
  .simple_bfd4,
  .tertiary-a553,
  .preview_7e52 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .mini_9d0e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .clean_23dc {
    gap: var(--space-xs);
  }
  
  .inner-239f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .pagination-c6e3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pressed-c1f8 {
    width: 150px;
    height: 150px;
  }
  
  .pro-b7ae {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .gold_cb2c,
  .tooltip_69ee,
  .heading_narrow_33f3,
  .short_becb,
  .caption_complex_e353,
  .prev_41ff,
  .steel-71b0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .gallery-3d5b {
    page-break-inside: avoid;
  }
}

/* css-noise: 63f4 */
.widget-item-j5 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.1;
}
