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

.hero_south_e8aa:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.slider_71e5,
header,
.inner-5112,
.dropdown-cold-5a64,
.gallery_fixed_0fa6,
.first-e8de,
.focus_8e01,
.preview_6030,
.primary_0f08 {
  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
   ============================================ */
.slider_71e5 {
  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);
}

.silver-3fb0 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.overlay-d432 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.alert_new_05be {
  flex: 1;
}

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

.gradient-tiny-9565 {
  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);
}

.gradient-tiny-9565:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.gradient-tiny-9565.fn-active-f4bb {
  background: var(--color-primary);
  color: white;
}

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

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

.video-33d1 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.chip_5f7f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .alert_new_05be {
    display: none;
  }
  
  .menu_4acb {
    display: flex;
  }
  
  .hover_pink_ce93 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .chip_5f7f,
  .badge_ecb2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input_cf9d {
    position: relative;
  }
  
  .button_a95b {
    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;
  }
  
  .video-33d1[aria-expanded="true"] + .button_a95b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .current_98cf {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .plasma_28d3 {
    gap: 8px;
  }
  
  .chip_5f7f {
    display: none;
  }
  
  .badge_ecb2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .overlay-d432 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.box_2c00 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.notice-52f1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.notice-52f1 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .list_inner_336f {
    grid-template-columns: 1fr;
  }
  
  .overlay_inner_1abc {
    font-size: 1.75rem;
  }
  
  .nav_clean_6fe4 {
    order: -1;
    max-width: 100%;
  }
  
  .aside_a782 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .overlay_inner_1abc {
    font-size: 1.5rem;
  }
  
  .progress-iron-57bb {
    font-size: 1rem;
  }
  
  .notice-52f1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .aside_a782 {
    max-width: 250px;
  }
}

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

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

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

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

.mask-329c:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.tooltip-9f24 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.center-d3cc 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;
}

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

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

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

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

.tabs-brown-452e {
  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);
}

.gradient-944b {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-3ba0 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) {
  .bright-62ba {
    grid-template-columns: 1fr;
  }
  
  .gradient-944b {
    font-size: 1.75rem;
  }
  
  .selected-4979 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gradient-944b {
    font-size: 1.5rem;
  }
  
  .selected-4979 h3 {
    font-size: 1.375rem;
  }
  
  .selected-4979 h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.liquid_5a9c {
  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_b819 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.fixed_b9c5 {
  flex-shrink: 0;
}

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

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

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

.lite_b883,
.box-bf0d,
.text-db7f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lite_b883 thead,
.box-bf0d thead {
  background: var(--color-primary);
  color: white;
}

.lite_b883 th,
.lite_b883 td,
.box-bf0d th,
.box-bf0d td,
.text-db7f th,
.text-db7f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lite_b883 th,
  .lite_b883 td,
  .box-bf0d th,
  .box-bf0d td,
  .text-db7f th,
  .text-db7f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lite_b883,
  .box-bf0d,
  .text-db7f {
    min-width: 600px;
  }
}

.lite_b883 th,
.box-bf0d th,
.text-db7f th {
  font-weight: 600;
}

.lite_b883 tbody tr:hover,
.box-bf0d tbody tr:hover,
.text-db7f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.easy_95da h4 {
  color: white;
}

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

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

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

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

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

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

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

.medium-faf1:hover {
  text-decoration: underline;
}

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

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

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

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

.highlight-7d6d {
  list-style: none;
  padding: 0;
}

.highlight-7d6d li {
  padding: var(--space-xs) 0;
}

.small_eb0b {
  color: #4caf50;
}

.notification_easy_d69a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.box-301f {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.wrapper_4f46 .cold_6106 {
  width: 100%;
  background: white;
}

.hard-2bab .cold_6106 {
  color: #667eea;
}

.article-24b3 .cold_6106 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.logo-outer-7b0a {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.black-2b49 {
  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);
}

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

.grid-under-ff9b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .selected_78a1 {
    padding: var(--space-md);
  }
  
  .grid-under-ff9b {
    padding: var(--space-md);
  }
  
  .paragraph-iron-c7f2 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.table-478f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.copper-6852,
.black_2354,
.frame-1cf0,
.simple-f1b4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.chip-fluid-b977 {
  border-color: var(--color-success);
}

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

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

.chip-fluid-b977 .sort_d9bb {
  background: #e8f5e9;
  color: var(--color-success);
}

.dark-ed6c .sort_d9bb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

.button-rough-2d4c {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.button-6bdb {
  margin-top: var(--space-xxl);
}

.texture-steel-4a15 {
  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);
}

.out_7ba6 {
  text-align: center;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .texture-steel-4a15 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.gallery-small-8d80 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.stale-1e96 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.purple-083e {
  text-align: right;
}

.purple-083e .pressed-b0c4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.caption-green-64e4 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.blue-4a99 {
  background: #e8f5e9;
  color: #2e7d32;
}

.shade-db93 {
  background: #e3f2fd;
  color: #1565c0;
}

.motion-8997 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.dropdown-cold-b40b {
  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);
}

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

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.surface-new-792e {
  max-width: 900px;
  margin: 0 auto;
}

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

.aside-steel-8d82 {
  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);
}

.aside-steel-8d82:hover {
  background: var(--color-bg-alt);
}

.sort-black-68ff {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.aside-steel-8d82[aria-expanded="true"] .sort-black-68ff {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.backdrop-yellow-1881 {
  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);
}

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

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

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

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

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

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

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

.background_99bd ul,
.photo_bd58 ul {
  list-style: none;
  padding: 0;
}

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

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

@media (max-width: 768px) {
  .feature-blue-6f7a {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

.box_ee74 {
  font-style: italic;
}

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

.border-14f4 {
  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;
}

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

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

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

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

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

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

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

.focus-yellow-e92f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.simple_59ba a:hover {
  color: white;
}

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

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

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

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

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

.hard_97fa a:hover {
  color: white;
}

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

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

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

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

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

.notification_0977 .smooth_c798 {
  color: #4caf50;
  font-size: 0.875rem;
}

.text-purple-4c8f {
  list-style: none;
  padding: 0;
}

.text-purple-4c8f li {
  margin-bottom: var(--space-xs);
}

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

.text-purple-4c8f a:hover {
  color: white;
}

.modal-bottom-8776 {
  list-style: none;
  padding: 0;
}

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

.modal-bottom-8776 a {
  color: #b0b0b0;
  text-decoration: none;
}

.modal-bottom-8776 a:hover {
  color: white;
}

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

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

.tall-8dfd a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hover_under_85f1 {
    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;
  }
  
  .overlay_inner_1abc {
    font-size: 2rem;
  }
  
  .gradient-944b {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .list_inner_336f,
  .bright-62ba {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .preview-f8ff,
  .item_7426,
  .hero-b126,
  .accent_center_1094,
  .inner-bf4f,
  .feature-blue-6f7a,
  .module-cc06,
  .texture_d50f,
  .description-f41c {
    grid-template-columns: 1fr;
  }
  
  .form-cf30 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .focus_8e01 {
    padding: var(--space-lg) 0;
  }
  
  .center-d3cc li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .center-d3cc li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .cold_6106 {
    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;
  }
  
  .form-cf30 {
    grid-template-columns: 1fr;
  }
  
  .inner-fc3c,
  .content_orange_4e9a,
  .header-tall-9aff {
    flex-direction: column;
    width: 100%;
  }
  
  .complex_74af,
  .tooltip-9f24,
  .inner-fc3c .cold_6106,
  .content_orange_4e9a .cold_6106 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .overlay_inner_1abc {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .gradient-944b {
    font-size: 1.375rem;
  }
  
  .pattern-ab8a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .chip-f5ec,
  .narrow-faec,
  .sort_33aa,
  .overlay_8845,
  .message-black-fbdc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .focus_817e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .picture-easy-6afe {
    gap: var(--space-xs);
  }
  
  .box_2c00 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .article_9872 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .dropdown_bae5 {
    width: 150px;
    height: 150px;
  }
  
  .brown_c4a2 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .slider_71e5,
  .inner-5112,
  .inner-fc3c,
  .border-14f4,
  .preview_6030,
  .primary_0f08,
  .menu_4acb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .focus_8e01 {
    page-break-inside: avoid;
  }
}

/* css-noise: cf49 */
.ghost-box-v5 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
