/* ============================================
   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)
   ============================================ */
.filter-upper-5936 {
  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;
}

.filter-upper-5936:focus {
  top: 0;
}

/* ============================================
   3. CONTAINER & LAYOUT
   ============================================ */
.article_328c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .article_328c {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .article_328c {
    padding: 0 12px;
  }
}

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.popup_simple_60f4):not(header) {
  max-width: 100%;
}

/* Allow specific elements to exceed container */
html,
body,
.popup_simple_60f4,
header,
.paper_2f79,
.fresh_a95e,
.carousel_narrow_79fc,
.block_tall_4add,
.tooltip_352c,
.right_c424,
.gradient-1b94 {
  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
   ============================================ */
.popup_simple_60f4 {
  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);
}

.image-iron-58fb {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scrolled state */
.popup_simple_60f4.solid_a750 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.container_complex_03ce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.south_acf8 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cool_46d9 img {
  height: 36px;
  width: auto;
  display: block;
}

.table_98bd {
  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;
}

.bright_a108 {
  flex: 1;
}

.dropdown-7043 {
  display: flex;
  list-style: none;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
}

.pro-6c96 {
  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);
}

.pro-6c96:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.pro-6c96.outer-59a2 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.nav-stone-79a1 {
  position: relative;
}

.down-a834 {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.down-a834 svg {
  transition: transform 0.2s ease;
}

/* 鼠标悬停时箭头旋转（桌面）；点击展开时箭头旋转（移动端） */
.nav-stone-79a1:hover .down-a834 svg,
.down-a834[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.secondary_60b4 {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.nav-stone-79a1:hover .secondary_60b4 {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.secondary_60b4::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.tooltip_north_a833 {
  display: block;
  padding: 10px 20px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.tooltip_north_a833:hover {
  background: var(--color-primary);
  color: white;
  padding-left: 24px; /* 悬停时轻微缩进 */
}

/* 当前页面在下拉菜单中的样式 */
.tooltip_north_a833[aria-current="page"] {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
}

.primary-bright-79c4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Header Login Button */
.pro_2b93 {
  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;
}

.pro_2b93:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
  transform: translateY(-1px);
}

.pro_2b93 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.fluid_9f62 {
  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;
}

.fluid_9f62: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);
}

.fluid_9f62 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.image-8a60 {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hard-4276 {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

/* Hamburger animation when active */
.image-8a60[aria-expanded="true"] .hard-4276:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.image-8a60[aria-expanded="true"] .hard-4276:nth-child(2) {
  opacity: 0;
}

.image-8a60[aria-expanded="true"] .hard-4276:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .bright_a108 {
    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 */
  }

  .bright_a108::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .bright_a108.shadow-west-3d03 {
    display: block;
    right: 0;
  }
  
  .dropdown-7043 {
    flex-direction: column;
    gap: 0;
  }
  
  .pro-6c96 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .bright_a108::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;
  }
  
  .bright_a108.shadow-west-3d03::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .bright_a108 {
    display: none;
  }
  
  .image-8a60 {
    display: flex;
  }
  
  .table_98bd {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pro_2b93,
  .fluid_9f62 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav-stone-79a1 {
    position: relative;
  }
  
  .secondary_60b4 {
    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;
  }
  
  .down-a834[aria-expanded="true"] + .secondary_60b4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tooltip_north_a833 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .primary-bright-79c4 {
    gap: 8px;
  }
  
  .pro_2b93 {
    display: none;
  }
  
  .fluid_9f62 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .cool_46d9 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .fluid_9f62 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .fluid_9f62 svg {
    width: 14px;
    height: 14px;
  }
  
  .container_complex_03ce {
    gap: var(--space-sm);
  }
}

/* ============================================
   5. ARTICLE META BANNER
   ============================================ */
.paper_2f79 {
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.content_lower_bb03 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.footer_2e71 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer_2e71 svg {
  flex-shrink: 0;
}

.footer_2e71 a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer_2e71 a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .content_lower_bb03 {
    font-size: 0.8125rem;
    gap: var(--space-sm);
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.fresh_a95e {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.prev-e420 {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .prev-e420 {
    grid-template-columns: 1fr 350px;
    gap: var(--space-lg);
  }
}

.stone_dd0e {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.stone_dd0e a {
  color: var(--color-primary);
  text-decoration: none;
}

.stone_dd0e a:hover {
  text-decoration: underline;
}

.frame_986e {
  color: var(--color-text-lighter);
}

.fixed_4d7f {
  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) {
  .fixed_4d7f {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .fixed_4d7f {
    font-size: 1.5rem;
  }
}

.status_bright_dbf9 {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.basic_77b9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .basic_77b9 {
    grid-template-columns: 1fr;
  }
}

.row-cold-b64b {
  display: flex;
  gap: var(--space-sm);
}

.hover-8f33 {
  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;
}

.button-df76 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.button-df76 strong {
  font-weight: 600;
  color: var(--color-text);
}

.button-df76 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.alert_46b6 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.border_6da2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.accent_7cfa {
  position: relative;
  text-align: center;
}

.accent_7cfa img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.content-orange-431f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.primary-green-38e4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.gradient_f4c3 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.breadcrumb_d9da {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.shade_clean_6cdd {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.wide-e0c9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 968px) {
  .prev-e420 {
    grid-template-columns: 1fr;
  }
  
  .fixed_4d7f {
    font-size: 1.75rem;
  }
  
  .border_6da2 {
    order: -1;
    max-width: 100%;
  }
  
  .accent_7cfa {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .fixed_4d7f {
    font-size: 1.5rem;
  }
  
  .status_bright_dbf9 {
    font-size: 1rem;
  }
  
  .stone_dd0e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .accent_7cfa {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.silver-d6f2 {
  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;
}

.heading-f477 {
  background: var(--color-primary);
  color: white;
}

.heading-f477:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disabled_70e2 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.disabled_70e2:hover {
  background: var(--color-primary);
  color: white;
}

.label_up_b657 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.label_up_b657:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.rough_dd3f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.photo_dc80 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ============================================
   8. STATS SECTION
   ============================================ */
.carousel_narrow_79fc {
  padding: var(--space-xl) 0;
  background: white;
}

.dynamic_0fde {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.carousel-blue-8e7d {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

.carousel-blue-8e7d:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.container_dim_9885 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.hidden_40a7 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.section_bdfd {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   9. TABLE OF CONTENTS
   ============================================ */
.block_tall_4add {
  padding: var(--space-xl) 0;
  background: var(--color-bg-section);
}

.icon_brown_b6b7 {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.focused_6219 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.paragraph-3b8c {
  list-style: none;
  counter-reset: toc-counter;
}

.paragraph-3b8c li {
  counter-increment: toc-counter;
  margin-bottom: var(--space-sm);
}

.paragraph-3b8c 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);
}

.paragraph-3b8c 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;
}

.paragraph-3b8c li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.tooltip_352c {
  padding: var(--space-xxl) 0;
}

.element-2b52 {
  background: var(--color-bg-section);
}

.sidebar_6754 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.pressed_9347 {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-primary-light);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: var(--space-md);
}

.notification-fixed-1ef9 {
  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);
}

.header-bottom-a892 {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.tooltip_077a {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--space-xl);
  width: 100%;
}

@media (max-width: 1200px) {
  .tooltip_077a {
    grid-template-columns: 1fr 300px;
  }
}

.section_fresh_0b6e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section_fresh_0b6e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section_fresh_0b6e pre,
.section_fresh_0b6e code {
  overflow-x: auto;
  max-width: 100%;
}

.section_fresh_0b6e 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);
}

.section_fresh_0b6e h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--color-text);
}

.section_fresh_0b6e h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.section_fresh_0b6e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.section_fresh_0b6e ul,
.section_fresh_0b6e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.section_fresh_0b6e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.section_fresh_0b6e strong {
  font-weight: 600;
  color: var(--color-text);
}

.section_fresh_0b6e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.section_fresh_0b6e a:hover {
  color: var(--color-primary-dark);
}

.message-1a44 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

.message-1a44 li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: var(--space-md);
}

.message-1a44 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) {
  .tooltip_077a {
    grid-template-columns: 1fr;
  }
  
  .notification-fixed-1ef9 {
    font-size: 1.75rem;
  }
  
  .section_fresh_0b6e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .notification-fixed-1ef9 {
    font-size: 1.5rem;
  }
  
  .section_fresh_0b6e h3 {
    font-size: 1.375rem;
  }
  
  .section_fresh_0b6e h4 {
    font-size: 1.125rem;
  }
}

/* ============================================
   11. INFO BOXES
   ============================================ */
.tall-ece6 {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border-left: 4px solid;
}

.last-66e4 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.stone_3d64 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.preview_6547 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.panel_d16b strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.badge_purple_1985 {
  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;
}

.progress_b5d7 {
  flex-shrink: 0;
}

.component_1066 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

/* ============================================
   13. TABLES
   ============================================ */
.component-huge-d784 {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .component-huge-d784 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
    border-radius: 0;
  }
}

.hidden-5fb0,
.lite-ad4f,
.out_051a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hidden-5fb0 thead,
.lite-ad4f thead {
  background: var(--color-primary);
  color: white;
}

.hidden-5fb0 th,
.hidden-5fb0 td,
.lite-ad4f th,
.lite-ad4f td,
.out_051a th,
.out_051a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hidden-5fb0 th,
  .hidden-5fb0 td,
  .lite-ad4f th,
  .lite-ad4f td,
  .out_051a th,
  .out_051a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hidden-5fb0,
  .lite-ad4f,
  .out_051a {
    min-width: 600px;
  }
}

.hidden-5fb0 th,
.lite-ad4f th,
.out_051a th {
  font-weight: 600;
}

.hidden-5fb0 tbody tr:hover,
.lite-ad4f tbody tr:hover,
.out_051a tbody tr:hover {
  background: var(--color-bg-alt);
}

.badge_bottom_5ca9 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

/* ============================================
   14. SIDEBAR
   ============================================ */
.list-c0a7 {
  position: sticky;
  top: 80px;
  align-self: start;
}

.easy-97fc {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
}

.easy-97fc h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.search_fb48 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.search_fb48 h4 {
  color: white;
}

.mask_7835 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hard_5cac {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.hard_5cac:last-child {
  border-bottom: none;
}

.hard_5cac dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.hard_5cac dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

.container_a2fb {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

.section_smooth_ecbb {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.section_smooth_ecbb:hover {
  text-decoration: underline;
}

.in_55c2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

.link-e7e2 {
  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);
}

.link-e7e2 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.progress_middle_79ed {
  font-weight: 600;
  color: white;
}

.widget-3c60 {
  list-style: none;
  padding: 0;
}

.widget-3c60 li {
  padding: var(--space-xs) 0;
}

.highlight-next-411a {
  color: #4caf50;
}

.filter-smooth-ea1a {
  color: #ff9800;
}

.east_0721 {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cold-58f8 {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: var(--space-sm);
}

.container-48d7 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.slow_9b38 {
  height: 8px;
  background: var(--color-border-light);
  border-radius: 4px;
  overflow: hidden;
}

.popup-0be8 {
  height: 100%;
  background: linear-gradient(90deg, #4caf50 0%, #8bc34a 100%);
  transition: width var(--transition-slow);
}

.focus-large-258b {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

/* ============================================
   15. FEATURE GRID
   ============================================ */
.shade-dc27 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .shade-dc27 {
    grid-template-columns: 1fr;
  }
}

.wide-aca8 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  position: relative;
}

.wide-aca8:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.dark_e314 {
  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;
}

.wide-aca8 h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.wide-aca8 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.tertiary-first-a522 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.progress_middle_79ed {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.texture_narrow_c7eb {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

.pressed_25d1 {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.pressed_25d1 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

/* ============================================
   16. COMPARISON & DECISION HELPER
   ============================================ */
.dynamic_a05a {
  max-width: 900px;
  margin: 0 auto;
}

.sidebar_ed69 {
  text-align: center;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  color: var(--color-text-light);
}

.active-9c38 {
  margin: var(--space-xl) 0;
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
  .active-9c38 {
    margin-left: calc(-1 * var(--space-sm));
    margin-right: calc(-1 * var(--space-sm));
    width: calc(100% + 2 * var(--space-sm));
  }
}

.table_hard_9938 {
  margin-top: var(--space-xxl);
}

.table_hard_9938 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.huge-40d9 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .huge-40d9 {
    grid-template-columns: 1fr;
  }
}

.paper_678b {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.aside-2fa7 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.badge_bright_c5af {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.paper_678b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.paper_678b ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.paper_678b li {
  padding: var(--space-xs) 0;
  color: white;
}

.paper_678b .silver-d6f2 {
  width: 100%;
  background: white;
}

.aside-2fa7 .silver-d6f2 {
  color: #667eea;
}

.badge_bright_c5af .silver-d6f2 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.brown-93a1 {
  max-width: 900px;
  margin: 0 auto;
}

.widget_dirty_4578 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

.menu_fresh_c8f8 {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
}

.dirty_87da {
  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);
}

.menu_fresh_c8f8 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.bronze-0ff2 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .menu_fresh_c8f8 {
    padding: var(--space-md);
  }
  
  .bronze-0ff2 {
    padding: var(--space-md);
  }
  
  .old-9039 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.disabled-small-0bda ol,
.disabled-small-0bda ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.disabled-small-0bda li {
  margin-bottom: var(--space-sm);
}

.disabled-small-0bda code {
  background: var(--color-bg-alt);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

.progress-short-b612 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #fff3e0;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-md);
}

.menu_74e8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #ffebee;
  border-left: 4px solid var(--color-danger);
  border-radius: var(--radius-md);
}

.old-9039 {
  margin-top: var(--space-lg);
  text-align: center;
}

.old-9039 img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.chip-action-867f,
.column_clean_be7a,
.prev-417d,
.element_8f85 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.slow-be8e {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

.search-simple-a1f1 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.middle-9d3d {
  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) {
  .middle-9d3d {
    font-size: 0.625rem;
  }
}

.slider_c667 {
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
}

.slider_c667:hover {
  background: var(--color-primary-dark);
}

.pagination-7e7f {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  text-align: center;
}

.pagination-7e7f h4 {
  margin-bottom: var(--space-md);
}

.right-8f3d {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ============================================
   18. SECURITY SECTION
   ============================================ */
.sort_adf8 {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  font-size: 1.125rem;
  text-align: center;
  color: var(--color-text-light);
}

.action_d46e {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (max-width: 768px) {
  .action_d46e {
    grid-template-columns: 1fr;
  }
}

.dynamic_6729 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid;
}

.dark_076f {
  border-color: var(--color-success);
}

.notice-a559 {
  border-color: var(--color-warning);
}

.fast_d3b9 {
  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);
}

.dark_076f .fast_d3b9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.notice-a559 .fast_d3b9 {
  background: #fff3e0;
  color: var(--color-warning);
}

.dynamic_6729 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.dynamic_6729 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.highlight-hot-6a21 {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.grid_6778 {
  margin: var(--space-xxl) 0;
}

.grid_6778 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-md);
}

.grid_6778 > p {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.mini-9e50 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .mini-9e50 {
    grid-template-columns: 1fr;
  }
}

.menu_huge_be3d {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.menu_huge_be3d h4 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.footer-8263 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

.footer-8263 input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 4px;
  cursor: pointer;
}

.nav-bd06 {
  margin-top: var(--space-xxl);
}

.section-f74e {
  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);
}

.grid-69ce {
  text-align: center;
}

.up_2432 {
  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);
}

.article_tiny_cd5e {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.up_2432 .progress_middle_79ed {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.wrapper_d4c2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.motion_6696 p {
  margin-bottom: var(--space-md);
}

.center_6ad1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .section-f74e {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   19. REVIEW SECTION
   ============================================ */
.text_fe14 {
  max-width: 600px;
  margin: 0 auto var(--space-xxl);
}

.surface-copper-d29d {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.footer_outer_3867 {
  margin-bottom: var(--space-xl);
}

.fast-a1b7 {
  font-size: 4rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.overlay_simple_68b9 {
  font-size: 2rem;
  color: #ffa000;
  letter-spacing: 4px;
  margin: var(--space-sm) 0;
}

.texture_in_ce2b {
  color: var(--color-text-light);
}

.narrow-ce12 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.shadow-8e62 {
  display: grid;
  grid-template-columns: 40px 1fr 50px;
  align-items: center;
  gap: var(--space-sm);
}

.widget_south_29b0 {
  font-weight: 600;
  color: var(--color-text);
}

.pressed-cb84 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

.first-ba95 {
  height: 100%;
  background: linear-gradient(90deg, #ffa000 0%, #ff6f00 100%);
  transition: width var(--transition-slow);
}

.orange_3b57 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.text-pink-8be4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.input-down-3c6a {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
}

.orange_a59c {
  border: 2px solid #4caf50;
}

.disabled-simple-2834 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.element-up-27bd {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.focus_active_829c {
  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;
}

.chip_05e2 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.text-c170 {
  display: inline-block;
  padding: 2px 8px;
  background: #4caf50;
  color: white;
  font-size: 0.75rem;
  border-radius: 10px;
  margin-left: 8px;
}

.accent_simple_6e90 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.west-8304 {
  text-align: right;
}

.west-8304 .layout-8a0f {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.tag_7b93 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.text-smooth-3531 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
  color: var(--color-text);
}

.text-smooth-3531 p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.button-11f1 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.block_top_f418 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

.footer-mini-f3ab {
  background: #e8f5e9;
  color: #2e7d32;
}

.gradient_4b1e {
  background: #e3f2fd;
  color: #1565c0;
}

.footer-2a11 {
  background: #fff3e0;
  color: #e65100;
}

.surface_fixed_e175 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.surface_fixed_e175 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.mask_fixed_38fc {
  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);
}

.mask_fixed_38fc:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.main_410c {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: #f1f8ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.filter_267c {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.filter_267c strong {
  color: var(--color-primary);
}

.button-rough-a8ca {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.avatar-6fe6 {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   20. FAQ SECTION
   ============================================ */
.row_8921 {
  max-width: 900px;
  margin: 0 auto;
}

.nav-cool-99c8 {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.soft_a122 {
  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);
}

.soft_a122:hover {
  background: var(--color-bg-alt);
}

.input_85de {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.soft_a122[aria-expanded="true"] .input_85de {
  transform: rotate(180deg);
}

.avatar_soft_cf43 {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.7;
}

.avatar_soft_cf43 h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-text);
}

.avatar_soft_cf43 ul,
.avatar_soft_cf43 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.avatar_soft_cf43 li {
  margin-bottom: var(--space-xs);
}

.popup_pink_e2a8 {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: #1e1e1e;
  color: #d4d4d4;
  border-radius: var(--radius-md);
  overflow-x: auto;
}

.action_899b {
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: #9cdcfe;
}

.popup_pink_e2a8 code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================
   21. CONCLUSION SECTION
   ============================================ */
.hero_d8a2 {
  max-width: 800px;
  margin: 0 auto var(--space-xxl);
  text-align: center;
}

.cool-9603 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.breadcrumb_71e9 {
  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);
}

.block_dark_702c {
  padding: 12px 24px;
  background: #4caf50;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.icon-f465 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .icon-f465 {
    grid-template-columns: 1fr;
  }
}

.rough-1d1e,
.grid-3ebd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.rough-1d1e {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.grid-3ebd {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.rough-1d1e h4,
.grid-3ebd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.rough-1d1e ul,
.grid-3ebd ul {
  list-style: none;
  padding: 0;
}

.rough-1d1e li,
.grid-3ebd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

.column_wide_eb70 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xxl) 0;
}

@media (max-width: 768px) {
  .column_wide_eb70 {
    grid-template-columns: 1fr;
  }
}

.under-c3ea {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.banner_f445 {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
  color: white;
}

.column_inner_3b53 {
  background: linear-gradient(135deg, #f44336 0%, #e57373 100%);
  color: white;
}

.under-c3ea h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: white;
}

.under-c3ea ul {
  list-style: none;
  padding: 0;
}

.under-c3ea li {
  padding: var(--space-xs) 0;
  color: white;
}

.caption_action_d029 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

.caption_action_d029 h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.caption_action_d029 p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.text-down-2ca6 {
  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);
}

.cold-0132 {
  font-style: italic;
}

.container-simple-c924 {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.in-b8d9 {
  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;
}

.in-b8d9 h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: white;
}

.in-b8d9 p {
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  color: rgba(255,255,255,0.9);
}

.tag-yellow-7f34 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* ============================================
   22. RELATED CONTENT
   ============================================ */
.right_c424 {
  padding: var(--space-xxl) 0;
  background: var(--color-bg-section);
}

.center-fc68 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tooltip-c147 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .tooltip-c147 {
    grid-template-columns: 1fr;
  }
}

.carousel-a38e {
  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);
}

.carousel-a38e:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wrapper_tall_a37d {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.carousel-a38e h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.carousel-a38e p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

/* ============================================
   23. FOOTER
   ============================================ */
.gradient-1b94 {
  background: #212121;
  color: #e0e0e0;
  padding: var(--space-xxl) 0 var(--space-lg);
}

.pagination_fixed_ac07 {
  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) */
.main-210f {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.dark-0980 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.dark-0980 p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.list-b192 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-b192 li {
  margin-bottom: var(--space-xs);
}

.list-b192 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.list-b192 a:hover {
  color: white;
}

.input_liquid_d52c {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.input_liquid_d52c 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);
}

.input_liquid_d52c a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.summary_dark_d3ae {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.summary_dark_d3ae a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.summary_dark_d3ae a:hover {
  color: white;
}

.alert-d1fb > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .pagination_fixed_ac07,
  .main-210f {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.footer_06e0 h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--space-md);
}

.over_339e p {
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.last_b7c7 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.last_b7c7 .row-cold-b64b {
  color: #4caf50;
  font-size: 0.875rem;
}

.up_358d {
  list-style: none;
  padding: 0;
}

.up_358d li {
  margin-bottom: var(--space-xs);
}

.up_358d a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.up_358d a:hover {
  color: white;
}

.input_0ac5 {
  list-style: none;
  padding: 0;
}

.input_0ac5 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.input_0ac5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.input_0ac5 a:hover {
  color: white;
}

.alert-d1fb {
  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);
}

.main_red_ee78 p {
  font-size: 0.875rem;
  color: #808080;
  margin-bottom: var(--space-xs);
}

.main_red_ee78 a {
  color: #4caf50;
  text-decoration: none;
}

.badge-a573 {
  font-size: 0.75rem;
  color: #666666;
}

.red-96ef {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #808080;
}

.red-96ef a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.red-96ef 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;
}

.orange-54ce {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.orange-54ce:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .alert-d1fb {
    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;
  }
  
  .fixed_4d7f {
    font-size: 2rem;
  }
  
  .notification-fixed-1ef9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .prev-e420,
  .tooltip_077a {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .shade-dc27,
  .action_d46e,
  .huge-40d9,
  .mini-9e50,
  .icon-f465,
  .column_wide_eb70,
  .tooltip-c147,
  .pagination_fixed_ac07,
  .main-210f {
    grid-template-columns: 1fr;
  }
  
  .dynamic_0fde {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip_352c {
    padding: var(--space-lg) 0;
  }
  
  .paragraph-3b8c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .paragraph-3b8c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver-d6f2 {
    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;
  }
  
  .dynamic_0fde {
    grid-template-columns: 1fr;
  }
  
  .alert_46b6,
  .tag-yellow-7f34,
  .right-8f3d {
    flex-direction: column;
    width: 100%;
  }
  
  .rough_dd3f,
  .photo_dc80,
  .alert_46b6 .silver-d6f2,
  .tag-yellow-7f34 .silver-d6f2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .fixed_4d7f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .notification-fixed-1ef9 {
    font-size: 1.375rem;
  }
  
  .container_dim_9885 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .carousel-blue-8e7d,
  .wide-aca8,
  .easy-97fc,
  .input-down-3c6a,
  .widget_dirty_4578 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .middle-9d3d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .content_lower_bb03 {
    gap: var(--space-xs);
  }
  
  .footer_2e71 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .link-e7e2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .up_2432 {
    width: 150px;
    height: 150px;
  }
  
  .article_tiny_cd5e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .popup_simple_60f4,
  .paper_2f79,
  .alert_46b6,
  .in-b8d9,
  .right_c424,
  .gradient-1b94,
  .image-8a60 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip_352c {
    page-break-inside: avoid;
  }
}

/* css-noise: 94a5 */
.first_4efb {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.0;
}

/* css-noise: f2b4 */
.promo-block-v6 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.0;
}
