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

.active_silver_bb16:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fixed-7f13,
header,
.aside_tall_586c,
.right-4e48,
.accent-b381,
.selected-65e3,
.slow-ff9f,
.huge-3876,
.image_125e {
  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
   ============================================ */
.fixed-7f13 {
  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);
}

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

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

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

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

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

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

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

.wrapper_north_033b {
  flex: 1;
}

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

.image-complex-7e66 {
  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);
}

.image-complex-7e66:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.image-complex-7e66.fn-active-f190 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.first-fa68 {
  position: relative;
}

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

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

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

.box-active-e306 {
  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;
}

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

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

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

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

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

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

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

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

.in_6e49 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .wrapper_north_033b::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .wrapper_north_033b.over_8786 {
    display: block;
    right: 0;
  }
  
  .badge-9c53 {
    flex-direction: column;
    gap: 0;
  }
  
  .image-complex-7e66 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .wrapper_north_033b::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;
  }
  
  .wrapper_north_033b.over_8786::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .wrapper_north_033b {
    display: none;
  }
  
  .message_new_b9da {
    display: flex;
  }
  
  .title_pro_4368 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .in_6e49,
  .filter_out_4985 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .first-fa68 {
    position: relative;
  }
  
  .box-active-e306 {
    position: static; /* 移动端不浮动，直接堆叠 */
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
    margin-top: 0;
    /* 用 max-height 过渡实现自然展开/收起，而不是生硬的 display 切换 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .popup-glass-cc3f[aria-expanded="true"] + .box-active-e306 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .link_next_e3c6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .wrapper_motion_03cb {
    gap: 8px;
  }
  
  .in_6e49 {
    display: none;
  }
  
  .filter_out_4985 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .steel_f686 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.media_9763 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pattern_basic_d13c {
    grid-template-columns: 1fr;
  }
  
  .detail-motion-ab58 {
    font-size: 1.75rem;
  }
  
  .caption_yellow_2401 {
    order: -1;
    max-width: 100%;
  }
  
  .texture_9f47 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail-motion-ab58 {
    font-size: 1.5rem;
  }
  
  .primary_east_030d {
    font-size: 1rem;
  }
  
  .hidden_9069 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .texture_9f47 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.rough-acab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.huge-faa6 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;
}

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

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

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

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

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

.input-55b3 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-e613 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.filter-e613 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) {
  .caption-black-02ba {
    grid-template-columns: 1fr;
  }
  
  .input-55b3 {
    font-size: 1.75rem;
  }
  
  .gallery_f41d {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .input-55b3 {
    font-size: 1.5rem;
  }
  
  .gallery_f41d h3 {
    font-size: 1.375rem;
  }
  
  .gallery_f41d h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.section_active_4b9c {
  flex-shrink: 0;
}

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

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

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

.box-brown-2cc3,
.under-44f6,
.large_507d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.box-brown-2cc3 thead,
.under-44f6 thead {
  background: var(--color-primary);
  color: white;
}

.box-brown-2cc3 th,
.box-brown-2cc3 td,
.under-44f6 th,
.under-44f6 td,
.large_507d th,
.large_507d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .box-brown-2cc3 th,
  .box-brown-2cc3 td,
  .under-44f6 th,
  .under-44f6 td,
  .large_507d th,
  .large_507d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .box-brown-2cc3,
  .under-44f6,
  .large_507d {
    min-width: 600px;
  }
}

.box-brown-2cc3 th,
.under-44f6 th,
.large_507d th {
  font-weight: 600;
}

.box-brown-2cc3 tbody tr:hover,
.under-44f6 tbody tr:hover,
.large_507d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.red_c90a h4 {
  color: white;
}

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

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

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

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

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

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

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

.hidden-active-7dca:hover {
  text-decoration: underline;
}

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

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

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

.border-7244 {
  font-weight: 600;
  color: white;
}

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

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

.item_6bf1 {
  color: #4caf50;
}

.lite-15c7 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.block-pressed-6324 .rough-acab {
  width: 100%;
  background: white;
}

.list-55a1 .rough-acab {
  color: #667eea;
}

.background_red_d311 .rough-acab {
  color: #f5576c;
}

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

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

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

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

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

.panel-mini-dddc {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .surface_silver_e700 {
    padding: var(--space-md);
  }
  
  .panel-mini-dddc {
    padding: var(--space-md);
  }
  
  .shade_67ea {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.item_fd23,
.form_advanced_df35,
.icon_cold_ca35,
.widget_9b4d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-slow-2e58 {
  border-color: var(--color-warning);
}

.tooltip-0f4a {
  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);
}

.focused_8be9 .tooltip-0f4a {
  background: #e8f5e9;
  color: var(--color-success);
}

.filter-slow-2e58 .tooltip-0f4a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pattern-dab7 {
  text-align: center;
}

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

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

.info_down_9610 .border-7244 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.notification-40fd {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.element-down-f00f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.wrapper-11a9 {
  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;
}

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

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

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

.widget_9e1a {
  text-align: right;
}

.widget_9e1a .form-upper-6178 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.progress-slow-3960 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.bronze-30af {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.steel-828b {
  background: #fff3e0;
  color: #e65100;
}

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

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

.list-inner-460e {
  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);
}

.list-inner-460e:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

.pattern-dim-274a strong {
  color: var(--color-primary);
}

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

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

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

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

.fluid-38a5 {
  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);
}

.fluid-38a5:hover {
  background: var(--color-bg-alt);
}

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

.fluid-38a5[aria-expanded="true"] .icon_c9f2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow-8e22,
.hovered-88fd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.yellow-8e22 h4,
.hovered-88fd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.yellow-8e22 ul,
.hovered-88fd ul {
  list-style: none;
  padding: 0;
}

.yellow-8e22 li,
.hovered-88fd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gradient-dim-bbfe {
  font-style: italic;
}

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

.paragraph-68ed {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-selected-1be9 {
  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_light_bfe8 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

.thumbnail-8b80 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thumbnail-8b80 li {
  margin-bottom: var(--space-xs);
}

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

.thumbnail-8b80 a:hover {
  color: white;
}

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

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

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

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

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

.active_5d83 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .gallery-selected-1be9,
  .table_light_bfe8 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

.feature-bottom-88f2 {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.feature-bottom-88f2 .texture_486d {
  color: #4caf50;
  font-size: 0.875rem;
}

.header-red-9cdc {
  list-style: none;
  padding: 0;
}

.header-red-9cdc li {
  margin-bottom: var(--space-xs);
}

.header-red-9cdc a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.header-red-9cdc a:hover {
  color: white;
}

.highlight-7e26 {
  list-style: none;
  padding: 0;
}

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

.highlight-7e26 a {
  color: #b0b0b0;
  text-decoration: none;
}

.highlight-7e26 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .module_prev_d388 {
    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;
  }
  
  .detail-motion-ab58 {
    font-size: 2rem;
  }
  
  .input-55b3 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pattern_basic_d13c,
  .caption-black-02ba {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .menu-1d0f,
  .easy_0b21,
  .lower_e8d5,
  .right_d990,
  .solid_b152,
  .shadow_small_6a18,
  .cold_fa0f,
  .gallery-selected-1be9,
  .table_light_bfe8 {
    grid-template-columns: 1fr;
  }
  
  .menu-south-c812 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .slow-ff9f {
    padding: var(--space-lg) 0;
  }
  
  .huge-faa6 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .huge-faa6 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .rough-acab {
    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;
  }
  
  .menu-south-c812 {
    grid-template-columns: 1fr;
  }
  
  .focused-9944,
  .dropdown_advanced_c5a0,
  .old-e451 {
    flex-direction: column;
    width: 100%;
  }
  
  .accent-a735,
  .glass-a684,
  .focused-9944 .rough-acab,
  .dropdown_advanced_c5a0 .rough-acab {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail-motion-ab58 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .input-55b3 {
    font-size: 1.375rem;
  }
  
  .tiny-4c2f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .table-508a,
  .fixed-0fff,
  .selected-08ba,
  .header-fluid-522f,
  .left-c14e {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .first_710d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .paragraph_b91c {
    gap: var(--space-xs);
  }
  
  .media_9763 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .stale-423c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info_down_9610 {
    width: 150px;
    height: 150px;
  }
  
  .progress-e6ba {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fixed-7f13,
  .aside_tall_586c,
  .focused-9944,
  .paragraph-68ed,
  .huge-3876,
  .image_125e,
  .message_new_b9da {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .slow-ff9f {
    page-break-inside: avoid;
  }
}

/* css-noise: 117d */
.shadow-element-s2 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
