/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.chip-26e0 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.chip-26e0:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .sort-next-5bb2 {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .sort-next-5bb2 {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.video-1fc3,
header,
.status_db62,
.hard_fdb2,
.tabs-7112,
.east_a7d5,
.module_9298,
.icon-plasma-d639,
.grid_copper_c768 {
  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
   ============================================ */
.video-1fc3 {
  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);
}

.wood-5efe {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.video-1fc3.current-1c4b {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.modal-6e04 img {
  height: 36px;
  width: auto;
  display: block;
}

.fast-9f06 {
  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;
}

.bronze-fb3e {
  flex: 1;
}

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

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

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

.blue_8e2c.fn-active-f27e {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.primary-bf5d {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.thumbnail-iron-254e {
  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;
}

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

.thumbnail-iron-254e svg {
  flex-shrink: 0;
}

/* Header Download Button */
.column-fast-dcbb {
  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-fast-dcbb: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-fast-dcbb svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.brown-07d1[aria-expanded="true"] .glass-48ad:nth-child(2) {
  opacity: 0;
}

.brown-07d1[aria-expanded="true"] .glass-48ad:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .bronze-fb3e {
    display: none;
  }
  
  .brown-07d1 {
    display: flex;
  }
  
  .fast-9f06 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .thumbnail-iron-254e,
  .column-fast-dcbb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .primary-bf5d {
    position: relative;
  }
  
  .action_049f {
    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;
  }
  
  .hidden_light_91a1[aria-expanded="true"] + .action_049f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel-be2e {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .pattern_cfb8 {
    gap: 8px;
  }
  
  .thumbnail-iron-254e {
    display: none;
  }
  
  .column-fast-dcbb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .modal-6e04 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.secondary-wood-e6d0 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.secondary-wood-e6d0 svg {
  flex-shrink: 0;
}

.secondary-wood-e6d0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.secondary-wood-e6d0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .gallery_yellow_c24f {
    grid-template-columns: 1fr;
  }
  
  .soft-f171 {
    font-size: 1.75rem;
  }
  
  .main_df7b {
    order: -1;
    max-width: 100%;
  }
  
  .solid_540e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .soft-f171 {
    font-size: 1.5rem;
  }
  
  .picture_7bf8 {
    font-size: 1rem;
  }
  
  .progress_f082 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .solid_540e {
    max-width: 250px;
  }
}

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

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

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

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

.aside-674c:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.panel-plasma-0f3a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-purple-6c3d {
  background: var(--color-bg-section);
}

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

.soft-2ee1 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-84bb {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.status-84bb 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) {
  .outline-583f {
    grid-template-columns: 1fr;
  }
  
  .element_advanced_85a2 {
    font-size: 1.75rem;
  }
  
  .hero_south_90db {
    max-width: 100%;
  }
}

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

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

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

.pattern-6bf8 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.purple-2f8e {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.wrapper_steel_3885 {
  flex-shrink: 0;
}

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

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

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

.filter-03ef,
.badge-a6d9,
.dark_1448 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.filter-03ef thead,
.badge-a6d9 thead {
  background: var(--color-primary);
  color: white;
}

.filter-03ef th,
.filter-03ef td,
.badge-a6d9 th,
.badge-a6d9 td,
.dark_1448 th,
.dark_1448 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .filter-03ef th,
  .filter-03ef td,
  .badge-a6d9 th,
  .badge-a6d9 td,
  .dark_1448 th,
  .dark_1448 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .filter-03ef,
  .badge-a6d9,
  .dark_1448 {
    min-width: 600px;
  }
}

.filter-03ef th,
.badge-a6d9 th,
.dark_1448 th {
  font-weight: 600;
}

.filter-03ef tbody tr:hover,
.badge-a6d9 tbody tr:hover,
.dark_1448 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.gold-d115 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.old-fd97 {
  font-weight: 600;
  color: white;
}

.primary-23df {
  list-style: none;
  padding: 0;
}

.primary-23df li {
  padding: var(--space-xs) 0;
}

.list-3870 {
  color: #4caf50;
}

.selected_74e9 {
  color: #ff9800;
}

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

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

.column-bright-4ebd {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

.paper-9fe7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-middle-374d .popup-5adb {
  width: 100%;
  background: white;
}

.heading_9bf9 .popup-5adb {
  color: #667eea;
}

.section_81b3 .popup-5adb {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .disabled_d4f3 {
    padding: var(--space-md);
  }
  
  .info_41ff {
    padding: var(--space-md);
  }
  
  .table_brown_54c4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.notification_8edc,
.search-gold-0f5d,
.component-3ec1,
.search_fast_bfad {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.stale-5eb9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.media-easy-5e08 {
  border-color: var(--color-warning);
}

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

.dropdown_blue_84a6 .active_wide_7f48 {
  background: #e8f5e9;
  color: var(--color-success);
}

.media-easy-5e08 .active_wide_7f48 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.purple-8687 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.upper_d796 {
  text-align: center;
}

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

.content-stale-98fa {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.sidebar_2734 .old-fd97 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.summary-west-0426 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-6a0b {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.filter-tiny-ba9b {
  text-align: right;
}

.filter-tiny-ba9b .middle_c979 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.stale-450c {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

.sort-pressed-90f7 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.hover_wood_347f[aria-expanded="true"] .module-4921 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active_826e ul,
.heading_west_6d8c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.block-static-201a {
  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);
}

.widget-eb07 {
  font-style: italic;
}

.chip-bright-8d0c {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-left-50e2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tooltip-left-50e2 li {
  margin-bottom: var(--space-xs);
}

.tooltip-left-50e2 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tooltip-left-50e2 a:hover {
  color: white;
}

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

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

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

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

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

.clean-b261 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .brown_f94e,
  .list-orange-63b2 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.active_green_bdd5 .gradient_f94b {
  color: #4caf50;
  font-size: 0.875rem;
}

.shade-ed54 {
  list-style: none;
  padding: 0;
}

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

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

.shade-ed54 a:hover {
  color: white;
}

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

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

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

.modal_fde2 a:hover {
  color: white;
}

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

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

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

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

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

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

.widget-0ce1 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;
}

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

.sidebar-pro-d789:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .light_b3d2 {
    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;
  }
  
  .soft-f171 {
    font-size: 2rem;
  }
  
  .element_advanced_85a2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .gallery_yellow_c24f,
  .outline-583f {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .slider-out-dbfe,
  .copper_760c,
  .white_de9b,
  .glass-f696,
  .photo-12f0,
  .sort_253c,
  .right-98d4,
  .brown_f94e,
  .list-orange-63b2 {
    grid-template-columns: 1fr;
  }
  
  .pro-5939 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .module_9298 {
    padding: var(--space-lg) 0;
  }
  
  .pressed_1c79 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .pressed_1c79 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .popup-5adb {
    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;
  }
  
  .pro-5939 {
    grid-template-columns: 1fr;
  }
  
  .caption_short_29ab,
  .banner_1603,
  .hover-341c {
    flex-direction: column;
    width: 100%;
  }
  
  .aside-f9e8,
  .panel-plasma-0f3a,
  .caption_short_29ab .popup-5adb,
  .banner_1603 .popup-5adb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .soft-f171 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .element_advanced_85a2 {
    font-size: 1.375rem;
  }
  
  .black-6c8b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .grid-19e7,
  .search_yellow_1af7,
  .shade-648e,
  .dirty_b6c5,
  .detail-upper-a406 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .red_5ccb {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .caption-24d3 {
    gap: var(--space-xs);
  }
  
  .secondary-wood-e6d0 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .gold_1e09 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sidebar_2734 {
    width: 150px;
    height: 150px;
  }
  
  .content-stale-98fa {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .video-1fc3,
  .status_db62,
  .caption_short_29ab,
  .sort_static_3063,
  .icon-plasma-d639,
  .grid_copper_c768,
  .brown-07d1 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .module_9298 {
    page-break-inside: avoid;
  }
}

/* css-noise: a034 */
.widget-item-t0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.1;
}
