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

.gradient-upper-b4c2:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fast-e0f0,
header,
.label_b800,
.red-d5a8,
.top_e375,
.module-narrow-b84d,
.fresh_3889,
.description-1ffe,
.section_fc33 {
  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
   ============================================ */
.fast-e0f0 {
  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);
}

.preview-old-e802 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.red-3de6 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.status-6996 {
  flex: 1;
}

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

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

.huge-c4a8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.huge-c4a8.fn-active-b9c6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.solid-d7a5 {
  position: relative;
}

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

.progress_tall_bfb2 svg {
  transition: transform 0.2s ease;
}

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

.selected-151e {
  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;
}

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

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

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

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

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

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

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

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

.filter_f4e5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .status-6996::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .status-6996.center_1fd3 {
    display: block;
    right: 0;
  }
  
  .panel-18b3 {
    flex-direction: column;
    gap: 0;
  }
  
  .huge-c4a8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .status-6996::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;
  }
  
  .status-6996.center_1fd3::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .status-6996 {
    display: none;
  }
  
  .breadcrumb_3e49 {
    display: flex;
  }
  
  .complex_44e7 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .filter_f4e5,
  .link_8523 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .solid-d7a5 {
    position: relative;
  }
  
  .selected-151e {
    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;
  }
  
  .progress_tall_bfb2[aria-expanded="true"] + .selected-151e {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .list-d83b {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .purple_1b65 {
    gap: 8px;
  }
  
  .filter_f4e5 {
    display: none;
  }
  
  .link_8523 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .red-3de6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.focus-a3be svg {
  flex-shrink: 0;
}

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

.focus-a3be a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.outer-4fb2 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.focus-cool-e9c9 {
  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;
}

.summary-prev-551a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.summary-prev-551a strong {
  font-weight: 600;
  color: var(--color-text);
}

.summary-prev-551a span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.section-hovered-518e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.in-7065 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .content-white-8e86 {
    grid-template-columns: 1fr;
  }
  
  .carousel_dynamic_b4bd {
    font-size: 1.75rem;
  }
  
  .carousel_paper_ed0d {
    order: -1;
    max-width: 100%;
  }
  
  .in-7065 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .carousel_dynamic_b4bd {
    font-size: 1.5rem;
  }
  
  .caption_0313 {
    font-size: 1rem;
  }
  
  .blue_c86d {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .in-7065 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.button-static-6092 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.card-motion-ed50 {
  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);
}

.heading-5ff7 {
  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);
}

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

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

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

.backdrop-in-475e {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.backdrop-in-475e img {
  max-width: 100%;
  height: auto;
  display: block;
}

.backdrop-in-475e pre,
.backdrop-in-475e code {
  overflow-x: auto;
  max-width: 100%;
}

.backdrop-in-475e 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);
}

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

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

.backdrop-in-475e p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.backdrop-in-475e ul,
.backdrop-in-475e ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.backdrop-in-475e li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.backdrop-in-475e strong {
  font-weight: 600;
  color: var(--color-text);
}

.backdrop-in-475e a {
  color: var(--color-primary);
  text-decoration: underline;
}

.backdrop-in-475e a:hover {
  color: var(--color-primary-dark);
}

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

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

.picture_green_4ad0 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) {
  .sidebar-glass-30cf {
    grid-template-columns: 1fr;
  }
  
  .heading-5ff7 {
    font-size: 1.75rem;
  }
  
  .backdrop-in-475e {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .heading-5ff7 {
    font-size: 1.5rem;
  }
  
  .backdrop-in-475e h3 {
    font-size: 1.375rem;
  }
  
  .backdrop-in-475e h4 {
    font-size: 1.125rem;
  }
}

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

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

.pro-0cd4 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.dark_c033 {
  flex-shrink: 0;
}

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

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

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

.lower_c667,
.component-8b12,
.complex-0cac {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lower_c667 thead,
.component-8b12 thead {
  background: var(--color-primary);
  color: white;
}

.lower_c667 th,
.lower_c667 td,
.component-8b12 th,
.component-8b12 td,
.complex-0cac th,
.complex-0cac td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lower_c667 th,
  .lower_c667 td,
  .component-8b12 th,
  .component-8b12 td,
  .complex-0cac th,
  .complex-0cac td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lower_c667,
  .component-8b12,
  .complex-0cac {
    min-width: 600px;
  }
}

.lower_c667 th,
.component-8b12 th,
.complex-0cac th {
  font-weight: 600;
}

.lower_c667 tbody tr:hover,
.component-8b12 tbody tr:hover,
.complex-0cac tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.middle_2cbd h4 {
  color: white;
}

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

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

.out-7e5f:last-child {
  border-bottom: none;
}

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

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

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

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

.fresh-4e7c:hover {
  text-decoration: underline;
}

.label-up-20d2 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.form-silver-4bbd {
  list-style: none;
  padding: 0;
}

.form-silver-4bbd li {
  padding: var(--space-xs) 0;
}

.form_thick_c018 {
  color: #4caf50;
}

.hero-035a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-light-9cad h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

.layout-outer-7136 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.wide-d12b .breadcrumb_new_de1c {
  width: 100%;
  background: white;
}

.texture_25cf .breadcrumb_new_de1c {
  color: #667eea;
}

.wrapper_warm_fde3 .breadcrumb_new_de1c {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask_lite_d663 {
    padding: var(--space-md);
  }
  
  .icon-d668 {
    padding: var(--space-md);
  }
  
  .outline-pro-1252 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.mini-f45d,
.paragraph_fixed_3da0,
.primary_d145,
.hot-30e1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.container-top-d8a6 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.block-dark-9e07 {
  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);
}

.overlay_279f .block-dark-9e07 {
  background: #e8f5e9;
  color: var(--color-success);
}

.tag_1762 .block-dark-9e07 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.column-602d {
  text-align: center;
}

.info-basic-5da9 {
  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);
}

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

.info-basic-5da9 .primary_liquid_c07a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.popup-7e97 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.background-6f5e {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.popup-226c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.notification-top-4a27 {
  text-align: right;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

.panel_huge_7152 {
  border: 2px solid #4caf50;
}

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

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

.tabs-new-3599 {
  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;
}

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

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

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

.paragraph_f9e7 {
  text-align: right;
}

.paragraph_f9e7 .up-7440 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.silver-96d5 {
  background: #e8f5e9;
  color: #2e7d32;
}

.content_yellow_6a73 {
  background: #e3f2fd;
  color: #1565c0;
}

.feature-rough-5d98 {
  background: #fff3e0;
  color: #e65100;
}

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

.icon-last-02f7 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.outline-full-6afd {
  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);
}

.outline-full-6afd:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.hover-steel-08c6 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.fluid-10d3 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.wide-f0cc[aria-expanded="true"] .fluid-10d3 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-e3e2,
.caption-bottom-7650 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.huge-e3e2 h4,
.caption-bottom-7650 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.huge-e3e2 ul,
.caption-bottom-7650 ul {
  list-style: none;
  padding: 0;
}

.huge-e3e2 li,
.caption-bottom-7650 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.menu-fresh-e6ba {
  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);
}

.gas-8670 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.chip-a4c8 a:hover {
  color: white;
}

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

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

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

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

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

.yellow_5d0f a:hover {
  color: white;
}

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

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

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

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

.shade-outer-9e73 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.shade-outer-9e73 .main_wide_571d {
  color: #4caf50;
  font-size: 0.875rem;
}

.top-2dac {
  list-style: none;
  padding: 0;
}

.top-2dac li {
  margin-bottom: var(--space-xs);
}

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

.top-2dac a:hover {
  color: white;
}

.alert-simple-aeda {
  list-style: none;
  padding: 0;
}

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

.alert-simple-aeda a {
  color: #b0b0b0;
  text-decoration: none;
}

.alert-simple-aeda a:hover {
  color: white;
}

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

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

.component_4b2f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.link-fast-ec1c 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;
}

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

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

@media (max-width: 768px) {
  .tall_96ae {
    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;
  }
  
  .carousel_dynamic_b4bd {
    font-size: 2rem;
  }
  
  .heading-5ff7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .content-white-8e86,
  .sidebar-glass-30cf {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block_large_3784,
  .summary_d9dc,
  .fast_986c,
  .badge-5ace,
  .heading-fast-a0f9,
  .left-a71e,
  .frame-3141,
  .left-3502,
  .overlay_smooth_8011 {
    grid-template-columns: 1fr;
  }
  
  .bronze_2ea7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fresh_3889 {
    padding: var(--space-lg) 0;
  }
  
  .heading_49e5 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .heading_49e5 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .breadcrumb_new_de1c {
    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;
  }
  
  .bronze_2ea7 {
    grid-template-columns: 1fr;
  }
  
  .section-hovered-518e,
  .list_medium_f49d,
  .bottom-5484 {
    flex-direction: column;
    width: 100%;
  }
  
  .button-static-6092,
  .hard_1ac0,
  .section-hovered-518e .breadcrumb_new_de1c,
  .list_medium_f49d .breadcrumb_new_de1c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .carousel_dynamic_b4bd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .heading-5ff7 {
    font-size: 1.375rem;
  }
  
  .accordion_gold_a726 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .hero_b69d,
  .summary-liquid-b0bc,
  .table-soft-7664,
  .tertiary-outer-2d5a,
  .picture_south_aae7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .next-486c {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .row-stone-5746 {
    gap: var(--space-xs);
  }
  
  .focus-a3be {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .filter_315e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info-basic-5da9 {
    width: 150px;
    height: 150px;
  }
  
  .message_cool_9563 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fast-e0f0,
  .label_b800,
  .section-hovered-518e,
  .widget_ad63,
  .description-1ffe,
  .section_fc33,
  .breadcrumb_3e49 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fresh_3889 {
    page-break-inside: avoid;
  }
}

/* css-noise: 9578 */
.shadow-element-q3 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
