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

.label-a51b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.feature-4924,
header,
.filter-liquid-ca14,
.green_13eb,
.blue-5b18,
.footer_left_00c5,
.next-d6f5,
.bright-9244,
.background-f528 {
  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
   ============================================ */
.feature-4924 {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
}

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

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

/* Scrolled state */
.feature-4924.secondary-pressed-6301 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.dropdown-wide-0264 {
  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;
}

.hard-2fdd {
  flex: 1;
}

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

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

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

.status_simple_d89b.fn-active-41fb {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.section-47cb {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.description-iron-8d0d {
  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;
}

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

.description-iron-8d0d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .hard-2fdd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hard-2fdd.progress-left-04d6 {
    display: block;
    right: 0;
  }
  
  .under-2449 {
    flex-direction: column;
    gap: 0;
  }
  
  .status_simple_d89b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hard-2fdd::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;
  }
  
  .hard-2fdd.progress-left-04d6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hard-2fdd {
    display: none;
  }
  
  .summary_f42e {
    display: flex;
  }
  
  .dropdown-wide-0264 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description-iron-8d0d,
  .layout_3521 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .section-47cb {
    position: relative;
  }
  
  .in_e5d3 {
    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;
  }
  
  .message_paper_ed88[aria-expanded="true"] + .in_e5d3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .rough-7262 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .tabs_a664 {
    gap: 8px;
  }
  
  .description-iron-8d0d {
    display: none;
  }
  
  .layout_3521 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .left_84e6 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.over-569a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.over-569a svg {
  flex-shrink: 0;
}

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

.over-569a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.tertiary-188b {
  color: var(--color-text-lighter);
}

.wrapper-thick-8ae8 {
  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) {
  .wrapper-thick-8ae8 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wrapper-thick-8ae8 {
    font-size: 1.5rem;
  }
}

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

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

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

.feature-outer-d445 {
  display: flex;
  gap: var(--space-sm);
}

.module-707a {
  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;
}

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

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

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

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

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

.notice-a482 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .dynamic_a8b2 {
    grid-template-columns: 1fr;
  }
  
  .wrapper-thick-8ae8 {
    font-size: 1.75rem;
  }
  
  .outline_56fa {
    order: -1;
    max-width: 100%;
  }
  
  .notice-a482 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .wrapper-thick-8ae8 {
    font-size: 1.5rem;
  }
  
  .short-5c15 {
    font-size: 1rem;
  }
  
  .row_4d79 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .notice-a482 {
    max-width: 250px;
  }
}

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

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

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

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

.backdrop-purple-d111:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.focused-85a1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dirty-a5bf 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) {
  .last_c539 {
    grid-template-columns: 1fr;
  }
  
  .focused-85a1 {
    font-size: 1.75rem;
  }
  
  .content-f490 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .focused-85a1 {
    font-size: 1.5rem;
  }
  
  .content-f490 h3 {
    font-size: 1.375rem;
  }
  
  .content-f490 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.highlight-current-81d7 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.module-dim-bf62 {
  flex-shrink: 0;
}

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

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

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

.shade_soft_7721,
.layout-b32e,
.caption-d117 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.shade_soft_7721 thead,
.layout-b32e thead {
  background: var(--color-primary);
  color: white;
}

.shade_soft_7721 th,
.shade_soft_7721 td,
.layout-b32e th,
.layout-b32e td,
.caption-d117 th,
.caption-d117 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .shade_soft_7721 th,
  .shade_soft_7721 td,
  .layout-b32e th,
  .layout-b32e td,
  .caption-d117 th,
  .caption-d117 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .shade_soft_7721,
  .layout-b32e,
  .caption-d117 {
    min-width: 600px;
  }
}

.shade_soft_7721 th,
.layout-b32e th,
.caption-d117 th {
  font-weight: 600;
}

.shade_soft_7721 tbody tr:hover,
.layout-b32e tbody tr:hover,
.caption-d117 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.heading_e42d h4 {
  color: white;
}

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

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

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

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

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

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

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

.photo-d165:hover {
  text-decoration: underline;
}

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

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

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

.fresh-4f11 {
  font-weight: 600;
  color: white;
}

.avatar-1caa {
  list-style: none;
  padding: 0;
}

.avatar-1caa li {
  padding: var(--space-xs) 0;
}

.slider-focused-9fd8 {
  color: #4caf50;
}

.content-under-12fa {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .section-new-25b0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.heading-d93d .disabled-gas-7109 {
  width: 100%;
  background: white;
}

.pro-f338 .disabled-gas-7109 {
  color: #667eea;
}

.element_d092 .disabled-gas-7109 {
  color: #f5576c;
}

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

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

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

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

.out-588f h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.sidebar-narrow-a19b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .out-588f {
    padding: var(--space-md);
  }
  
  .sidebar-narrow-a19b {
    padding: var(--space-md);
  }
  
  .progress_over_d788 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.first_8a6b,
.tooltip_7941,
.preview_simple_f46d,
.iron_972e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.lower-8395:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.fixed_24b7 {
  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_bronze_e254 .fixed_24b7 {
  background: #e8f5e9;
  color: var(--color-success);
}

.simple_2f09 .fixed_24b7 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.hard-6f8b {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.dropdown-454d {
  margin-top: var(--space-xxl);
}

.layout_under_1aed {
  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-static-e6cf {
  text-align: center;
}

.disabled-paper-63bb {
  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);
}

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

.disabled-paper-63bb .fresh-4f11 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft_8339 {
  text-align: right;
}

.soft_8339 .block-short-c97b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.sidebar-a2bc {
  background: #e8f5e9;
  color: #2e7d32;
}

.hover-tall-bec8 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.inner_f4b8 ul,
.dirty_119c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.grid-lower-d494 {
  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);
}

.sort_dynamic_4f46 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_e1d5 a:hover {
  color: white;
}

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

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

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

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

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

.header_946e a:hover {
  color: white;
}

.container-fresh-444a > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.row-f347 .feature-outer-d445 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.steel_aa8b a:hover {
  color: white;
}

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

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

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

.box_e6eb a:hover {
  color: white;
}

.container-fresh-444a {
  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);
}

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

.tooltip-bottom-be7e a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.mask-bright-9737:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .container-fresh-444a {
    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;
  }
  
  .wrapper-thick-8ae8 {
    font-size: 2rem;
  }
  
  .focused-85a1 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .dynamic_a8b2,
  .last_c539 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .next-3716,
  .cold_42c8,
  .section-new-25b0,
  .active-d549,
  .module_lower_f392,
  .preview-small-9766,
  .purple-1ec9,
  .grid_purple_169f,
  .fresh-4ded {
    grid-template-columns: 1fr;
  }
  
  .bronze-f8d4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .next-d6f5 {
    padding: var(--space-lg) 0;
  }
  
  .top_afe7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .top_afe7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .disabled-gas-7109 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .bronze-f8d4 {
    grid-template-columns: 1fr;
  }
  
  .message-f1f5,
  .hard-51db,
  .column_over_2a84 {
    flex-direction: column;
    width: 100%;
  }
  
  .card-bb22,
  .avatar_e92e,
  .message-f1f5 .disabled-gas-7109,
  .hard-51db .disabled-gas-7109 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .wrapper-thick-8ae8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .focused-85a1 {
    font-size: 1.375rem;
  }
  
  .basic-7b0c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .detail-79d9,
  .under_7460,
  .dynamic_6bf6,
  .action_6d39,
  .hero-tall-cdda {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .media_upper_20cd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gallery_purple_c592 {
    gap: var(--space-xs);
  }
  
  .over-569a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .search_tiny_9b52 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .disabled-paper-63bb {
    width: 150px;
    height: 150px;
  }
  
  .hover_aeac {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .feature-4924,
  .filter-liquid-ca14,
  .message-f1f5,
  .pink_60f9,
  .bright-9244,
  .background-f528,
  .summary_f42e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .next-d6f5 {
    page-break-inside: avoid;
  }
}

/* css-noise: 96a3 */
.ghost-box-n9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.1;
}
