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

.narrow-04f0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.purple_11c3,
header,
.overlay_4b30,
.bronze-b7f2,
.bottom_3c2f,
.link-5907,
.detail-static-2a39,
.pattern-narrow-9d17,
.layout_warm_a873 {
  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
   ============================================ */
.purple_11c3 {
  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);
}

.footer-blue-5ea1 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.feature-soft-e057 img {
  height: 36px;
  width: auto;
  display: block;
}

.easy-044d {
  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;
}

.column_green_d682 {
  flex: 1;
}

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

.header-static-bf76 {
  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);
}

.header-static-bf76:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.header-static-bf76.fn-active-ff81 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.heading-7529 {
  position: relative;
}

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

.preview-fac1 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.lite_2704 svg {
  flex-shrink: 0;
}

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

.huge-717d: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);
}

.huge-717d svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.wide-c31b[aria-expanded="true"] .tooltip-56d2:nth-child(2) {
  opacity: 0;
}

.wide-c31b[aria-expanded="true"] .tooltip-56d2:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .column_green_d682::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .column_green_d682.modal-79ed {
    display: block;
    right: 0;
  }
  
  .footer_lite_bdf0 {
    flex-direction: column;
    gap: 0;
  }
  
  .header-static-bf76 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .column_green_d682::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;
  }
  
  .column_green_d682.modal-79ed::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .column_green_d682 {
    display: none;
  }
  
  .wide-c31b {
    display: flex;
  }
  
  .easy-044d {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .lite_2704,
  .huge-717d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .heading-7529 {
    position: relative;
  }
  
  .lite-e3d3 {
    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;
  }
  
  .preview-fac1[aria-expanded="true"] + .lite-e3d3 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .aside_5425 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gold_88c3 {
    gap: 8px;
  }
  
  .lite_2704 {
    display: none;
  }
  
  .huge-717d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .feature-soft-e057 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .huge-717d {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .huge-717d svg {
    width: 14px;
    height: 14px;
  }
  
  .button-iron-6359 {
    gap: var(--space-sm);
  }
}

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

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

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

.popup-e7de svg {
  flex-shrink: 0;
}

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

.popup-e7de a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.status-clean-a720 a {
  color: var(--color-primary);
  text-decoration: none;
}

.status-clean-a720 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.dirty-5a82 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .title-south-6166 {
    grid-template-columns: 1fr;
  }
  
  .footer_71b3 {
    font-size: 1.75rem;
  }
  
  .liquid-c82b {
    order: -1;
    max-width: 100%;
  }
  
  .picture_e977 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer_71b3 {
    font-size: 1.5rem;
  }
  
  .border-fc14 {
    font-size: 1rem;
  }
  
  .status-clean-a720 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .picture_e977 {
    max-width: 250px;
  }
}

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

.cool-2adb {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

.gallery-white-57a5:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.dropdown-soft-cf35 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.dropdown-soft-cf35 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);
}

.dropdown-soft-cf35 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.detail-static-2a39 {
  padding: var(--space-xxl) 0;
}

.primary-medium-9ca9 {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame_center_1b20 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) {
  .item-cold-817e {
    grid-template-columns: 1fr;
  }
  
  .simple_7f49 {
    font-size: 1.75rem;
  }
  
  .label_f311 {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.bright_2878 {
  flex-shrink: 0;
}

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

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

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

.rough-343d,
.hover-7403,
.purple-792d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.rough-343d thead,
.hover-7403 thead {
  background: var(--color-primary);
  color: white;
}

.rough-343d th,
.rough-343d td,
.hover-7403 th,
.hover-7403 td,
.purple-792d th,
.purple-792d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .rough-343d th,
  .rough-343d td,
  .hover-7403 th,
  .hover-7403 td,
  .purple-792d th,
  .purple-792d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .rough-343d,
  .hover-7403,
  .purple-792d {
    min-width: 600px;
  }
}

.rough-343d th,
.hover-7403 th,
.purple-792d th {
  font-weight: 600;
}

.rough-343d tbody tr:hover,
.hover-7403 tbody tr:hover,
.purple-792d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.border_09ef h4 {
  color: white;
}

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

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

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

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

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

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

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

.layout-soft-a1a0:hover {
  text-decoration: underline;
}

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

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

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

.paper-b1de {
  font-weight: 600;
  color: white;
}

.warm-3468 {
  list-style: none;
  padding: 0;
}

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

.last_72aa {
  color: #4caf50;
}

.medium_035e {
  color: #ff9800;
}

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

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

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

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

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

.lower-b668 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_8d6f .slow_dfdd {
  width: 100%;
  background: white;
}

.focus_0a19 .slow_dfdd {
  color: #667eea;
}

.column_tiny_b1bc .slow_dfdd {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .article_540a {
    padding: var(--space-md);
  }
  
  .purple_2bf4 {
    padding: var(--space-md);
  }
  
  .clean_afa6 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.main-stale-8163 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.pattern-last-4abb,
.dynamic_05f5,
.border_solid_d2a8,
.fresh-53d2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.element_light_0bfe .white_42bb {
  background: #e8f5e9;
  color: var(--color-success);
}

.info_6d44 .white_42bb {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.selected-51d5 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

.sort-bronze-55e5 {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  cursor: pointer;
}

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

.content-dirty-5005 {
  margin-top: var(--space-xxl);
}

.yellow-165b {
  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);
}

.media-9f7b {
  text-align: center;
}

.info-selected-4da9 {
  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);
}

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

.info-selected-4da9 .paper-b1de {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

.dark-3e5b {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.table-smooth-6b3e {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.description_c56b {
  text-align: right;
}

.description_c56b .component_eead {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.selected-487c {
  background: #e8f5e9;
  color: #2e7d32;
}

.pressed-e619 {
  background: #e3f2fd;
  color: #1565c0;
}

.panel-out-a9f9 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.accent-upper-735c strong {
  color: var(--color-primary);
}

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

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

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

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

.lower-84fc {
  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);
}

.lower-84fc:hover {
  background: var(--color-bg-alt);
}

.cool-99df {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.lower-84fc[aria-expanded="true"] .cool-99df {
  transform: rotate(180deg);
}

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

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

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

.cool-26df li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.active-glass-9f6a,
.thick-85ff {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.active-glass-9f6a h4,
.thick-85ff h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.active-glass-9f6a ul,
.thick-85ff ul {
  list-style: none;
  padding: 0;
}

.active-glass-9f6a li,
.thick-85ff li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.gradient_top_0449 {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.component-left-1be3 {
  font-style: italic;
}

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

.tertiary-tall-0878 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture_bronze_53be a:hover {
  color: white;
}

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

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

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

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

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

.notice_white_3cf8 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .mask-730c,
  .dirty_239c {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.prev-b3a6 .dirty-5a82 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.huge_b66e a:hover {
  color: white;
}

.left-11fc {
  list-style: none;
  padding: 0;
}

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

.left-11fc a {
  color: #b0b0b0;
  text-decoration: none;
}

.left-11fc a:hover {
  color: white;
}

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

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

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

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

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

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

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

.card-blue-0ff9 {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.card-blue-0ff9:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .out_65fb {
    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;
  }
  
  .footer_71b3 {
    font-size: 2rem;
  }
  
  .simple_7f49 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .title-south-6166,
  .item-cold-817e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .right_9228,
  .black_8060,
  .paragraph_copper_ea06,
  .article-1ad0,
  .tag-narrow-499e,
  .search-liquid-9c38,
  .outline-8c4f,
  .mask-730c,
  .dirty_239c {
    grid-template-columns: 1fr;
  }
  
  .basic-edeb {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .detail-static-2a39 {
    padding: var(--space-lg) 0;
  }
  
  .dropdown-soft-cf35 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .dropdown-soft-cf35 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .slow_dfdd {
    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;
  }
  
  .basic-edeb {
    grid-template-columns: 1fr;
  }
  
  .panel_copper_7553,
  .popup-under-b71c,
  .slider-tiny-7f27 {
    flex-direction: column;
    width: 100%;
  }
  
  .hovered-edb5,
  .texture_7373,
  .panel_copper_7553 .slow_dfdd,
  .popup-under-b71c .slow_dfdd {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .footer_71b3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .simple_7f49 {
    font-size: 1.375rem;
  }
  
  .column-bright-76a3 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .gallery-white-57a5,
  .accent_0a1f,
  .tall-c5c0,
  .feature-e2b3,
  .border_west_38eb {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .border-d9b1 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tertiary_90fd {
    gap: var(--space-xs);
  }
  
  .popup-e7de {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .video-paper-c905 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info-selected-4da9 {
    width: 150px;
    height: 150px;
  }
  
  .feature-7e2f {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .purple_11c3,
  .overlay_4b30,
  .panel_copper_7553,
  .tertiary-tall-0878,
  .pattern-narrow-9d17,
  .layout_warm_a873,
  .wide-c31b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .detail-static-2a39 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3773 */
.shadow-element-c6 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.2;
}
