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

.section_blue_7f83:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.bronze-9682,
header,
.thumbnail-cold-60c0,
.popup_63a7,
.lite_ffe7,
.thumbnail-steel-529d,
.summary_stale_92be,
.accent-88b7,
.surface_4adb {
  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
   ============================================ */
.bronze-9682 {
  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);
}

.wrapper-focused-7228 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.dropdown-9b79 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.gas-5c36 {
  flex: 1;
}

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

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

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

.dirty_0e5a.fn-active-ca65 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.video-555a {
  position: relative;
}

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

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

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

.cold-806f {
  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;
}

/* 鼠标悬停父元素时，立即显示下拉菜单 */
.video-555a:hover .cold-806f {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

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

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

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

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

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

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

.header_a260 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .gas-5c36::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .gas-5c36.grid_inner_764d {
    display: block;
    right: 0;
  }
  
  .secondary-clean-3fae {
    flex-direction: column;
    gap: 0;
  }
  
  .dirty_0e5a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .gas-5c36::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;
  }
  
  .gas-5c36.grid_inner_764d::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .gas-5c36 {
    display: none;
  }
  
  .background_9317 {
    display: flex;
  }
  
  .main_clean_2b21 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .header_a260,
  .purple-a19c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .video-555a {
    position: relative;
  }
  
  .cold-806f {
    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;
  }
  
  .icon_wood_89de[aria-expanded="true"] + .cold-806f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .hover_dc95 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .search_under_2916 {
    gap: 8px;
  }
  
  .header_a260 {
    display: none;
  }
  
  .purple-a19c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .dropdown-9b79 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.shadow-cold-bf18 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.shadow-cold-bf18 svg {
  flex-shrink: 0;
}

.shadow-cold-bf18 a {
  color: var(--color-primary);
  text-decoration: none;
}

.shadow-cold-bf18 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.paper-3d2f a {
  color: var(--color-primary);
  text-decoration: none;
}

.paper-3d2f a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.bottom-4bdc {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.carousel-dark-aaff {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .up_317a {
    grid-template-columns: 1fr;
  }
  
  .middle-a9d7 {
    font-size: 1.75rem;
  }
  
  .under_d651 {
    order: -1;
    max-width: 100%;
  }
  
  .main_5ec0 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .middle-a9d7 {
    font-size: 1.5rem;
  }
  
  .thumbnail_c08e {
    font-size: 1rem;
  }
  
  .paper-3d2f {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .main_5ec0 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

.frame-selected-485b {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.carousel-white-1bf7 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.panel_liquid_a83e 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) {
  .background_9477 {
    grid-template-columns: 1fr;
  }
  
  .pattern-d577 {
    font-size: 1.75rem;
  }
  
  .highlight_0c66 {
    max-width: 100%;
  }
}

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

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

.info-8a1b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

.widget-first-7b20 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.blue_3908 {
  flex-shrink: 0;
}

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

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

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

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

.link_dim_213e thead,
.filter_iron_b8be thead {
  background: var(--color-primary);
  color: white;
}

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

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

.link_dim_213e th,
.filter_iron_b8be th,
.video_glass_75a2 th {
  font-weight: 600;
}

.link_dim_213e tbody tr:hover,
.filter_iron_b8be tbody tr:hover,
.video_glass_75a2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.paragraph_0ea1 h4 {
  color: white;
}

.pagination-left-78b9 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.backdrop-dynamic-fc2d:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.fixed-bee7 {
  color: #4caf50;
}

.message_e11d {
  color: #ff9800;
}

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

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

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

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

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

.module-first-2fc8 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.footer-829a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_02b3 .paper-d9bb {
  width: 100%;
  background: white;
}

.photo-easy-33ca .paper-d9bb {
  color: #667eea;
}

.basic_0466 .paper-d9bb {
  color: #f5576c;
}

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

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

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

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

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

.form-left-d20b {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .status_thick_d130 {
    padding: var(--space-md);
  }
  
  .form-left-d20b {
    padding: var(--space-md);
  }
  
  .white-4244 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.module_ff18,
.notice_thick_5eed,
.footer-plasma-10a5,
.badge-dynamic-7022 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.copper-8efa:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.hard_fbdf .preview-db8f {
  background: #e8f5e9;
  color: var(--color-success);
}

.fluid-3180 .preview-db8f {
  background: #fff3e0;
  color: var(--color-warning);
}

.grid-gold-472e h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.grid-gold-472e p {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.paper_2e64 {
  text-align: center;
}

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

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

.info_06df .nav_dynamic_ed28 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.old-75f8 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

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

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

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

.hidden-simple-8fc1 {
  text-align: right;
}

.hidden-simple-8fc1 .overlay-3232 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.item-pressed-26fa {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

.light-0751 {
  background: #e8f5e9;
  color: #2e7d32;
}

.slider-367a {
  background: #e3f2fd;
  color: #1565c0;
}

.next-4a05 {
  background: #fff3e0;
  color: #e65100;
}

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

.overlay-steel-2d78 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.bottom-5a5a {
  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);
}

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

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

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

.backdrop-1ab9 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.chip-32bd {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.purple-f167[aria-expanded="true"] .chip-32bd {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_8b67 h4,
.component_f169 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.heading_8b67 ul,
.component_f169 ul {
  list-style: none;
  padding: 0;
}

.heading_8b67 li,
.component_f169 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.plasma-1b30 {
  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);
}

.yellow-6c67 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.soft_4016 a:hover {
  color: white;
}

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

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

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

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

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

.left_5afb a:hover {
  color: white;
}

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

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

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

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

.pagination-steel-30fa {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.pagination-steel-30fa .bottom-4bdc {
  color: #4caf50;
  font-size: 0.875rem;
}

.photo-inner-f6f0 {
  list-style: none;
  padding: 0;
}

.photo-inner-f6f0 li {
  margin-bottom: var(--space-xs);
}

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

.photo-inner-f6f0 a:hover {
  color: white;
}

.media-current-c03f {
  list-style: none;
  padding: 0;
}

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

.media-current-c03f a {
  color: #b0b0b0;
  text-decoration: none;
}

.media-current-c03f a:hover {
  color: white;
}

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

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

.paper-421c a {
  color: #4caf50;
  text-decoration: none;
}

.aside-brown-1ce2 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.action-9272 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;
}

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

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

@media (max-width: 768px) {
  .status-f9c6 {
    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;
  }
  
  .middle-a9d7 {
    font-size: 2rem;
  }
  
  .pattern-d577 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .up_317a,
  .background_9477 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .fixed_f964,
  .surface_pro_115a,
  .dark_cd00,
  .static_7517,
  .active_6666,
  .element_3572,
  .chip-d8be,
  .element_3da0,
  .title_wood_8aa8 {
    grid-template-columns: 1fr;
  }
  
  .grid_0287 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .summary_stale_92be {
    padding: var(--space-lg) 0;
  }
  
  .steel_3314 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .steel_3314 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paper-d9bb {
    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;
  }
  
  .grid_0287 {
    grid-template-columns: 1fr;
  }
  
  .carousel-dark-aaff,
  .left_20d2,
  .backdrop_0bc5 {
    flex-direction: column;
    width: 100%;
  }
  
  .block_hard_1f06,
  .frame-selected-485b,
  .carousel-dark-aaff .paper-d9bb,
  .left_20d2 .paper-d9bb {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .middle-a9d7 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .pattern-d577 {
    font-size: 1.375rem;
  }
  
  .surface-complex-77f2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .container-a798,
  .shade-upper-d417,
  .active_db7b,
  .pagination-focused-103b,
  .texture-active-f0ca {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sidebar_static_debc {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .tooltip-clean-d0ee {
    gap: var(--space-xs);
  }
  
  .shadow-cold-bf18 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .caption-medium-fe3e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .info_06df {
    width: 150px;
    height: 150px;
  }
  
  .detail-0027 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .bronze-9682,
  .thumbnail-cold-60c0,
  .carousel-dark-aaff,
  .caption_motion_65e5,
  .accent-88b7,
  .surface_4adb,
  .background_9317 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .summary_stale_92be {
    page-break-inside: avoid;
  }
}

/* css-noise: 6b70 */
.widget-item-x6 {
  padding: 0.4rem;
  font-size: 14px;
  line-height: 1.1;
}
