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

.fixed_6eb5:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.breadcrumb-glass-4ace,
header,
.menu-fe02,
.orange_9472,
.menu-ce1e,
.secondary-full-3ac7,
.hidden-1436,
.over_7321,
.hovered-9179 {
  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
   ============================================ */
.breadcrumb-glass-4ace {
  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);
}

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

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

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

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

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

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

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

.new_62df {
  flex: 1;
}

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

.carousel-under-6ae8 {
  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);
}

.carousel-under-6ae8:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.carousel-under-6ae8.fn-active-9e0c {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

.gas_57a4 {
  position: absolute;
  top: calc(100% + 8px); /* 距离父元素8px，更自然 */
  left: 0;
  min-width: 200px;
  width: max-content; /* 自动适应内容宽度 */
  max-width: 300px; /* 最大宽度限制 */
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1001;
  /* 关键：确保没有overflow，内容完全可见 */
  overflow: visible;
  max-height: none;
  height: auto;
}

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

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

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

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

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

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

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

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

.panel_dark_a3ff svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.card-middle-2d3a[aria-expanded="true"] .primary-c9f5:nth-child(2) {
  opacity: 0;
}

.card-middle-2d3a[aria-expanded="true"] .primary-c9f5:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .new_62df::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .new_62df.accordion-ff82 {
    display: block;
    right: 0;
  }
  
  .sidebar-a4ce {
    flex-direction: column;
    gap: 0;
  }
  
  .carousel-under-6ae8 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .new_62df::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;
  }
  
  .new_62df.accordion-ff82::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .new_62df {
    display: none;
  }
  
  .card-middle-2d3a {
    display: flex;
  }
  
  .progress-6145 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel_dark_a3ff,
  .texture_medium_37f2 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .input_huge_e983 {
    position: relative;
  }
  
  .gas_57a4 {
    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;
  }
  
  .summary_b17a[aria-expanded="true"] + .gas_57a4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .wrapper-simple-2c1e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

.info-stone-f881 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-stone-f881 svg {
  flex-shrink: 0;
}

.info-stone-f881 a {
  color: var(--color-primary);
  text-decoration: none;
}

.info-stone-f881 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.primary-north-e1e5 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.yellow-26cc {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.slider-ec19 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .popup_old_3743 {
    grid-template-columns: 1fr;
  }
  
  .next-018a {
    font-size: 1.75rem;
  }
  
  .warm_bf62 {
    order: -1;
    max-width: 100%;
  }
  
  .slider-ec19 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .next-018a {
    font-size: 1.5rem;
  }
  
  .white_41e3 {
    font-size: 1rem;
  }
  
  .primary-north-e1e5 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .slider-ec19 {
    max-width: 250px;
  }
}

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

.image-3bb7 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.alert-116d {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

.next-0cf2 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.next-0cf2 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);
}

.next-0cf2 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;
}

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

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

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

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

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

.aside-2efb {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_692f 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) {
  .light_e823 {
    grid-template-columns: 1fr;
  }
  
  .aside-2efb {
    font-size: 1.75rem;
  }
  
  .breadcrumb_orange_c42d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .aside-2efb {
    font-size: 1.5rem;
  }
  
  .breadcrumb_orange_c42d h3 {
    font-size: 1.375rem;
  }
  
  .breadcrumb_orange_c42d h4 {
    font-size: 1.125rem;
  }
}

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

.overlay-7fc6 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.info-d956 {
  flex-shrink: 0;
}

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

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

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

.south-3e9b,
.wood-8378,
.row_thick_e919 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.south-3e9b thead,
.wood-8378 thead {
  background: var(--color-primary);
  color: white;
}

.south-3e9b th,
.south-3e9b td,
.wood-8378 th,
.wood-8378 td,
.row_thick_e919 th,
.row_thick_e919 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .south-3e9b th,
  .south-3e9b td,
  .wood-8378 th,
  .wood-8378 td,
  .row_thick_e919 th,
  .row_thick_e919 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .south-3e9b,
  .wood-8378,
  .row_thick_e919 {
    min-width: 600px;
  }
}

.south-3e9b th,
.wood-8378 th,
.row_thick_e919 th {
  font-weight: 600;
}

.south-3e9b tbody tr:hover,
.wood-8378 tbody tr:hover,
.row_thick_e919 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.shade_a960 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout-37e4 {
  list-style: none;
  padding: 0;
}

.layout-37e4 li {
  padding: var(--space-xs) 0;
}

.alert_solid_1271 {
  color: #4caf50;
}

.over_cac5 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-dark-2f60 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.thumbnail-dark-2f60 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.thumbnail-dark-2f60 li {
  padding: var(--space-xs) 0;
  color: white;
}

.thumbnail-dark-2f60 .light_5b44 {
  width: 100%;
  background: white;
}

.widget-easy-130b .light_5b44 {
  color: #667eea;
}

.pagination-light-941b .light_5b44 {
  color: #f5576c;
}

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

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

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

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

.frame-7c0d h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.gallery-wide-ea91 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .frame-7c0d {
    padding: var(--space-md);
  }
  
  .gallery-wide-ea91 {
    padding: var(--space-md);
  }
  
  .shade_edc1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.dark-8131,
.silver-eef2,
.nav-bright-9af3,
.preview_stale_db8e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.disabled-focused-e956 {
  border-color: var(--color-warning);
}

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

.aside_steel_0633 .slow_862c {
  background: #e8f5e9;
  color: var(--color-success);
}

.disabled-focused-e956 .slow_862c {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wide-95f7 {
  margin-top: var(--space-xxl);
}

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

.caption-de4e {
  text-align: center;
}

.layout-selected-b21a {
  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);
}

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

.layout-selected-b21a .pink_a814 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.logo-green-e6c6 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper_30a4 {
  text-align: right;
}

.wrapper_30a4 .pagination_f4bf {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.notification-mini-77ba {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.dropdown-e6e9 {
  background: #e3f2fd;
  color: #1565c0;
}

.message-8058 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout_motion_5e22 ul,
.west_a3d5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.link_e942 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.column-66a6 {
  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);
}

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

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

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

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

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

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

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

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

.column-solid-5310 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.column-solid-5310 li {
  margin-bottom: var(--space-xs);
}

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

.column-solid-5310 a:hover {
  color: white;
}

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

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

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

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

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

.column_ae16 a:hover {
  color: white;
}

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

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

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

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

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

.card_purple_3cc4 .yellow-26cc {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.layout_14a6 a:hover {
  color: white;
}

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

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

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

.red_d617 a:hover {
  color: white;
}

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

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

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

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

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

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

.mask-full-1841 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;
}

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

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

@media (max-width: 768px) {
  .panel_light_6119 {
    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;
  }
  
  .next-018a {
    font-size: 2rem;
  }
  
  .aside-2efb {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .popup_old_3743,
  .light_e823 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .frame_9dc1,
  .secondary-3b17,
  .overlay_up_7a43,
  .accordion-9fdc,
  .hot_0567,
  .pattern_basic_8ed5,
  .left-2871,
  .avatar_94c4,
  .text_motion_0bcc {
    grid-template-columns: 1fr;
  }
  
  .outline-solid-a089 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hidden-1436 {
    padding: var(--space-lg) 0;
  }
  
  .next-0cf2 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .next-0cf2 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .light_5b44 {
    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;
  }
  
  .outline-solid-a089 {
    grid-template-columns: 1fr;
  }
  
  .main_e0c6,
  .fluid_2e75,
  .thumbnail-3877 {
    flex-direction: column;
    width: 100%;
  }
  
  .alert-116d,
  .list_5fae,
  .main_e0c6 .light_5b44,
  .fluid_2e75 .light_5b44 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .next-018a {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .aside-2efb {
    font-size: 1.375rem;
  }
  
  .under-84f6 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list_focused_6a21,
  .title-5ba8,
  .medium_cbc1,
  .breadcrumb-simple-37a9,
  .feature-narrow-af6e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gas_3da5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .picture_upper_e034 {
    gap: var(--space-xs);
  }
  
  .info-stone-f881 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hard_edd3 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .layout-selected-b21a {
    width: 150px;
    height: 150px;
  }
  
  .alert-copper-db7c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .breadcrumb-glass-4ace,
  .menu-fe02,
  .main_e0c6,
  .text_wide_821d,
  .over_7321,
  .hovered-9179,
  .card-middle-2d3a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hidden-1436 {
    page-break-inside: avoid;
  }
}

/* css-noise: d668 */
.phantom-card-k6 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.3;
}
