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

.disabled_clean_d056:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tiny_cbdf,
header,
.panel_52df,
.steel_328c,
.south_1dcc,
.status_liquid_c6f6,
.dropdown_db34,
.hover_c735,
.article-a9c0 {
  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
   ============================================ */
.tiny_cbdf {
  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);
}

.background-solid-369f {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.tiny_cbdf.menu-tall-7109 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

.sort-north-1c1d {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hidden-15bd img {
  height: 36px;
  width: auto;
  display: block;
}

.message-liquid-7467 {
  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;
}

.silver-d26e {
  flex: 1;
}

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

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

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

.content-c030.fn-active-cf58 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-plasma-f176 svg {
  flex-shrink: 0;
}

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

.chip-easy-2742: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);
}

.chip-easy-2742 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.link-blue-1cb0[aria-expanded="true"] .pagination-f49d:nth-child(2) {
  opacity: 0;
}

.link-blue-1cb0[aria-expanded="true"] .pagination-f49d:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .silver-d26e {
    display: none;
  }
  
  .link-blue-1cb0 {
    display: flex;
  }
  
  .message-liquid-7467 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .main-plasma-f176,
  .chip-easy-2742 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .aside_a19d {
    position: relative;
  }
  
  .gold_75fd {
    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;
  }
  
  .stale_3488[aria-expanded="true"] + .gold_75fd {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .primary-bdc9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .shadow_huge_4f2f {
    gap: 8px;
  }
  
  .main-plasma-f176 {
    display: none;
  }
  
  .chip-easy-2742 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .hidden-15bd img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .chip-easy-2742 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .chip-easy-2742 svg {
    width: 14px;
    height: 14px;
  }
  
  .progress-down-3b8b {
    gap: var(--space-sm);
  }
}

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

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

.solid-354a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.solid-354a svg {
  flex-shrink: 0;
}

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

.solid-354a a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.alert-brown-c4a4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.alert-brown-c4a4 a:hover {
  text-decoration: underline;
}

.main-423e {
  color: var(--color-text-lighter);
}

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

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

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

.popup_last_909c {
  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_last_909c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.outline-1dc5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.message-slow-6b8c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-ee6e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .shadow-00f8 {
    grid-template-columns: 1fr;
  }
  
  .popup_b80d {
    font-size: 1.75rem;
  }
  
  .message-slow-6b8c {
    order: -1;
    max-width: 100%;
  }
  
  .status-ee6e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .popup_b80d {
    font-size: 1.5rem;
  }
  
  .item-smooth-8df1 {
    font-size: 1rem;
  }
  
  .alert-brown-c4a4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .status-ee6e {
    max-width: 250px;
  }
}

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

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

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

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

.button-1c7e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.widget-83ee {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.widget-83ee 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) {
  .dirty_f6a7 {
    grid-template-columns: 1fr;
  }
  
  .text-d465 {
    font-size: 1.75rem;
  }
  
  .container_hard_dfcc {
    max-width: 100%;
  }
}

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

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.surface-current-0dea {
  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;
}

.nav-b583 {
  flex-shrink: 0;
}

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

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

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

.module-6822,
.short_3e74,
.slow_e151 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.module-6822 thead,
.short_3e74 thead {
  background: var(--color-primary);
  color: white;
}

.module-6822 th,
.module-6822 td,
.short_3e74 th,
.short_3e74 td,
.slow_e151 th,
.slow_e151 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .module-6822 th,
  .module-6822 td,
  .short_3e74 th,
  .short_3e74 td,
  .slow_e151 th,
  .slow_e151 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .module-6822,
  .short_3e74,
  .slow_e151 {
    min-width: 600px;
  }
}

.module-6822 th,
.short_3e74 th,
.slow_e151 th {
  font-weight: 600;
}

.module-6822 tbody tr:hover,
.short_3e74 tbody tr:hover,
.slow_e151 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.slow_941c h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.gallery-warm-5109 {
  font-weight: 600;
  color: white;
}

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

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

.texture-medium-7285 {
  color: #4caf50;
}

.tertiary-prev-bf94 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower-6ca4 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

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

.lower-6ca4 .clean-8cc7 {
  width: 100%;
  background: white;
}

.main_7a91 .clean-8cc7 {
  color: #667eea;
}

.static-c49b .clean-8cc7 {
  color: #f5576c;
}

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

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

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

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

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

.right-320c {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .aside_3dfb {
    padding: var(--space-md);
  }
  
  .right-320c {
    padding: var(--space-md);
  }
  
  .border_north_5293 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.input-9c61 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.frame-action-32b7,
.paper-4bee,
.frame_over_b7e6,
.block_stale_83a2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.next_f514 .accordion-7142 {
  background: #e8f5e9;
  color: var(--color-success);
}

.description_6ed9 .accordion-7142 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.summary-fluid-055e {
  margin: var(--space-xxl) 0;
}

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

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

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

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

.hero-liquid-fde9 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.article-8de0 {
  margin-top: var(--space-xxl);
}

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

.large_244f {
  text-align: center;
}

.element-dark-707c {
  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);
}

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

.element-dark-707c .gallery-warm-5109 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.mask-gold-a6b1 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.fast-2abc {
  border: 2px solid #4caf50;
}

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

.image-53d6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.current-e875 {
  text-align: right;
}

.current-e875 .progress-2cb4 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.brown-24e5 {
  background: #e3f2fd;
  color: #1565c0;
}

.image-d49a {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.orange-1da7 {
  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);
}

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

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

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

.basic_5a7c,
.footer-6a21 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.basic_5a7c h4,
.footer-6a21 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.basic_5a7c ul,
.footer-6a21 ul {
  list-style: none;
  padding: 0;
}

.basic_5a7c li,
.footer-6a21 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .label-basic-629c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.label-987a ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.prev-7c2f {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.wrapper-hovered-157a {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.carousel_256e a:hover {
  color: white;
}

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

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

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

.hero-new-77fc {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hero-new-77fc a:hover {
  color: white;
}

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

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

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

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

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

.block-b201 .motion-0499 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.small_057f a:hover {
  color: white;
}

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

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

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

.item_1659 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.menu-over-c4de:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .warm_3055 {
    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;
  }
  
  .popup_b80d {
    font-size: 2rem;
  }
  
  .text-d465 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .shadow-00f8,
  .dirty_f6a7 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .up-7dff,
  .accordion-43fa,
  .thumbnail_selected_3baa,
  .status-0a2e,
  .menu-128c,
  .label-basic-629c,
  .middle-c272,
  .tabs_cold_91cf,
  .link_full_a5e5 {
    grid-template-columns: 1fr;
  }
  
  .over-f7cc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .dropdown_db34 {
    padding: var(--space-lg) 0;
  }
  
  .hard_92e7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hard_92e7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .clean-8cc7 {
    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;
  }
  
  .over-f7cc {
    grid-template-columns: 1fr;
  }
  
  .outline-1dc5,
  .outer-c1ee,
  .simple_0cbf {
    flex-direction: column;
    width: 100%;
  }
  
  .summary-7226,
  .pagination_828c,
  .outline-1dc5 .clean-8cc7,
  .outer-c1ee .clean-8cc7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .popup_b80d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .text-d465 {
    font-size: 1.375rem;
  }
  
  .list-first-e66c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .primary_full_af10,
  .column_down_76f1,
  .label-bd10,
  .action_02d4,
  .column_bee2 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tabs-b0b7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .south_dc77 {
    gap: var(--space-xs);
  }
  
  .solid-354a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .west_6fb2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .element-dark-707c {
    width: 150px;
    height: 150px;
  }
  
  .layout-bright-e07c {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tiny_cbdf,
  .panel_52df,
  .outline-1dc5,
  .footer_in_6a18,
  .hover_c735,
  .article-a9c0,
  .link-blue-1cb0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .dropdown_db34 {
    page-break-inside: avoid;
  }
}

/* css-noise: 59af */
.phantom-card-b4 {
  padding: 0.4rem;
  font-size: 11px;
  line-height: 1.3;
}
