/* ============================================
   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)
   ============================================ */
.section-first-14a7 {
  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;
}

.section-first-14a7:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.video_be90,
header,
.overlay_059a,
.gradient_b61c,
.disabled-9c6a,
.thumbnail-thick-3a6c,
.container-fe3b,
.complex_42af,
.frame_a24e {
  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_be90 {
  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);
}

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

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

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

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

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

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

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

.badge-lite-0e6b {
  flex: 1;
}

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

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

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

.background_solid_3f4d.fn-active-ed35 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.link-3e2e {
  position: relative;
}

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

.popup-a52d svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.header_a08b svg {
  flex-shrink: 0;
}

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

.fixed-28a1: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);
}

.fixed-28a1 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .badge-lite-0e6b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .badge-lite-0e6b.photo_white_4b85 {
    display: block;
    right: 0;
  }
  
  .filter-slow-1d9b {
    flex-direction: column;
    gap: 0;
  }
  
  .background_solid_3f4d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .badge-lite-0e6b::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;
  }
  
  .badge-lite-0e6b.photo_white_4b85::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .badge-lite-0e6b {
    display: none;
  }
  
  .thumbnail_under_4f1a {
    display: flex;
  }
  
  .copper_e6dc {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .header_a08b,
  .fixed-28a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .link-3e2e {
    position: relative;
  }
  
  .sort_ab14 {
    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;
  }
  
  .popup-a52d[aria-expanded="true"] + .sort_ab14 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .gallery_b3d4 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .easy_95e4 {
    gap: 8px;
  }
  
  .header_a08b {
    display: none;
  }
  
  .fixed-28a1 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .gallery_bed6 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .fixed-28a1 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .fixed-28a1 svg {
    width: 14px;
    height: 14px;
  }
  
  .hover-hard-b2f3 {
    gap: var(--space-sm);
  }
}

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

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

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

.gold_ecb4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.north-7b47 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.thumbnail-42c2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.thumbnail-42c2 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .modal_a941 {
    grid-template-columns: 1fr;
  }
  
  .warm-e294 {
    font-size: 1.75rem;
  }
  
  .main-2758 {
    order: -1;
    max-width: 100%;
  }
  
  .center-b49c {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .warm-e294 {
    font-size: 1.5rem;
  }
  
  .background_29b9 {
    font-size: 1rem;
  }
  
  .preview_64c3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .center-b49c {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.simple-4328 {
  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;
}

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

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

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

.table-93cc:hover {
  background: var(--color-primary);
  color: white;
}

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

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

.upper-8a99 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.alert-e52d 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) {
  .element-purple-dc69 {
    grid-template-columns: 1fr;
  }
  
  .search_white_ff4d {
    font-size: 1.75rem;
  }
  
  .sort_23c7 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.notification-6cdf {
  flex-shrink: 0;
}

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

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

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

.preview-370c,
.popup_hot_0b1f,
.secondary-under-2927 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.preview-370c thead,
.popup_hot_0b1f thead {
  background: var(--color-primary);
  color: white;
}

.preview-370c th,
.preview-370c td,
.popup_hot_0b1f th,
.popup_hot_0b1f td,
.secondary-under-2927 th,
.secondary-under-2927 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .preview-370c th,
  .preview-370c td,
  .popup_hot_0b1f th,
  .popup_hot_0b1f td,
  .secondary-under-2927 th,
  .secondary-under-2927 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .preview-370c,
  .popup_hot_0b1f,
  .secondary-under-2927 {
    min-width: 600px;
  }
}

.preview-370c th,
.popup_hot_0b1f th,
.secondary-under-2927 th {
  font-weight: 600;
}

.preview-370c tbody tr:hover,
.popup_hot_0b1f tbody tr:hover,
.secondary-under-2927 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.purple-98f1 h4 {
  color: white;
}

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

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

.red-7ddb:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.link-inner-5ef9 {
  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);
}

.link-inner-5ef9 span {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

.down-8380 {
  list-style: none;
  padding: 0;
}

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

.layout_191a {
  color: #4caf50;
}

.summary-up-add8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.media-huge-50d9 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

.light-46d5 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

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

.light-46d5 .simple-4328 {
  width: 100%;
  background: white;
}

.stone_40f5 .simple-4328 {
  color: #667eea;
}

.component_medium_bde1 .simple-4328 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .row_gas_f99d {
    padding: var(--space-md);
  }
  
  .gold_4cbb {
    padding: var(--space-md);
  }
  
  .sidebar-clean-2616 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.pagination-stale-a88b li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.glass-a3c2,
.avatar_clean_136c,
.aside_44fb,
.full-4869 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.list-gas-b6f9:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.hot_b704 .tall_86eb {
  background: #e8f5e9;
  color: var(--color-success);
}

.backdrop_860e .tall_86eb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.footer-24b2 {
  margin-top: var(--space-xxl);
}

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

.wrapper-ef2d {
  text-align: center;
}

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

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

.chip-8620 .component_narrow_2817 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.thumbnail-blue-b470 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.component-active-77dd {
  text-align: right;
}

.component-active-77dd .slow_4298 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.disabled-white-549c {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

.hard_9e99 {
  background: #e3f2fd;
  color: #1565c0;
}

.last-292e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-49b5 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.banner-fluid-310c {
  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);
}

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

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

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

.tabs-glass-7ac1,
.accent-dirty-8d86 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tabs-glass-7ac1 h4,
.accent-dirty-8d86 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tabs-glass-7ac1 ul,
.accent-dirty-8d86 ul {
  list-style: none;
  padding: 0;
}

.tabs-glass-7ac1 li,
.accent-dirty-8d86 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.solid-d041 {
  font-style: italic;
}

.icon-205b {
  display: block;
  margin-top: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.down_0e43 a:hover {
  color: white;
}

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

.texture-35a1 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);
}

.texture-35a1 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.light_c3bb a:hover {
  color: white;
}

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

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

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

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

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

.cold-857d .progress_bbcf {
  color: #4caf50;
  font-size: 0.875rem;
}

.purple-b01a {
  list-style: none;
  padding: 0;
}

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

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

.purple-b01a a:hover {
  color: white;
}

.wide-94d5 {
  list-style: none;
  padding: 0;
}

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

.wide-94d5 a {
  color: #b0b0b0;
  text-decoration: none;
}

.wide-94d5 a:hover {
  color: white;
}

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

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

.next-9b4e a {
  color: #4caf50;
  text-decoration: none;
}

.bronze-7d35 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.medium-9b4c 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;
}

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

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

@media (max-width: 768px) {
  .over_aecf {
    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;
  }
  
  .warm-e294 {
    font-size: 2rem;
  }
  
  .search_white_ff4d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .modal_a941,
  .element-purple-dc69 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .focused_9103,
  .picture-a6e1,
  .overlay_bronze_f1cd,
  .plasma_b3ee,
  .primary-stone-d5da,
  .shadow_5542,
  .next_0a12,
  .complex-d43b,
  .filter_dark_f5c8 {
    grid-template-columns: 1fr;
  }
  
  .button-over-3c35 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .container-fe3b {
    padding: var(--space-lg) 0;
  }
  
  .column_dynamic_72ae li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .column_dynamic_72ae li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .simple-4328 {
    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;
  }
  
  .button-over-3c35 {
    grid-template-columns: 1fr;
  }
  
  .grid_5254,
  .label-88ff,
  .bright-fbf8 {
    flex-direction: column;
    width: 100%;
  }
  
  .upper-8a99,
  .advanced-b8f3,
  .grid_5254 .simple-4328,
  .label-88ff .simple-4328 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .warm-e294 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search_white_ff4d {
    font-size: 1.375rem;
  }
  
  .thumbnail_781b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .disabled_fd5a,
  .focus-tiny-f12d,
  .slider_78cf,
  .column_9c2c,
  .block-14db {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .yellow_68b4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .left-1c9d {
    gap: var(--space-xs);
  }
  
  .gold_ecb4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .link-inner-5ef9 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .chip-8620 {
    width: 150px;
    height: 150px;
  }
  
  .tertiary-21f0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .video_be90,
  .overlay_059a,
  .grid_5254,
  .carousel_dc35,
  .complex_42af,
  .frame_a24e,
  .thumbnail_under_4f1a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container-fe3b {
    page-break-inside: avoid;
  }
}

/* css-noise: ea04 */
.promo-block-p8 {
  padding: 0.1rem;
  font-size: 10px;
  line-height: 1.2;
}
