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

.advanced_8f22:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.active-eb54,
header,
.rough-53a0,
.notice_last_119e,
.orange_a2e0,
.tooltip-e89f,
.next_6000,
.shade_97bf,
.chip-2ae0 {
  max-width: none;
}

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

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.active-eb54 {
  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);
}

.next-1e0c {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

.pagination-107d {
  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;
}

.heading_complex_17c3 {
  flex: 1;
}

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

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

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

.module_next_b465.rough-f47b {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.wide_b957 {
  position: relative;
}

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

.hot-e27e svg {
  transition: transform 0.2s ease;
}

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

.short-44ca {
  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;
}

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

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

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

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

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

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

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

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

.dark-245a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.feature-over-3f0f[aria-expanded="true"] .detail-1c71:nth-child(2) {
  opacity: 0;
}

.feature-over-3f0f[aria-expanded="true"] .detail-1c71:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .heading_complex_17c3 {
    display: none;
  }
  
  .feature-over-3f0f {
    display: flex;
  }
  
  .pagination-107d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .dark-245a,
  .pink_380f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .wide_b957 {
    position: relative;
  }
  
  .short-44ca {
    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;
  }
  
  .hot-e27e[aria-expanded="true"] + .short-44ca {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .status_80c6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .modal_motion_5e7e {
    gap: 8px;
  }
  
  .dark-245a {
    display: none;
  }
  
  .pink_380f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .heading_dirty_bd9e img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.picture-37fd {
  display: flex;
  align-items: center;
  gap: 6px;
}

.picture-37fd svg {
  flex-shrink: 0;
}

.picture-37fd a {
  color: var(--color-primary);
  text-decoration: none;
}

.picture-37fd a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.silver-c0d0 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

.module-south-6fa3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.item-solid-d211 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-e3d0 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .purple-4fa4 {
    grid-template-columns: 1fr;
  }
  
  .summary_green_0075 {
    font-size: 1.75rem;
  }
  
  .item-solid-d211 {
    order: -1;
    max-width: 100%;
  }
  
  .container-e3d0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .summary_green_0075 {
    font-size: 1.5rem;
  }
  
  .main-fee0 {
    font-size: 1rem;
  }
  
  .silver-c0d0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .container-e3d0 {
    max-width: 250px;
  }
}

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

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

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

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

.status-fast-3900:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table-large-2320 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.table-large-2320 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);
}

.table-large-2320 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gold-1f2f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.gold-1f2f 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) {
  .video_green_9e65 {
    grid-template-columns: 1fr;
  }
  
  .video-c5a5 {
    font-size: 1.75rem;
  }
  
  .header_e879 {
    max-width: 100%;
  }
}

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

/* ============================================
   11. INFO BOXES
   ============================================ */
.dynamic-ef59 {
  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_selected_2158 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.item_62d7 {
  flex-shrink: 0;
}

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

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

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

.lite_f5af,
.footer_9b29,
.media_24e9 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.lite_f5af thead,
.footer_9b29 thead {
  background: var(--color-primary);
  color: white;
}

.lite_f5af th,
.lite_f5af td,
.footer_9b29 th,
.footer_9b29 td,
.media_24e9 th,
.media_24e9 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lite_f5af th,
  .lite_f5af td,
  .footer_9b29 th,
  .footer_9b29 td,
  .media_24e9 th,
  .media_24e9 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .lite_f5af,
  .footer_9b29,
  .media_24e9 {
    min-width: 600px;
  }
}

.lite_f5af th,
.footer_9b29 th,
.media_24e9 th {
  font-weight: 600;
}

.lite_f5af tbody tr:hover,
.footer_9b29 tbody tr:hover,
.media_24e9 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.iron-d47e h4 {
  color: white;
}

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

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

.background-prev-d40e:last-child {
  border-bottom: none;
}

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

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

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

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

.icon-c987:hover {
  text-decoration: underline;
}

.footer-right-6b5c {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

.secondary-8d4a {
  list-style: none;
  padding: 0;
}

.secondary-8d4a li {
  padding: var(--space-xs) 0;
}

.panel-old-714e {
  color: #4caf50;
}

.purple-f159 {
  color: #ff9800;
}

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

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

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

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

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

.layout-048b {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.solid-4e63 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-2ebe .focus_615f {
  width: 100%;
  background: white;
}

.shade_0e49 .focus_615f {
  color: #667eea;
}

.banner_focused_eae3 .focus_615f {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .wide-a7d0 {
    padding: var(--space-md);
  }
  
  .gallery_rough_6cf0 {
    padding: var(--space-md);
  }
  
  .dirty-3298 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.summary-a7a1,
.accordion-6f50,
.highlight-blue-9a20,
.rough-2514 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hidden-9204 .video_da93 {
  background: #e8f5e9;
  color: var(--color-success);
}

.outer_c1ab .video_da93 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.panel-short-ef9e {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.plasma-62dd {
  margin-top: var(--space-xxl);
}

.secondary-action-37b9 {
  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);
}

.card_2240 {
  text-align: center;
}

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

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

.list-9212 .hover_52cf {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.shadow-mini-58a0 p {
  margin-bottom: var(--space-md);
}

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

@media (max-width: 768px) {
  .secondary-action-37b9 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_black_a11f {
  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_a0c9 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.table-6104 {
  text-align: right;
}

.table-6104 .orange_9f90 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

.table-up-2d3e {
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-over-08be {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.tiny_bc91[aria-expanded="true"] .grid-over-08be {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

.solid_57c2 {
  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_57c2 {
    grid-template-columns: 1fr;
  }
}

.article_4aa1,
.top-cfab {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.article_4aa1 h4,
.top-cfab h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.article_4aa1 ul,
.top-cfab ul {
  list-style: none;
  padding: 0;
}

.article_4aa1 li,
.top-cfab li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.hot-5dbe ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.image-149c {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.title-hard-6d13 {
  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);
}

.title-hard-6d13:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

.title-hard-6d13 p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

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

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

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

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

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

.hero-0771 .accordion_slow_88d3 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.filter_aa1a a:hover {
  color: white;
}

.accent-79d0 {
  list-style: none;
  padding: 0;
}

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

.accent-79d0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.accent-79d0 a:hover {
  color: white;
}

.input-lite-d910 {
  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);
}

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

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

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

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

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

.pagination-brown-d38d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .input-lite-d910 {
    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;
  }
  
  .summary_green_0075 {
    font-size: 2rem;
  }
  
  .video-c5a5 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .purple-4fa4,
  .video_green_9e65 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .west_7370,
  .icon_fluid_b67b,
  .picture_plasma_477f,
  .gallery_yellow_6f7b,
  .solid_57c2,
  .new-5b01,
  .texture_soft_663f,
  .frame-focused-450a {
    grid-template-columns: 1fr;
  }
  
  .wood_d5f9 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .next_6000 {
    padding: var(--space-lg) 0;
  }
  
  .table-large-2320 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .table-large-2320 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .focus_615f {
    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;
  }
  
  .wood_d5f9 {
    grid-template-columns: 1fr;
  }
  
  .module-south-6fa3,
  .alert_dark_e704,
  .surface_white_50eb {
    flex-direction: column;
    width: 100%;
  }
  
  .grid_clean_9391,
  .detail_d249,
  .module-south-6fa3 .focus_615f,
  .alert_dark_e704 .focus_615f {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .summary_green_0075 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .video-c5a5 {
    font-size: 1.375rem;
  }
  
  .component-482e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .liquid_a95a,
  .wood-710b,
  .slow-c0b4,
  .bright_9c16,
  .chip_lower_8061 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tertiary-full-ade4 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .icon-hovered-0a93 {
    gap: var(--space-xs);
  }
  
  .picture-37fd {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .secondary_bd2b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .list-9212 {
    width: 150px;
    height: 150px;
  }
  
  .east_8a69 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-eb54,
  .rough-53a0,
  .module-south-6fa3,
  .dirty-dd0b,
  .shade_97bf,
  .chip-2ae0,
  .feature-over-3f0f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .next_6000 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: fbd1 */
.widget-item-o1 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
