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

.fixed-9051:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.notification_green_6084,
header,
.module_f4c2,
.pagination-cold-04a0,
.footer-76b5,
.prev-a937,
.picture-4a05,
.message-out-6dd8,
.accordion-bda7 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.primary-prev-0d75 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.fixed-85ff img {
  height: 36px;
  width: auto;
  display: block;
}

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

.photo-out-0105 {
  flex: 1;
}

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

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

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

.border-e873.clean-faa8 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.modal-hard-ec8b {
  position: relative;
}

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

.right-077a svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.cool-626a svg {
  flex-shrink: 0;
}

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

.content-616a: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);
}

.content-616a svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .photo-out-0105 {
    display: none;
  }
  
  .shadow_df56 {
    display: flex;
  }
  
  .gradient-3464 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .cool-626a,
  .content-616a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal-hard-ec8b {
    position: relative;
  }
  
  .overlay_full_abe5 {
    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;
  }
  
  .right-077a[aria-expanded="true"] + .overlay_full_abe5 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .selected_8d57 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .border-6801 {
    gap: 8px;
  }
  
  .cool-626a {
    display: none;
  }
  
  .content-616a {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .fixed-85ff img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.icon_smooth_cc88 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.avatar-blue-0bce a {
  color: var(--color-primary);
  text-decoration: none;
}

.avatar-blue-0bce a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.element-1d47 {
  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;
}

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

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

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

.item-tall-d57a {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .input-c58a {
    grid-template-columns: 1fr;
  }
  
  .pink_40af {
    font-size: 1.75rem;
  }
  
  .surface_e021 {
    order: -1;
    max-width: 100%;
  }
  
  .wood_3910 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .pink_40af {
    font-size: 1.5rem;
  }
  
  .detail-36c2 {
    font-size: 1rem;
  }
  
  .avatar-blue-0bce {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .wood_3910 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.tertiary-rough-05bd {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.east-01bf {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-dynamic-7ca1 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-5931 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) {
  .section_center_8478 {
    grid-template-columns: 1fr;
  }
  
  .card_dim_2317 {
    font-size: 1.75rem;
  }
  
  .carousel_down_5045 {
    max-width: 100%;
  }
}

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

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

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

.texture-yellow-7f24 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

.link-bright-b47b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.component_83a9 {
  flex-shrink: 0;
}

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

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

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

.layout-upper-f947,
.light-b50d,
.tertiary_3ec1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.layout-upper-f947 thead,
.light-b50d thead {
  background: var(--color-primary);
  color: white;
}

.layout-upper-f947 th,
.layout-upper-f947 td,
.light-b50d th,
.light-b50d td,
.tertiary_3ec1 th,
.tertiary_3ec1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .layout-upper-f947 th,
  .layout-upper-f947 td,
  .light-b50d th,
  .light-b50d td,
  .tertiary_3ec1 th,
  .tertiary_3ec1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .layout-upper-f947,
  .light-b50d,
  .tertiary_3ec1 {
    min-width: 600px;
  }
}

.layout-upper-f947 th,
.light-b50d th,
.tertiary_3ec1 th {
  font-weight: 600;
}

.layout-upper-f947 tbody tr:hover,
.light-b50d tbody tr:hover,
.tertiary_3ec1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.picture_8250 h4 {
  color: white;
}

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

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

.shadow-dynamic-e427:last-child {
  border-bottom: none;
}

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

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

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

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

.black-0f08:hover {
  text-decoration: underline;
}

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

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

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

.hidden-dark-e47f {
  font-weight: 600;
  color: white;
}

.gradient-2ed2 {
  list-style: none;
  padding: 0;
}

.gradient-2ed2 li {
  padding: var(--space-xs) 0;
}

.component_stone_f05a {
  color: #4caf50;
}

.accordion-4a5d {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.alert-paper-ea60 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-3925 ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

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

.hidden-3925 .large_9673 {
  width: 100%;
  background: white;
}

.yellow-ad3a .large_9673 {
  color: #667eea;
}

.bright_16ff .large_9673 {
  color: #f5576c;
}

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

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

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

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

.tag-top-577f h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .tag-top-577f {
    padding: var(--space-md);
  }
  
  .upper-e637 {
    padding: var(--space-md);
  }
  
  .menu-465b {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.shade-46b3 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.clean_4035,
.aside-8b76,
.huge-7108,
.current_6aa8 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.current_c7eb .pressed-ebb6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.module_basic_a625 .pressed-ebb6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-d722 {
  text-align: center;
}

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

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

.lower_97b2 .hidden-dark-e47f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.message-mini-a61e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.item-1439 {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.video-0372 {
  text-align: right;
}

.video-0372 .tertiary_down_216d {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.widget-lite-99d5 {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.photo-59fd {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

.pagination-dark-1c57 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

.pagination-5320[aria-expanded="true"] .nav_9207 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-lite-3282,
.white-65f9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.logo-lite-3282 h4,
.white-65f9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.logo-lite-3282 ul,
.white-65f9 ul {
  list-style: none;
  padding: 0;
}

.logo-lite-3282 li,
.white-65f9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-fd87 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-2a42 .icon_mini_2a13 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.avatar_c7ee a:hover {
  color: white;
}

.card-hot-a2e4 {
  list-style: none;
  padding: 0;
}

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

.card-hot-a2e4 a {
  color: #b0b0b0;
  text-decoration: none;
}

.card-hot-a2e4 a:hover {
  color: white;
}

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

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

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

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

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

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

.pagination-0543:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .stale-e306 {
    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;
  }
  
  .pink_40af {
    font-size: 2rem;
  }
  
  .card_dim_2317 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .input-c58a,
  .section_center_8478 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search-32a8,
  .gas_ead7,
  .filter_4bc2,
  .alert_136e,
  .sidebar_stale_8632,
  .easy-5ccd,
  .orange_f05c,
  .hover_1f39 {
    grid-template-columns: 1fr;
  }
  
  .component-bright-e364 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .picture-4a05 {
    padding: var(--space-lg) 0;
  }
  
  .dark_733e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dark_733e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .large_9673 {
    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;
  }
  
  .component-bright-e364 {
    grid-template-columns: 1fr;
  }
  
  .item-tall-d57a,
  .highlight_down_f1e0,
  .video-3a06 {
    flex-direction: column;
    width: 100%;
  }
  
  .tertiary-rough-05bd,
  .east-01bf,
  .item-tall-d57a .large_9673,
  .highlight_down_f1e0 .large_9673 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .pink_40af {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .card_dim_2317 {
    font-size: 1.375rem;
  }
  
  .list_fresh_963c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .wrapper-hard-eae6,
  .modal_7807,
  .dynamic-40dd,
  .module-dim-9c38,
  .popup-256e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay_west_fe37 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .current_7d47 {
    gap: var(--space-xs);
  }
  
  .icon_smooth_cc88 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hidden_iron_fccd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .lower_97b2 {
    width: 150px;
    height: 150px;
  }
  
  .yellow_8aa4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .notification_green_6084,
  .module_f4c2,
  .item-tall-d57a,
  .breadcrumb_7f48,
  .message-out-6dd8,
  .accordion-bda7,
  .shadow_df56 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .picture-4a05 {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.new_bcb7 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: a6cc */
.promo-block-e0 {
  padding: 0.3rem;
  font-size: 11px;
  line-height: 1.0;
}
