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

.container-831b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.yellow-4cc7,
header,
.overlay-bottom-a985,
.paragraph-tall-0c2e,
.over_0430,
.tooltip-complex-545e,
.liquid_556f,
.link_bottom_0aa8,
.center-eb50 {
  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
   ============================================ */
.yellow-4cc7 {
  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);
}

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

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

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

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

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

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

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

.motion-5441 {
  flex: 1;
}

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

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

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

.mini_21f6.fn-active-88b5 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.shade-7568 {
  position: relative;
}

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

.hero-38bd svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.description-436d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.media-short-d072[aria-expanded="true"] .solid-387f:nth-child(2) {
  opacity: 0;
}

.media-short-d072[aria-expanded="true"] .solid-387f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .motion-5441::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .motion-5441.dirty_513c {
    display: block;
    right: 0;
  }
  
  .text-orange-0d86 {
    flex-direction: column;
    gap: 0;
  }
  
  .mini_21f6 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .motion-5441::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;
  }
  
  .motion-5441.dirty_513c::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .motion-5441 {
    display: none;
  }
  
  .media-short-d072 {
    display: flex;
  }
  
  .button-fb4b {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description-436d,
  .first-bb7c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .shade-7568 {
    position: relative;
  }
  
  .advanced-efca {
    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;
  }
  
  .hero-38bd[aria-expanded="true"] + .advanced-efca {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .blue-8d18 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .action-d5fd {
    gap: 8px;
  }
  
  .description-436d {
    display: none;
  }
  
  .first-bb7c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .article_tiny_be84 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.text-light-6ac8 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-light-6ac8 svg {
  flex-shrink: 0;
}

.text-light-6ac8 a {
  color: var(--color-primary);
  text-decoration: none;
}

.text-light-6ac8 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

.warm-bc44 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 1024px) {
  .warm-bc44 {
    font-size: 2rem;
  }
}

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

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

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

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

.modal-clean-5bf3 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.wide-7ed5 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.thumbnail-lite-8390 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .label-cece {
    grid-template-columns: 1fr;
  }
  
  .warm-bc44 {
    font-size: 1.75rem;
  }
  
  .selected_b4cf {
    order: -1;
    max-width: 100%;
  }
  
  .thumbnail-lite-8390 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .warm-bc44 {
    font-size: 1.5rem;
  }
  
  .bronze_f78d {
    font-size: 1rem;
  }
  
  .panel_0e9c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .thumbnail-lite-8390 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.info-pro-f729 {
  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);
}

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

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

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

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

.slider-purple-6a21 {
  max-width: 750px;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.slider-purple-6a21 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slider-purple-6a21 pre,
.slider-purple-6a21 code {
  overflow-x: auto;
  max-width: 100%;
}

.slider-purple-6a21 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);
}

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

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

.slider-purple-6a21 p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.slider-purple-6a21 ul,
.slider-purple-6a21 ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.slider-purple-6a21 li {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.slider-purple-6a21 strong {
  font-weight: 600;
  color: var(--color-text);
}

.slider-purple-6a21 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.slider-purple-6a21 a:hover {
  color: var(--color-primary-dark);
}

.layout-f2ce {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.layout-f2ce 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) {
  .description-medium-e57b {
    grid-template-columns: 1fr;
  }
  
  .complex_2697 {
    font-size: 1.75rem;
  }
  
  .slider-purple-6a21 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .complex_2697 {
    font-size: 1.5rem;
  }
  
  .slider-purple-6a21 h3 {
    font-size: 1.375rem;
  }
  
  .slider-purple-6a21 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.outline-bab2 {
  flex-shrink: 0;
}

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

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

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

.dropdown_e0c3,
.footer-7b43,
.column-90f8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dropdown_e0c3 thead,
.footer-7b43 thead {
  background: var(--color-primary);
  color: white;
}

.dropdown_e0c3 th,
.dropdown_e0c3 td,
.footer-7b43 th,
.footer-7b43 td,
.column-90f8 th,
.column-90f8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .dropdown_e0c3 th,
  .dropdown_e0c3 td,
  .footer-7b43 th,
  .footer-7b43 td,
  .column-90f8 th,
  .column-90f8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .dropdown_e0c3,
  .footer-7b43,
  .column-90f8 {
    min-width: 600px;
  }
}

.dropdown_e0c3 th,
.footer-7b43 th,
.column-90f8 th {
  font-weight: 600;
}

.dropdown_e0c3 tbody tr:hover,
.footer-7b43 tbody tr:hover,
.column-90f8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.accordion_8cdc h4 {
  color: white;
}

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

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

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

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

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

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

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

.cold-6457:hover {
  text-decoration: underline;
}

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

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

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

.notice-9a3c {
  font-weight: 600;
  color: white;
}

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

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

.tooltip-fresh-08bb {
  color: #4caf50;
}

.static-5977 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

.footer-small-7bb6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.footer-small-7bb6 p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip_3561 .silver-e49a {
  width: 100%;
  background: white;
}

.silver-2bdf .silver-e49a {
  color: #667eea;
}

.shade_middle_8abc .silver-e49a {
  color: #f5576c;
}

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

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

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

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

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

.border-simple-a01d {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .background_hovered_6fcb {
    padding: var(--space-md);
  }
  
  .border-simple-a01d {
    padding: var(--space-md);
  }
  
  .form-dirty-a8a5 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.paragraph_0591,
.slow_e93d,
.filter_117d,
.nav_6cea {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.item-inner-1046:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.pattern-864f {
  border-color: var(--color-success);
}

.modal-purple-4987 {
  border-color: var(--color-warning);
}

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

.pattern-864f .next_d8df {
  background: #e8f5e9;
  color: var(--color-success);
}

.modal-purple-4987 .next_d8df {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .highlight-top-4f3c {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

.gallery-focused-f979 {
  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);
}

.purple_4646 {
  text-align: center;
}

.badge-dim-1f7a {
  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);
}

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

.badge-dim-1f7a .notice-9a3c {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.bronze-7e2e {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline_0f8b {
  text-align: right;
}

.outline_0f8b .accordion-5d28 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.short-8b99 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.basic-d619 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-a7f2[aria-expanded="true"] .tooltip_up_5bf9 {
  transform: rotate(180deg);
}

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

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

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

.accordion-prev-4940 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.plasma-1fe7,
.hidden-active-7b68 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.plasma-1fe7 h4,
.hidden-active-7b68 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.plasma-1fe7 ul,
.hidden-active-7b68 ul {
  list-style: none;
  padding: 0;
}

.plasma-1fe7 li,
.hidden-active-7b68 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.text-3efa ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.rough_41c2 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.gallery-smooth-1cc9 {
  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);
}

.gallery-smooth-1cc9:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.gallery-smooth-1cc9 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

.gallery_medium_a6fe a:hover {
  color: white;
}

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

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

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

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

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

.wood_f871 a:hover {
  color: white;
}

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

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

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

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

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

.simple-eb8f .modal-clean-5bf3 {
  color: #4caf50;
  font-size: 0.875rem;
}

.hero-bottom-7d17 {
  list-style: none;
  padding: 0;
}

.hero-bottom-7d17 li {
  margin-bottom: var(--space-xs);
}

.hero-bottom-7d17 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.hero-bottom-7d17 a:hover {
  color: white;
}

.feature-dark-6664 {
  list-style: none;
  padding: 0;
}

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

.feature-dark-6664 a {
  color: #b0b0b0;
  text-decoration: none;
}

.feature-dark-6664 a:hover {
  color: white;
}

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

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

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

.modal-pink-8585 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.tiny-6f61 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;
}

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

.media-7d54:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .highlight_bright_10bf {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   24. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1200px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 968px) {
  :root {
    --space-xxl: 3rem;
  }
  
  .warm-bc44 {
    font-size: 2rem;
  }
  
  .complex_2697 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .label-cece,
  .description-medium-e57b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .accent-fd02,
  .wrapper_advanced_0678,
  .outer_d586,
  .highlight-top-4f3c,
  .out-9ae5,
  .sidebar-pink-cdbd,
  .list_south_35b2,
  .right-7491,
  .icon_6ee7 {
    grid-template-columns: 1fr;
  }
  
  .popup-last-e517 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .liquid_556f {
    padding: var(--space-lg) 0;
  }
  
  .down_b00c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .down_b00c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver-e49a {
    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;
  }
  
  .popup-last-e517 {
    grid-template-columns: 1fr;
  }
  
  .wide-7ed5,
  .row-d8c1,
  .banner_de9e {
    flex-direction: column;
    width: 100%;
  }
  
  .secondary_out_5cc1,
  .bottom-bde6,
  .wide-7ed5 .silver-e49a,
  .row-d8c1 .silver-e49a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .warm-bc44 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .complex_2697 {
    font-size: 1.375rem;
  }
  
  .thick-e1be {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .row_east_d744,
  .footer-small-7bb6,
  .form-prev-fce3,
  .new-dacc,
  .accordion-soft-8d09 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .fluid_c3e2 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .gas-07df {
    gap: var(--space-xs);
  }
  
  .text-light-6ac8 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .smooth-b813 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .badge-dim-1f7a {
    width: 150px;
    height: 150px;
  }
  
  .section-92f1 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .yellow-4cc7,
  .overlay-bottom-a985,
  .wide-7ed5,
  .hero_steel_c0ac,
  .link_bottom_0aa8,
  .center-eb50,
  .media-short-d072 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .liquid_556f {
    page-break-inside: avoid;
  }
}

/* css-noise: f52b */
.ghost-box-k1 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.3;
}
