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

.large-0eb2:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.bronze-0f39,
header,
.container-c66c,
.modal-warm-72e4,
.slider_complex_8d46,
.row_51bc,
.sort_f941,
.breadcrumb-gold-3b05,
.outline-solid-e856 {
  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
   ============================================ */
.bronze-0f39 {
  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);
}

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

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

/* Scrolled state */
.bronze-0f39.north-3055 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.alert-middle-c131 img {
  height: 36px;
  width: auto;
  display: block;
}

.sidebar-43c1 {
  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;
}

.modal_6ff0 {
  flex: 1;
}

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

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

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

.outline_brown_070c.fn-active-a2b3 {
  background: var(--color-primary);
  color: white;
}

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

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

.prev-4a00 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.south_b1ac svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.search-plasma-573f[aria-expanded="true"] .title_879f:nth-child(2) {
  opacity: 0;
}

.search-plasma-573f[aria-expanded="true"] .title_879f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .modal_6ff0 {
    display: none;
  }
  
  .search-plasma-573f {
    display: flex;
  }
  
  .sidebar-43c1 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .south_b1ac,
  .column-2664 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component_pink_ea4c {
    position: relative;
  }
  
  .selected-a154 {
    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;
  }
  
  .prev-4a00[aria-expanded="true"] + .selected-a154 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel-fc2c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .widget-solid-d907 {
    gap: 8px;
  }
  
  .south_b1ac {
    display: none;
  }
  
  .column-2664 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .alert-middle-c131 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.silver_47d7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.carousel-clean-9eb2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.carousel-clean-9eb2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-0c66 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

.alert-motion-93ae {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

@media (max-width: 968px) {
  .surface-motion-61b3 {
    grid-template-columns: 1fr;
  }
  
  .row_efd7 {
    font-size: 1.75rem;
  }
  
  .aside-c689 {
    order: -1;
    max-width: 100%;
  }
  
  .under-0c66 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .row_efd7 {
    font-size: 1.5rem;
  }
  
  .main_last_0d0b {
    font-size: 1rem;
  }
  
  .carousel-clean-9eb2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .under-0c66 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.backdrop-tall-c6e4 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.lite-9a37 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

.list-cool-397c:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture_thick_20c1 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) {
  .nav_e610 {
    grid-template-columns: 1fr;
  }
  
  .short_77c5 {
    font-size: 1.75rem;
  }
  
  .summary_fbb4 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.white_1bfa {
  flex-shrink: 0;
}

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

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

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

.box_d403,
.green-b815,
.logo_831c {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.box_d403 thead,
.green-b815 thead {
  background: var(--color-primary);
  color: white;
}

.box_d403 th,
.box_d403 td,
.green-b815 th,
.green-b815 td,
.logo_831c th,
.logo_831c td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .box_d403 th,
  .box_d403 td,
  .green-b815 th,
  .green-b815 td,
  .logo_831c th,
  .logo_831c td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .box_d403,
  .green-b815,
  .logo_831c {
    min-width: 600px;
  }
}

.box_d403 th,
.green-b815 th,
.logo_831c th {
  font-weight: 600;
}

.box_d403 tbody tr:hover,
.green-b815 tbody tr:hover,
.logo_831c tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.component_c8f4 h4 {
  color: white;
}

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

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

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

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

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

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

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

.input-active-d0d3:hover {
  text-decoration: underline;
}

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

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

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

.paragraph-b015 {
  font-weight: 600;
  color: white;
}

.hard-ef88 {
  list-style: none;
  padding: 0;
}

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

.footer-b572 {
  color: #4caf50;
}

.steel_c321 {
  color: #ff9800;
}

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

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

.sort-brown-5a39 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.plasma-84c3 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-middle-ecd9 .article-618d {
  width: 100%;
  background: white;
}

.secondary_a416 .article-618d {
  color: #667eea;
}

.upper_74f3 .article-618d {
  color: #f5576c;
}

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

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

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

.frame-pro-fc40 {
  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);
}

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

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

@media (max-width: 768px) {
  .rough_6541 {
    padding: var(--space-md);
  }
  
  .badge_top_055a {
    padding: var(--space-md);
  }
  
  .form-soft-506e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.form-soft-506e {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.wide-fff1,
.dim_9956,
.overlay_first_2931,
.item-white-ce2e {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.hero-under-2b28 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.orange-0f1e:hover {
  background: var(--color-primary-dark);
}

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

.sidebar-cool-e584 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.secondary_new_15b9 .panel_silver_7b31 {
  background: #e8f5e9;
  color: var(--color-success);
}

.thumbnail_537a .panel_silver_7b31 {
  background: #fff3e0;
  color: var(--color-warning);
}

.text-pressed-12db h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

.paragraph-down-33dd {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

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

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

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

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

@media (max-width: 768px) {
  .layout-gold-622f {
    grid-template-columns: 1fr;
  }
}

.button-2d06 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

.secondary-advanced-8fc4 {
  margin-top: var(--space-xxl);
}

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

.avatar-8cf3 {
  text-align: center;
}

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

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

.title_9229 .paragraph-b015 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-black-05a4 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.new-e03c {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.module_cbaf {
  text-align: right;
}

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

.breadcrumb-bottom-4fe2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.highlight-9285 {
  background: #e3f2fd;
  color: #1565c0;
}

.pagination-cool-5670 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.heading-next-fdf3 {
  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);
}

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

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

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

.badge-wide-3a33 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

.hard-40d8 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.notice-copper-0ac8,
.layout_bff0 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.notice-copper-0ac8 h4,
.layout_bff0 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.notice-copper-0ac8 ul,
.layout_bff0 ul {
  list-style: none;
  padding: 0;
}

.notice-copper-0ac8 li,
.layout_bff0 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.alert-active-a727 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.row_dirty_eef7 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clean_cc3e a:hover {
  color: white;
}

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

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

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

.picture-5b3e {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.picture-5b3e a:hover {
  color: white;
}

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

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

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

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

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

.tiny-71ff .nav_e6b5 {
  color: #4caf50;
  font-size: 0.875rem;
}

.icon-middle-6fc7 {
  list-style: none;
  padding: 0;
}

.icon-middle-6fc7 li {
  margin-bottom: var(--space-xs);
}

.icon-middle-6fc7 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.icon-middle-6fc7 a:hover {
  color: white;
}

.sidebar-9e40 {
  list-style: none;
  padding: 0;
}

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

.sidebar-9e40 a {
  color: #b0b0b0;
  text-decoration: none;
}

.sidebar-9e40 a:hover {
  color: white;
}

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

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

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

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

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

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

.overlay-smooth-ea0f 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;
}

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

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

@media (max-width: 768px) {
  .widget_large_a4b0 {
    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;
  }
  
  .row_efd7 {
    font-size: 2rem;
  }
  
  .short_77c5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .surface-motion-61b3,
  .nav_e610 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sort_stale_1311,
  .next_0006,
  .green_493d,
  .layout-gold-622f,
  .carousel_right_3a4a,
  .north_7eef,
  .message_hard_6fca,
  .dynamic-99b5,
  .focus_a91b {
    grid-template-columns: 1fr;
  }
  
  .tag_618d {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sort_f941 {
    padding: var(--space-lg) 0;
  }
  
  .slider_glass_cfb7 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .slider_glass_cfb7 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .article-618d {
    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;
  }
  
  .tag_618d {
    grid-template-columns: 1fr;
  }
  
  .column_5af5,
  .border_down_35d0,
  .pagination-short-664e {
    flex-direction: column;
    width: 100%;
  }
  
  .backdrop-tall-c6e4,
  .lite-9a37,
  .column_5af5 .article-618d,
  .border_down_35d0 .article-618d {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .row_efd7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .short_77c5 {
    font-size: 1.375rem;
  }
  
  .banner_cf0b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list-cool-397c,
  .short-55ea,
  .last-218c,
  .popup-east-74c7,
  .primary_up_80c6 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .info-5629 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fresh-8904 {
    gap: var(--space-xs);
  }
  
  .silver_47d7 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .thumbnail_3af1 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .title_9229 {
    width: 150px;
    height: 150px;
  }
  
  .surface_last_3981 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .bronze-0f39,
  .container-c66c,
  .column_5af5,
  .detail_6184,
  .breadcrumb-gold-3b05,
  .outline-solid-e856,
  .search-plasma-573f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sort_f941 {
    page-break-inside: avoid;
  }
}

/* css-noise: b95b */
.promo-block-b9 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
