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

.chip-80bd:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .search-static-746c {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .search-static-746c {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.block_9dad,
header,
.text_new_1386,
.article-focused-05dd,
.content_c918,
.active-2632,
.stale-568b,
.summary_green_627d,
.fast_585f {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.hovered-7371 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.block_9dad.pagination-in-237c {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.element-42f4 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.blue_cc2f {
  flex: 1;
}

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

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

.bright-da4a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.bright-da4a.yellow-4e11 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.pattern-simple-58af {
  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;
}

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

.pattern-simple-58af svg {
  flex-shrink: 0;
}

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

.mask-8a0b: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);
}

.mask-8a0b svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.pattern_9268[aria-expanded="true"] .card-light-d37c:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .blue_cc2f {
    display: none;
  }
  
  .pattern_9268 {
    display: flex;
  }
  
  .pagination_full_348e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .pattern-simple-58af,
  .mask-8a0b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .progress_428a {
    position: relative;
  }
  
  .notice_2e45 {
    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;
  }
  
  .hot_0961[aria-expanded="true"] + .notice_2e45 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .smooth-d776 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .prev_9b70 {
    gap: 8px;
  }
  
  .pattern-simple-58af {
    display: none;
  }
  
  .mask-8a0b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .element-42f4 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.notice-copper-e14b {
  display: flex;
  align-items: center;
  gap: 6px;
}

.notice-copper-e14b svg {
  flex-shrink: 0;
}

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

.notice-copper-e14b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.aside-3d5b a {
  color: var(--color-primary);
  text-decoration: none;
}

.aside-3d5b a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask-clean-949d {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .left_c9c1 {
    grid-template-columns: 1fr;
  }
  
  .bronze-8d63 {
    font-size: 1.75rem;
  }
  
  .backdrop-af3d {
    order: -1;
    max-width: 100%;
  }
  
  .fluid_220d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .bronze-8d63 {
    font-size: 1.5rem;
  }
  
  .tooltip_bright_ebe7 {
    font-size: 1rem;
  }
  
  .aside-3d5b {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .fluid_220d {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.link-outer-808b:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

.heading_6a07 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_6a07 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_6a07 li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hot-ef8b 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) {
  .text-center-f88e {
    grid-template-columns: 1fr;
  }
  
  .summary-f6dd {
    font-size: 1.75rem;
  }
  
  .out-e9e8 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .summary-f6dd {
    font-size: 1.5rem;
  }
  
  .out-e9e8 h3 {
    font-size: 1.375rem;
  }
  
  .out-e9e8 h4 {
    font-size: 1.125rem;
  }
}

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

.notice-medium-f91c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.hero-huge-5a5d {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.wrapper-green-46d7 {
  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;
}

.mini_95f3 {
  flex-shrink: 0;
}

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

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

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

.panel_8df1,
.status-09c5,
.sort-short-f420 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.panel_8df1 thead,
.status-09c5 thead {
  background: var(--color-primary);
  color: white;
}

.panel_8df1 th,
.panel_8df1 td,
.status-09c5 th,
.status-09c5 td,
.sort-short-f420 th,
.sort-short-f420 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .panel_8df1 th,
  .panel_8df1 td,
  .status-09c5 th,
  .status-09c5 td,
  .sort-short-f420 th,
  .sort-short-f420 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .panel_8df1,
  .status-09c5,
  .sort-short-f420 {
    min-width: 600px;
  }
}

.panel_8df1 th,
.status-09c5 th,
.sort-short-f420 th {
  font-weight: 600;
}

.panel_8df1 tbody tr:hover,
.status-09c5 tbody tr:hover,
.sort-short-f420 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.aside-gold-44df h4 {
  color: white;
}

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

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

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

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

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

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

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

.over-df80:hover {
  text-decoration: underline;
}

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

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

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

.fluid-60f5 {
  font-weight: 600;
  color: white;
}

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

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

.description_5b81 {
  color: #4caf50;
}

.main_static_6088 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.grid-1caa {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.medium-1af2 .carousel_e4c2 {
  width: 100%;
  background: white;
}

.aside_paper_fbf0 .carousel_e4c2 {
  color: #667eea;
}

.panel_focused_b514 .carousel_e4c2 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .grid_d4da {
    padding: var(--space-md);
  }
  
  .copper_04ab {
    padding: var(--space-md);
  }
  
  .info-light-1720 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.over-2df6 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.basic_3c9a,
.secondary_5792,
.disabled-easy-7c7e,
.video_8ab3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.background-action-385d {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.silver-35e9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.background-f5e6 .box_huge_5138 {
  background: #e8f5e9;
  color: var(--color-success);
}

.background_e6d9 .box_huge_5138 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.layout-dim-ce3f {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.hero-solid-8552 {
  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);
}

.secondary-green-48b6 {
  text-align: center;
}

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

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

.column_aef2 .fluid-60f5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.liquid-4f32 {
  margin-bottom: var(--space-xl);
}

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

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

.breadcrumb-tall-aedd {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.clean-90cc {
  border: 2px solid #4caf50;
}

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

.item-460d {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.notice-lite-963b {
  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;
}

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

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

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

.label-lower-a7be {
  text-align: right;
}

.label-lower-a7be .gold_7d20 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.secondary-upper-e019 {
  background: #e8f5e9;
  color: #2e7d32;
}

.wide-3d07 {
  background: #e3f2fd;
  color: #1565c0;
}

.slider-middle-9627 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

.badge-8eaf {
  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);
}

.badge-8eaf:hover {
  background: var(--color-bg-alt);
}

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

.badge-8eaf[aria-expanded="true"] .progress_b1a1 {
  transform: rotate(180deg);
}

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

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

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

.grid-10fb li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.breadcrumb-hard-534f {
  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);
}

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

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

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

.alert-rough-3ff0,
.panel-liquid-db05 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.alert-rough-3ff0 h4,
.panel-liquid-db05 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.alert-rough-3ff0 ul,
.panel-liquid-db05 ul {
  list-style: none;
  padding: 0;
}

.alert-rough-3ff0 li,
.panel-liquid-db05 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.layout-active-6896 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.feature_1739 {
  font-style: italic;
}

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

.media-liquid-643d {
  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;
}

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

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

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

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

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

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

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

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

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

.wrapper-hard-54ad {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.pattern_218c .motion_f4ec {
  color: #4caf50;
  font-size: 0.875rem;
}

.media-steel-f647 {
  list-style: none;
  padding: 0;
}

.media-steel-f647 li {
  margin-bottom: var(--space-xs);
}

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

.media-steel-f647 a:hover {
  color: white;
}

.tag-bright-cee5 {
  list-style: none;
  padding: 0;
}

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

.tag-bright-cee5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tag-bright-cee5 a:hover {
  color: white;
}

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

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

.light-1a0f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

@media (max-width: 768px) {
  .small-a8ea {
    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;
  }
  
  .bronze-8d63 {
    font-size: 2rem;
  }
  
  .summary-f6dd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .left_c9c1,
  .text-center-f88e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .active-97ad,
  .fast-28bf,
  .status_old_0a61,
  .popup-d5d5,
  .footer_ab44,
  .widget_simple_37a8,
  .stale-991a,
  .menu_rough_79d4 {
    grid-template-columns: 1fr;
  }
  
  .tooltip-a535 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .stale-568b {
    padding: var(--space-lg) 0;
  }
  
  .heading_6a07 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .heading_6a07 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .carousel_e4c2 {
    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;
  }
  
  .tooltip-a535 {
    grid-template-columns: 1fr;
  }
  
  .dynamic_808c,
  .card_ca8d,
  .component-1272 {
    flex-direction: column;
    width: 100%;
  }
  
  .box_upper_235f,
  .mini_dae3,
  .dynamic_808c .carousel_e4c2,
  .card_ca8d .carousel_e4c2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .bronze-8d63 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .summary-f6dd {
    font-size: 1.375rem;
  }
  
  .popup-4221 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .link-outer-808b,
  .container-bcae,
  .pattern_old_10a4,
  .tertiary-5abb,
  .status-complex-4b08 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .shadow_simple_2d86 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .complex-6745 {
    gap: var(--space-xs);
  }
  
  .notice-copper-e14b {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .north_07cb {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .column_aef2 {
    width: 150px;
    height: 150px;
  }
  
  .card_current_c5eb {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .block_9dad,
  .text_new_1386,
  .dynamic_808c,
  .media-liquid-643d,
  .summary_green_627d,
  .fast_585f,
  .pattern_9268 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .stale-568b {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.focus-3b58 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

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