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

.wide-0c0d:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.over_b667,
header,
.small-0ca5,
.element-white-39bf,
.action-5d48,
.inner_23e7,
.dark_26db,
.motion_f013,
.texture_west_0fd3 {
  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
   ============================================ */
.over_b667 {
  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);
}

.tall-479d {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.gas-872e {
  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;
}

.fast_47b5 {
  flex: 1;
}

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

.top-4e43 {
  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);
}

.top-4e43:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.top-4e43.fn-active-c9b4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.south-405e {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.active_red_aad2 svg {
  flex-shrink: 0;
}

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

.down-43f7: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);
}

.down-43f7 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .fast_47b5::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .fast_47b5.icon-full-6db7 {
    display: block;
    right: 0;
  }
  
  .small_5bdb {
    flex-direction: column;
    gap: 0;
  }
  
  .top-4e43 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .fast_47b5::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;
  }
  
  .fast_47b5.icon-full-6db7::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .fast_47b5 {
    display: none;
  }
  
  .alert_8197 {
    display: flex;
  }
  
  .gas-872e {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .active_red_aad2,
  .down-43f7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .south-405e {
    position: relative;
  }
  
  .focus_7b82 {
    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;
  }
  
  .next_c9bc[aria-expanded="true"] + .focus_7b82 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .container_gold_61f9 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .component_dirty_eb6a {
    gap: 8px;
  }
  
  .active_red_aad2 {
    display: none;
  }
  
  .down-43f7 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .message_b112 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.brown_4230 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.surface-focused-ebbc {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.text-4dd7 {
  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;
}

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

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

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

.summary-3ad5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.modal-gold-007d {
  display: flex;
  align-items: center;
  justify-content: center;
}

.last-2fc1 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .green-3ae8 {
    grid-template-columns: 1fr;
  }
  
  .highlight_0c5b {
    font-size: 1.75rem;
  }
  
  .modal-gold-007d {
    order: -1;
    max-width: 100%;
  }
  
  .last-2fc1 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .highlight_0c5b {
    font-size: 1.5rem;
  }
  
  .top_0469 {
    font-size: 1rem;
  }
  
  .selected-5804 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .last-2fc1 {
    max-width: 250px;
  }
}

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

.video-pink-b2ad {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.detail-974d {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.smooth-1d88 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.smooth-1d88 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);
}

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

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

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

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

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

.smooth-1d88 strong {
  font-weight: 600;
  color: var(--color-text);
}

.smooth-1d88 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.smooth-1d88 a:hover {
  color: var(--color-primary-dark);
}

.button-wood-42dd {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.button-wood-42dd 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) {
  .hot-2ebc {
    grid-template-columns: 1fr;
  }
  
  .pink-b6d0 {
    font-size: 1.75rem;
  }
  
  .smooth-1d88 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .pink-b6d0 {
    font-size: 1.5rem;
  }
  
  .smooth-1d88 h3 {
    font-size: 1.375rem;
  }
  
  .smooth-1d88 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.fixed-aceb {
  flex-shrink: 0;
}

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

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

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

.thick-fe57,
.active-0e0d,
.picture_6e84 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.thick-fe57 thead,
.active-0e0d thead {
  background: var(--color-primary);
  color: white;
}

.thick-fe57 th,
.thick-fe57 td,
.active-0e0d th,
.active-0e0d td,
.picture_6e84 th,
.picture_6e84 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .thick-fe57 th,
  .thick-fe57 td,
  .active-0e0d th,
  .active-0e0d td,
  .picture_6e84 th,
  .picture_6e84 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .thick-fe57,
  .active-0e0d,
  .picture_6e84 {
    min-width: 600px;
  }
}

.thick-fe57 th,
.active-0e0d th,
.picture_6e84 th {
  font-weight: 600;
}

.thick-fe57 tbody tr:hover,
.active-0e0d tbody tr:hover,
.picture_6e84 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.background-f9f6 h4 {
  color: white;
}

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

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

.iron-98c8:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

.hot-76dd {
  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);
}

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

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

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

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

.accordion-acf2 {
  color: #4caf50;
}

.slider_basic_279b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.picture-left-7f77 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.form_gold_712e .nav_dynamic_b38e {
  width: 100%;
  background: white;
}

.last-16ee .nav_dynamic_b38e {
  color: #667eea;
}

.sidebar-c9ff .nav_dynamic_b38e {
  color: #f5576c;
}

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

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

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

.wrapper-9b87 {
  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);
}

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

.caption-8c0f {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .breadcrumb_50d4 {
    padding: var(--space-md);
  }
  
  .caption-8c0f {
    padding: var(--space-md);
  }
  
  .item-48d7 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.texture-7775,
.backdrop-2f25,
.border-top-330f,
.simple-c987 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.sort-warm-4597 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.picture-5fd5 {
  border-color: var(--color-warning);
}

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

.secondary_tiny_11a9 .slow_28e5 {
  background: #e8f5e9;
  color: var(--color-success);
}

.picture-5fd5 .slow_28e5 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tall-6c82 {
  text-align: center;
}

.photo-large-b372 {
  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);
}

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

.photo-large-b372 .white-c5e0 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.chip-5a53 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

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

.widget-slow-7a19 {
  height: 12px;
  background: var(--color-border-light);
  border-radius: 6px;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

.badge_down_1351 {
  text-align: right;
}

.badge_down_1351 .component-1762 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.detail-cold-3658 {
  background: #e8f5e9;
  color: #2e7d32;
}

.feature-huge-7fd9 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

.primary-middle-5e60 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

.form-upper-5010 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.summary_ab52[aria-expanded="true"] .form-upper-5010 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-blue-85ba,
.panel_3148 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-blue-85ba h4,
.panel_3148 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.gallery-blue-85ba ul,
.panel_3148 ul {
  list-style: none;
  padding: 0;
}

.gallery-blue-85ba li,
.panel_3148 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.photo-347c {
  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);
}

.component_375e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.slider-mini-be1e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.thumbnail_bottom_7b12 a:hover {
  color: white;
}

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

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

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

.table-91d9 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.table-91d9 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .section-3bfb,
  .table_south_6487 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.rough-1602 .fast-b5fb {
  color: #4caf50;
  font-size: 0.875rem;
}

.link-bdc1 {
  list-style: none;
  padding: 0;
}

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

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

.link-bdc1 a:hover {
  color: white;
}

.over-0042 {
  list-style: none;
  padding: 0;
}

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

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

.over-0042 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

.hard-135e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .slow-6627 {
    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;
  }
  
  .highlight_0c5b {
    font-size: 2rem;
  }
  
  .pink-b6d0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .green-3ae8,
  .hot-2ebc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .out_ad41,
  .overlay-278e,
  .yellow-bc1a,
  .fast_31d0,
  .item-e9e1,
  .dim-6f2f,
  .action_adc7,
  .section-3bfb,
  .table_south_6487 {
    grid-template-columns: 1fr;
  }
  
  .top-c35c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .dark_26db {
    padding: var(--space-lg) 0;
  }
  
  .status_0840 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .status_0840 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .nav_dynamic_b38e {
    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;
  }
  
  .top-c35c {
    grid-template-columns: 1fr;
  }
  
  .summary-3ad5,
  .border-orange-ea15,
  .video-iron-e7bd {
    flex-direction: column;
    width: 100%;
  }
  
  .thumbnail_784f,
  .thumbnail_bf08,
  .summary-3ad5 .nav_dynamic_b38e,
  .border-orange-ea15 .nav_dynamic_b38e {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .highlight_0c5b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pink-b6d0 {
    font-size: 1.375rem;
  }
  
  .text_0800 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .down-7cb2,
  .tabs_9962,
  .hero-green-a81c,
  .caption-2270,
  .bronze_0d25 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .hover_dark_f39a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .outline-full-c3e2 {
    gap: var(--space-xs);
  }
  
  .brown_4230 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .hot-76dd {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .photo-large-b372 {
    width: 150px;
    height: 150px;
  }
  
  .notification_silver_fb30 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .over_b667,
  .small-0ca5,
  .summary-3ad5,
  .wide-8049,
  .motion_f013,
  .texture_west_0fd3,
  .alert_8197 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .dark_26db {
    page-break-inside: avoid;
  }
}

/* css-noise: e1e5 */
.shadow-element-h4 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}
