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

.action-bd3b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.shade-2e5b,
header,
.background-720b,
.highlight-ec36,
.tag-87e2,
.tertiary_basic_b33d,
.tooltip-659e,
.picture-9af1,
.accent_middle_1be0 {
  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
   ============================================ */
.shade-2e5b {
  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);
}

.active-5359 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.shade-2e5b.pink-aace {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.image-short-d57e {
  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;
}

.module_805e {
  flex: 1;
}

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

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

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

.detail_down_a615.fn-active-3a28 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.left-dc35 {
  position: relative;
}

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

.component-hovered-fbd7 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.sidebar-hard-4880 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.hero-aa41[aria-expanded="true"] .soft-5e9f:nth-child(2) {
  opacity: 0;
}

.hero-aa41[aria-expanded="true"] .soft-5e9f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .module_805e {
    display: none;
  }
  
  .hero-aa41 {
    display: flex;
  }
  
  .image-short-d57e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .sidebar-hard-4880,
  .center_be7b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .left-dc35 {
    position: relative;
  }
  
  .glass_3850 {
    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;
  }
  
  .component-hovered-fbd7[aria-expanded="true"] + .glass_3850 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .overlay_light_0c7a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .highlight_3e27 {
    gap: 8px;
  }
  
  .sidebar-hard-4880 {
    display: none;
  }
  
  .center_be7b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .heading_a5dc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.wrapper_short_170a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.content-dim-afd4 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

.link-3fd7 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.blue-428c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mask-f1b6 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .out-2b3f {
    grid-template-columns: 1fr;
  }
  
  .feature-easy-b9b2 {
    font-size: 1.75rem;
  }
  
  .blue-428c {
    order: -1;
    max-width: 100%;
  }
  
  .mask-f1b6 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .feature-easy-b9b2 {
    font-size: 1.5rem;
  }
  
  .background-down-ce77 {
    font-size: 1rem;
  }
  
  .title_0804 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .mask-f1b6 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.plasma-12d1 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-soft-56c1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_plasma_f540 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) {
  .paragraph_plasma_6947 {
    grid-template-columns: 1fr;
  }
  
  .tooltip_brown_5517 {
    font-size: 1.75rem;
  }
  
  .preview_old_1c6f {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .tooltip_brown_5517 {
    font-size: 1.5rem;
  }
  
  .preview_old_1c6f h3 {
    font-size: 1.375rem;
  }
  
  .preview_old_1c6f h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.notice_narrow_d7c9 {
  flex-shrink: 0;
}

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

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

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

.frame-f5b9,
.top-7113,
.image-advanced-e624 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.frame-f5b9 thead,
.top-7113 thead {
  background: var(--color-primary);
  color: white;
}

.frame-f5b9 th,
.frame-f5b9 td,
.top-7113 th,
.top-7113 td,
.image-advanced-e624 th,
.image-advanced-e624 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .frame-f5b9 th,
  .frame-f5b9 td,
  .top-7113 th,
  .top-7113 td,
  .image-advanced-e624 th,
  .image-advanced-e624 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .frame-f5b9,
  .top-7113,
  .image-advanced-e624 {
    min-width: 600px;
  }
}

.frame-f5b9 th,
.top-7113 th,
.image-advanced-e624 th {
  font-weight: 600;
}

.frame-f5b9 tbody tr:hover,
.top-7113 tbody tr:hover,
.image-advanced-e624 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.menu-d118 h4 {
  color: white;
}

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

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

.plasma-5468:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.wide-8d43 {
  font-weight: 600;
  color: white;
}

.thumbnail-pink-3de7 {
  list-style: none;
  padding: 0;
}

.thumbnail-pink-3de7 li {
  padding: var(--space-xs) 0;
}

.short_b56a {
  color: #4caf50;
}

.preview-2995 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .banner-top-8b5c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-17aa {
  margin-top: var(--space-xxl);
}

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

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

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

.pattern-complex-4f59 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.pattern-complex-4f59 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.pattern-complex-4f59 li {
  padding: var(--space-xs) 0;
  color: white;
}

.pattern-complex-4f59 .middle_e4f7 {
  width: 100%;
  background: white;
}

.highlight_huge_19fc .middle_e4f7 {
  color: #667eea;
}

.status-easy-1bf6 .middle_e4f7 {
  color: #f5576c;
}

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

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

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

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

.over-19cf h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .over-19cf {
    padding: var(--space-md);
  }
  
  .hidden_in_297e {
    padding: var(--space-md);
  }
  
  .silver_ac70 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.backdrop-medium-e82f li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.content-large-5797,
.inner-71d5,
.button-complex-a8cf,
.sidebar_selected_51a1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.next_0b1e {
  display: block;
  padding: var(--space-sm);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
  overflow-wrap: break-word;
  margin: var(--space-sm) 0;
}

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

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

.avatar-cool-8be2:hover {
  background: var(--color-primary-dark);
}

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

.table-out-f185 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.badge-9bbf {
  border-color: var(--color-success);
}

.picture-green-2db4 {
  border-color: var(--color-warning);
}

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

.badge-9bbf .table_purple_900d {
  background: #e8f5e9;
  color: var(--color-success);
}

.picture-green-2db4 .table_purple_900d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.avatar-3ef2 {
  margin: var(--space-xxl) 0;
}

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

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

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

@media (max-width: 768px) {
  .tertiary-fixed-0a3f {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.shade-04d9 {
  text-align: center;
}

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

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

.slow_e583 .wide-8d43 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.logo-hard-5af0 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.glass-97de {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.active-21df {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.banner-blue-6d8d {
  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;
}

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

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

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

.outline_c51e {
  text-align: right;
}

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

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

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

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

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

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

.disabled-e5d5 {
  background: #e8f5e9;
  color: #2e7d32;
}

.label-brown-31aa {
  background: #e3f2fd;
  color: #1565c0;
}

.silver_57c1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.module-4b35 strong {
  color: var(--color-primary);
}

.element-tiny-1ad1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.notification-9033[aria-expanded="true"] .gas_91d6 {
  transform: rotate(180deg);
}

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

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

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

.status-old-6193 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter_tiny_1518 ul,
.fluid_9f09 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.input-solid-e8e5 {
  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);
}

.main-e038 {
  font-style: italic;
}

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

.button-bronze-a2f5 {
  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;
}

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

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

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

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

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

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

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

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

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

.alert-action-544a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.section-blue-7c0c {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-blue-7c0c li {
  margin-bottom: var(--space-xs);
}

.section-blue-7c0c a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.section-blue-7c0c a:hover {
  color: white;
}

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

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

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

.widget-current-1d2d {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.widget-current-1d2d a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .message_mini_6c69,
  .outline-upper-95b3 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.banner-19c2 .footer_1e36 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.gold_0b34 a:hover {
  color: white;
}

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

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

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

.selected_3eda a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.bronze-0fed:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tabs_full_110c {
    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;
  }
  
  .feature-easy-b9b2 {
    font-size: 2rem;
  }
  
  .tooltip_brown_5517 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .out-2b3f,
  .paragraph_plasma_6947 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .banner-top-8b5c,
  .background_middle_c99d,
  .main_prev_5962,
  .tertiary-fixed-0a3f,
  .component_plasma_74c8,
  .thumbnail_prev_c3dd,
  .inner-81fd,
  .message_mini_6c69,
  .outline-upper-95b3 {
    grid-template-columns: 1fr;
  }
  
  .label-selected-193a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tooltip-659e {
    padding: var(--space-lg) 0;
  }
  
  .article_dirty_1681 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .article_dirty_1681 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .middle_e4f7 {
    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;
  }
  
  .label-selected-193a {
    grid-template-columns: 1fr;
  }
  
  .link-3fd7,
  .tertiary_5ede,
  .outer_31bf {
    flex-direction: column;
    width: 100%;
  }
  
  .sort_1bdd,
  .plasma-12d1,
  .link-3fd7 .middle_e4f7,
  .tertiary_5ede .middle_e4f7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .feature-easy-b9b2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .tooltip_brown_5517 {
    font-size: 1.375rem;
  }
  
  .table-selected-2506 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .bronze-04d4,
  .hard_b519,
  .dropdown_over_6fde,
  .accordion-4623,
  .menu_simple_9285 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .next_0b1e {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .notification-c248 {
    gap: var(--space-xs);
  }
  
  .wrapper_short_170a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .right_abe5 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .slow_e583 {
    width: 150px;
    height: 150px;
  }
  
  .photo_876a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .shade-2e5b,
  .background-720b,
  .link-3fd7,
  .button-bronze-a2f5,
  .picture-9af1,
  .accent_middle_1be0,
  .hero-aa41 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tooltip-659e {
    page-break-inside: avoid;
  }
}

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