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

.detail-center-be48:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.search-west-44be,
header,
.status_north_db9a,
.content_bec0,
.text_clean_889d,
.gallery_9cbb,
.shadow_in_6e0c,
.sort-ad7c,
.image_186c {
  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
   ============================================ */
.search-west-44be {
  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);
}

.pagination-04b1 {
  animation: slideDown 0.3s ease-out;
}

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

/* Scrolled state */
.search-west-44be.steel-9456 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.short-ab88 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.nav-bronze-879b {
  flex: 1;
}

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

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

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

.steel_9bee.fn-active-3529 {
  background: var(--color-primary);
  color: white;
}

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

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

.video-bright-3fdb svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.thumbnail-wood-09d4 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.logo-b1f9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.container-07eb[aria-expanded="true"] .warm-180a:nth-child(2) {
  opacity: 0;
}

.container-07eb[aria-expanded="true"] .warm-180a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .nav-bronze-879b {
    display: none;
  }
  
  .container-07eb {
    display: flex;
  }
  
  .filter_upper_1492 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .logo-b1f9,
  .notice_warm_904c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .tiny_7e32 {
    position: relative;
  }
  
  .tall-ac61 {
    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;
  }
  
  .video-bright-3fdb[aria-expanded="true"] + .tall-ac61 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .secondary-pink-58c5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .thumbnail-wood-09d4 {
    gap: 8px;
  }
  
  .logo-b1f9 {
    display: none;
  }
  
  .notice_warm_904c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .short-ab88 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.cool_bbbd svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.selected-69d1 a {
  color: var(--color-primary);
  text-decoration: none;
}

.selected-69d1 a:hover {
  text-decoration: underline;
}

.table-glass-2191 {
  color: var(--color-text-lighter);
}

.info-hard-323e {
  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) {
  .info-hard-323e {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .info-hard-323e {
    font-size: 1.5rem;
  }
}

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

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

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

.left-84bb {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .border-tall-9b85 {
    grid-template-columns: 1fr;
  }
  
  .info-hard-323e {
    font-size: 1.75rem;
  }
  
  .hover_tall_82de {
    order: -1;
    max-width: 100%;
  }
  
  .tag_c505 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .info-hard-323e {
    font-size: 1.5rem;
  }
  
  .form_top_6b7a {
    font-size: 1rem;
  }
  
  .selected-69d1 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .tag_c505 {
    max-width: 250px;
  }
}

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

.form-5cd1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.stale-79fa {
  background: var(--color-bg-section);
}

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

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

.form-73de {
  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);
}

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

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

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

.text-copper-6b10 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.text-copper-6b10 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-copper-6b10 pre,
.text-copper-6b10 code {
  overflow-x: auto;
  max-width: 100%;
}

.text-copper-6b10 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);
}

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

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

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

.text-copper-6b10 ul,
.text-copper-6b10 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

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

.text-copper-6b10 strong {
  font-weight: 600;
  color: var(--color-text);
}

.text-copper-6b10 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.text-copper-6b10 a:hover {
  color: var(--color-primary-dark);
}

.button-8bcb {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.button-8bcb 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) {
  .highlight_f1cf {
    grid-template-columns: 1fr;
  }
  
  .form-73de {
    font-size: 1.75rem;
  }
  
  .text-copper-6b10 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-73de {
    font-size: 1.5rem;
  }
  
  .text-copper-6b10 h3 {
    font-size: 1.375rem;
  }
  
  .text-copper-6b10 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.paragraph-b129 {
  flex-shrink: 0;
}

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

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

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

.plasma-f292,
.module_d74f,
.preview-out-60b3 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.plasma-f292 thead,
.module_d74f thead {
  background: var(--color-primary);
  color: white;
}

.plasma-f292 th,
.plasma-f292 td,
.module_d74f th,
.module_d74f td,
.preview-out-60b3 th,
.preview-out-60b3 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .plasma-f292 th,
  .plasma-f292 td,
  .module_d74f th,
  .module_d74f td,
  .preview-out-60b3 th,
  .preview-out-60b3 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .plasma-f292,
  .module_d74f,
  .preview-out-60b3 {
    min-width: 600px;
  }
}

.plasma-f292 th,
.module_d74f th,
.preview-out-60b3 th {
  font-weight: 600;
}

.plasma-f292 tbody tr:hover,
.module_d74f tbody tr:hover,
.preview-out-60b3 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.hover_5942 h4 {
  color: white;
}

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

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

.static-ba09:last-child {
  border-bottom: none;
}

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

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

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

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

.panel-over-c941:hover {
  text-decoration: underline;
}

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

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

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

.lite_da9f {
  font-weight: 600;
  color: white;
}

.large-2551 {
  list-style: none;
  padding: 0;
}

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

.old-6f43 {
  color: #4caf50;
}

.component-active-7871 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-09a4 {
  margin-top: var(--space-xxl);
}

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

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

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

.main-west-937f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.main-west-937f ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.main-west-937f li {
  padding: var(--space-xs) 0;
  color: white;
}

.main-west-937f .outer-65a4 {
  width: 100%;
  background: white;
}

.icon-85a5 .outer-65a4 {
  color: #667eea;
}

.shade_left_aac1 .outer-65a4 {
  color: #f5576c;
}

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

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

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

.aside-simple-e720 {
  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);
}

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

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

@media (max-width: 768px) {
  .thick_1a00 {
    padding: var(--space-md);
  }
  
  .label-c3f4 {
    padding: var(--space-md);
  }
  
  .pro-286b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.notice_07e2,
.notification-36e4,
.gold-69c0,
.info-large-49a4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.heading-west-8d51 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

.plasma-56a3 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.pagination-e1b2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.background_hot_80ec .pagination-e1b2 {
  background: #e8f5e9;
  color: var(--color-success);
}

.header_6c97 .pagination-e1b2 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

.modal-3aa4 {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.badge-down-b116 {
  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);
}

.photo-1cbc {
  text-align: center;
}

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

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

.list_narrow_fced .lite_da9f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.purple-4be6 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.label-f669 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.lite-6574 {
  text-align: right;
}

.lite-6574 .primary_997d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.footer-stale-374f {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

.input-865f {
  background: #e3f2fd;
  color: #1565c0;
}

.lite-7d5e {
  background: #fff3e0;
  color: #e65100;
}

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

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

.photo-green-99f1 {
  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);
}

.photo-green-99f1:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.tall-23ef {
  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);
}

.tall-23ef:hover {
  background: var(--color-bg-alt);
}

.icon-2dec {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tall-23ef[aria-expanded="true"] .icon-2dec {
  transform: rotate(180deg);
}

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

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

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

.lite-9dbe li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.banner_f88c,
.yellow-c34d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.banner_f88c h4,
.yellow-c34d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.banner_f88c ul,
.yellow-c34d ul {
  list-style: none;
  padding: 0;
}

.banner_f88c li,
.yellow-c34d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.tiny_5046 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.slow-2cc4 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.action_d64a a:hover {
  color: white;
}

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

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

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

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

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

.accordion_paper_a687 a:hover {
  color: white;
}

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

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

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

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

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

.last-7e07 .left-84bb {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.overlay_47a1 a:hover {
  color: white;
}

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

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

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

.label_last_2181 a:hover {
  color: white;
}

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

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

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

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

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

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

.chip-iron-757a 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;
}

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

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

@media (max-width: 768px) {
  .dim_28e0 {
    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;
  }
  
  .info-hard-323e {
    font-size: 2rem;
  }
  
  .form-73de {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .border-tall-9b85,
  .highlight_f1cf {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .preview-14c4,
  .accordion-400f,
  .active_b9b2,
  .solid-0f75,
  .center_3870,
  .cool_53f1,
  .rough_9b1b,
  .summary_78ba,
  .frame-focused-be60 {
    grid-template-columns: 1fr;
  }
  
  .center-8ef2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .shadow_in_6e0c {
    padding: var(--space-lg) 0;
  }
  
  .frame_upper_6964 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .frame_upper_6964 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .outer-65a4 {
    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;
  }
  
  .center-8ef2 {
    grid-template-columns: 1fr;
  }
  
  .description_083c,
  .paragraph_silver_164d,
  .medium-b5dc {
    flex-direction: column;
    width: 100%;
  }
  
  .static-0923,
  .liquid-6976,
  .description_083c .outer-65a4,
  .paragraph_silver_164d .outer-65a4 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .info-hard-323e {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .form-73de {
    font-size: 1.375rem;
  }
  
  .focus_3c91 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .dirty-3d6a,
  .filter-up-f255,
  .backdrop_3e86,
  .thumbnail_fc92,
  .filter_dynamic_15f3 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .status-0149 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .mini-25f1 {
    gap: var(--space-xs);
  }
  
  .cool_bbbd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .under-beef {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .list_narrow_fced {
    width: 150px;
    height: 150px;
  }
  
  .row-b146 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .search-west-44be,
  .status_north_db9a,
  .description_083c,
  .video_3568,
  .sort-ad7c,
  .image_186c,
  .container-07eb {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .shadow_in_6e0c {
    page-break-inside: avoid;
  }
}

/* css-noise: e77f */
.shadow-element-o5 {
  padding: 0.1rem;
  font-size: 13px;
  line-height: 1.1;
}
