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

.icon-3a84:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.hero-paper-87a2,
header,
.aside-46b2,
.main_2199,
.mini-77a5,
.layout-15fc,
.hidden-b434,
.top_195a,
.link_6b1a {
  max-width: none;
}

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

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

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

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

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.hero-paper-87a2 {
  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);
}

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

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

/* Scrolled state */
.hero-paper-87a2.popup-brown-7ec7 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

.panel-9b08 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.overlay_short_ba81 {
  flex: 1;
}

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

.complex-52d3 {
  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);
}

.complex-52d3:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.complex-52d3.sort-c6d7 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.narrow-c3ac {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.row-8022 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.card-pink-44f4 {
  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;
}

.card-pink-44f4: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);
}

.card-pink-44f4 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.media-5e83[aria-expanded="true"] .outline-mini-f021:nth-child(2) {
  opacity: 0;
}

.media-5e83[aria-expanded="true"] .outline-mini-f021:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .overlay_short_ba81 {
    display: none;
  }
  
  .media-5e83 {
    display: flex;
  }
  
  .input-dirty-b300 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .row-8022,
  .card-pink-44f4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .narrow-c3ac {
    position: relative;
  }
  
  .new-a3b2 {
    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;
  }
  
  .dim_b687[aria-expanded="true"] + .new-a3b2 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .shadow_5238 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .fast-feff {
    gap: 8px;
  }
  
  .row-8022 {
    display: none;
  }
  
  .card-pink-44f4 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .panel-9b08 img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .card-pink-44f4 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .card-pink-44f4 svg {
    width: 14px;
    height: 14px;
  }
  
  .status-small-2ade {
    gap: var(--space-sm);
  }
}

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

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

.chip-pro-8cff {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-pro-8cff svg {
  flex-shrink: 0;
}

.chip-pro-8cff a {
  color: var(--color-primary);
  text-decoration: none;
}

.chip-pro-8cff a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.top-6af4 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

.shade-prev-4a4c {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.shade-prev-4a4c strong {
  font-weight: 600;
  color: var(--color-text);
}

.shade-prev-4a4c span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

.item-1c10 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .menu_fast_9a62 {
    grid-template-columns: 1fr;
  }
  
  .alert_5200 {
    font-size: 1.75rem;
  }
  
  .item-1c10 {
    order: -1;
    max-width: 100%;
  }
  
  .image_684d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .alert_5200 {
    font-size: 1.5rem;
  }
  
  .logo_b6c5 {
    font-size: 1rem;
  }
  
  .stone_c827 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .image_684d {
    max-width: 250px;
  }
}

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

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

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

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

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

.badge-smooth-79c0 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.badge-smooth-79c0:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.avatar-7eb3 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.block-7e9e {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.highlight-wide-5366 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.highlight-wide-5366 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);
}

.highlight-wide-5366 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;
}

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

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

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

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

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

.secondary-next-591e {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-wide-365c {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.sidebar-wide-365c 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_2ffd {
    grid-template-columns: 1fr;
  }
  
  .secondary-next-591e {
    font-size: 1.75rem;
  }
  
  .row_a2e3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .secondary-next-591e {
    font-size: 1.5rem;
  }
  
  .row_a2e3 h3 {
    font-size: 1.375rem;
  }
  
  .row_a2e3 h4 {
    font-size: 1.125rem;
  }
}

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

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

.badge-static-1e21 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.feature_inner_df00 {
  flex-shrink: 0;
}

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

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

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

.mini-44a1,
.east_b2fe,
.wide_3820 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mini-44a1 thead,
.east_b2fe thead {
  background: var(--color-primary);
  color: white;
}

.mini-44a1 th,
.mini-44a1 td,
.east_b2fe th,
.east_b2fe td,
.wide_3820 th,
.wide_3820 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mini-44a1 th,
  .mini-44a1 td,
  .east_b2fe th,
  .east_b2fe td,
  .wide_3820 th,
  .wide_3820 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .mini-44a1,
  .east_b2fe,
  .wide_3820 {
    min-width: 600px;
  }
}

.mini-44a1 th,
.east_b2fe th,
.wide_3820 th {
  font-weight: 600;
}

.mini-44a1 tbody tr:hover,
.east_b2fe tbody tr:hover,
.wide_3820 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.sidebar_stale_9a79 h4 {
  color: white;
}

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

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

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

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

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

.highlight-mini-8dcb {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  word-break: break-all;
}

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

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

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

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

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

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

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

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

.pattern-dirty-8ac7 {
  color: #4caf50;
}

.layout_slow_a52d {
  color: #ff9800;
}

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

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

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

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

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

.overlay-outer-97bc {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

.link-051c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.slider-1c1c .preview-next-fc41 {
  width: 100%;
  background: white;
}

.breadcrumb_fixed_f115 .preview-next-fc41 {
  color: #667eea;
}

.tertiary_7449 .preview-next-fc41 {
  color: #f5576c;
}

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

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

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

.hovered-48d4 {
  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);
}

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

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

@media (max-width: 768px) {
  .mini_222f {
    padding: var(--space-md);
  }
  
  .link_large_fbe9 {
    padding: var(--space-md);
  }
  
  .dirty-c98e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.breadcrumb-paper-4e07,
.photo-medium-1961,
.progress-33c8,
.gallery-large-ce6f {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.disabled-glass-c195:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.primary_fast_d7be .message-cdb3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.background_f64b .message-cdb3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wood-1cca {
  margin-top: var(--space-xxl);
}

.popup-middle-85e5 {
  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);
}

.silver-c770 {
  text-align: center;
}

.lower-3aa2 {
  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);
}

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

.lower-3aa2 .shadow_54d5 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.title-7bfa p {
  margin-bottom: var(--space-md);
}

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

@media (max-width: 768px) {
  .popup-middle-85e5 {
    grid-template-columns: 1fr;
  }
}

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

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

.hover-004f {
  margin-bottom: var(--space-xl);
}

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

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

.icon-hovered-132d {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

.gold-42fd {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.bottom-8edc {
  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;
}

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

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

.content-basic-82b4 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.background_d121 {
  text-align: right;
}

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

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

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

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

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

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

.container-middle-2214 {
  background: #e8f5e9;
  color: #2e7d32;
}

.smooth-d0f5 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.video-slow-45b1 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.element-pressed-3f10 {
  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);
}

.element-pressed-3f10:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.outline-motion-1381 {
  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);
}

.outline-motion-1381:hover {
  background: var(--color-bg-alt);
}

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

.outline-motion-1381[aria-expanded="true"] .right_92b5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.background-3464 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

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

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

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

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

.header_8b99 ul,
.bronze_2f40 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.status-iron-852f {
  font-style: italic;
}

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

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

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

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

.preview-small-15c1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-bb81 .light-f660 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.label_ba94 a:hover {
  color: white;
}

.complex-2b2e {
  list-style: none;
  padding: 0;
}

.complex-2b2e li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.complex-2b2e a {
  color: #b0b0b0;
  text-decoration: none;
}

.complex-2b2e a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .main_27e3 {
    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;
  }
  
  .alert_5200 {
    font-size: 2rem;
  }
  
  .secondary-next-591e {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .menu_fast_9a62,
  .item_2ffd {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .search-small-b57d,
  .liquid-41df,
  .feature-6e9a,
  .light_f390,
  .lite_5e4c,
  .label_medium_f131,
  .gold-5624,
  .pro_7eb7 {
    grid-template-columns: 1fr;
  }
  
  .paper_caa8 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .hidden-b434 {
    padding: var(--space-lg) 0;
  }
  
  .highlight-wide-5366 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .highlight-wide-5366 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .preview-next-fc41 {
    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;
  }
  
  .paper_caa8 {
    grid-template-columns: 1fr;
  }
  
  .new_8db9,
  .preview-small-15c1,
  .nav_b108 {
    flex-direction: column;
    width: 100%;
  }
  
  .avatar-7eb3,
  .block-7e9e,
  .new_8db9 .preview-next-fc41,
  .preview-small-15c1 .preview-next-fc41 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .alert_5200 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .secondary-next-591e {
    font-size: 1.375rem;
  }
  
  .accent_3a91 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .table-current-fa02,
  .paper_f9e6,
  .pro_2788,
  .tertiary_green_99a3,
  .pro-e28b {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .old_caad {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .fast-b5a8 {
    gap: var(--space-xs);
  }
  
  .chip-pro-8cff {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .banner_dim_5a10 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .lower-3aa2 {
    width: 150px;
    height: 150px;
  }
  
  .active-2502 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .hero-paper-87a2,
  .aside-46b2,
  .new_8db9,
  .status_smooth_1ed5,
  .top_195a,
  .link_6b1a,
  .media-5e83 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .hidden-b434 {
    page-break-inside: avoid;
  }
}

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

/* css-noise: a63b */
.shadow-element-g7 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.1;
}
