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

.caption_liquid_5cad:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.warm-fa51,
header,
.prev-ec91,
.aside-3866,
.brown-8d3b,
.picture_00ba,
.column-active-685f,
.popup-wide-1a58,
.title-south-e49b {
  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
   ============================================ */
.warm-fa51 {
  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);
}

.action-819a {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

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

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

.stone_40a9 {
  flex: 1;
}

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

.component-hard-7f34 {
  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);
}

.component-hard-7f34:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.component-hard-7f34.fn-active-9a0f {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.full-b978 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo-fresh-fdcb svg {
  flex-shrink: 0;
}

/* Header Download Button */
.description-advanced-6eb0 {
  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;
}

.description-advanced-6eb0: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);
}

.description-advanced-6eb0 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.small-9627[aria-expanded="true"] .banner-598b:nth-child(2) {
  opacity: 0;
}

.small-9627[aria-expanded="true"] .banner-598b:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .stone_40a9::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .stone_40a9.article-fresh-c4ab {
    display: block;
    right: 0;
  }
  
  .banner_hovered_a909 {
    flex-direction: column;
    gap: 0;
  }
  
  .component-hard-7f34 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .stone_40a9::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;
  }
  
  .stone_40a9.article-fresh-c4ab::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .stone_40a9 {
    display: none;
  }
  
  .small-9627 {
    display: flex;
  }
  
  .disabled_slow_ade9 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .logo-fresh-fdcb,
  .description-advanced-6eb0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .full-b978 {
    position: relative;
  }
  
  .article_right_84da {
    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;
  }
  
  .main_purple_2e2f[aria-expanded="true"] + .article_right_84da {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .notification_cool_094f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .gallery-1900 {
    gap: 8px;
  }
  
  .logo-fresh-fdcb {
    display: none;
  }
  
  .description-advanced-6eb0 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .button_white_7a9b img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .description-advanced-6eb0 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .description-advanced-6eb0 svg {
    width: 14px;
    height: 14px;
  }
  
  .item-north-748e {
    gap: var(--space-sm);
  }
}

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

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

.content-east-9c5e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.content-east-9c5e svg {
  flex-shrink: 0;
}

.content-east-9c5e a {
  color: var(--color-primary);
  text-decoration: none;
}

.content-east-9c5e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.modal-thick-4306 a {
  color: var(--color-primary);
  text-decoration: none;
}

.modal-thick-4306 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.notification-18be {
  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;
}

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

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

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

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

.logo-20d4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .video_clean_7337 {
    grid-template-columns: 1fr;
  }
  
  .current-4b1b {
    font-size: 1.75rem;
  }
  
  .logo-20d4 {
    order: -1;
    max-width: 100%;
  }
  
  .avatar_right_7675 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .current-4b1b {
    font-size: 1.5rem;
  }
  
  .menu-clean-78ce {
    font-size: 1rem;
  }
  
  .modal-thick-4306 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .avatar_right_7675 {
    max-width: 250px;
  }
}

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

.progress-24d6 {
  background: var(--color-primary);
  color: white;
}

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

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

.last-615e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.south-d55c 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;
}

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

/* ============================================
   10. CONTENT SECTIONS
   ============================================ */
.column-active-685f {
  padding: var(--space-xxl) 0;
}

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

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

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

.search-hard-0a0c {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.section_333c 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) {
  .narrow_060e {
    grid-template-columns: 1fr;
  }
  
  .search-hard-0a0c {
    font-size: 1.75rem;
  }
  
  .wood_90f4 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .search-hard-0a0c {
    font-size: 1.5rem;
  }
  
  .wood_90f4 h3 {
    font-size: 1.375rem;
  }
  
  .wood_90f4 h4 {
    font-size: 1.125rem;
  }
}

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

.main-7cb0 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.paragraph-west-e429 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.surface-out-e5ac {
  flex-shrink: 0;
}

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

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

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

.content_steel_9d58,
.item-fbd1,
.aside_fresh_cfab {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content_steel_9d58 thead,
.item-fbd1 thead {
  background: var(--color-primary);
  color: white;
}

.content_steel_9d58 th,
.content_steel_9d58 td,
.item-fbd1 th,
.item-fbd1 td,
.aside_fresh_cfab th,
.aside_fresh_cfab td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .content_steel_9d58 th,
  .content_steel_9d58 td,
  .item-fbd1 th,
  .item-fbd1 td,
  .aside_fresh_cfab th,
  .aside_fresh_cfab td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .content_steel_9d58,
  .item-fbd1,
  .aside_fresh_cfab {
    min-width: 600px;
  }
}

.content_steel_9d58 th,
.item-fbd1 th,
.aside_fresh_cfab th {
  font-weight: 600;
}

.content_steel_9d58 tbody tr:hover,
.item-fbd1 tbody tr:hover,
.aside_fresh_cfab tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.large_bbe2 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.frame-2b9e {
  font-weight: 600;
  color: white;
}

.primary-ab26 {
  list-style: none;
  padding: 0;
}

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

.menu-0e7f {
  color: #4caf50;
}

.title-f1e8 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout-north-89b2 h4 {
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table_clean_612a .sidebar-8474 {
  width: 100%;
  background: white;
}

.stone-bde7 .sidebar-8474 {
  color: #667eea;
}

.picture_4a9d .sidebar-8474 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .tooltip_center_0ff2 {
    padding: var(--space-md);
  }
  
  .right-d268 {
    padding: var(--space-md);
  }
  
  .picture-white-4ddd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.progress_large_a3e1,
.tooltip_cb8a,
.info_yellow_c80f,
.dynamic_1603 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item_old_8333 .filter_glass_d2bc {
  background: #e8f5e9;
  color: var(--color-success);
}

.logo_easy_6339 .filter_glass_d2bc {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outer-57f1 {
  text-align: center;
}

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

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

.brown-e18a .frame-2b9e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.search-bronze-542c p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.frame-pink-6023 {
  margin-bottom: var(--space-xl);
}

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

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

.button-orange-0ccb {
  color: var(--color-text-light);
}

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

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

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

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

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

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

.focus-70ad {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

.out-7caa {
  border: 2px solid #4caf50;
}

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

.alert-huge-a518 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.carousel_simple_4558 {
  text-align: right;
}

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

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

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

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

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

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

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

.text-925d {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

.avatar-yellow-37f0 span {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.hard-1b83 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.status-orange-9037 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.current_1ca9[aria-expanded="true"] .status-orange-9037 {
  transform: rotate(180deg);
}

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

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

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

.bright-6ccd li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.white_3de3 ul,
.tag_in_e2b4 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.card-pro-2c5f {
  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);
}

.block-right-c166 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.tertiary-038c {
  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);
}

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

.slider-dynamic-83ca {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.layout-active-f139 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-active-f139 li {
  margin-bottom: var(--space-xs);
}

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

.layout-active-f139 a:hover {
  color: white;
}

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

.badge-paper-e4a8 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);
}

.badge-paper-e4a8 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.fixed-259e {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.fixed-259e a:hover {
  color: white;
}

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

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

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

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

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

.right_ad3b .up-4692 {
  color: #4caf50;
  font-size: 0.875rem;
}

.notice-cool-7871 {
  list-style: none;
  padding: 0;
}

.notice-cool-7871 li {
  margin-bottom: var(--space-xs);
}

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

.notice-cool-7871 a:hover {
  color: white;
}

.component-gas-f2d0 {
  list-style: none;
  padding: 0;
}

.component-gas-f2d0 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.component-gas-f2d0 a {
  color: #b0b0b0;
  text-decoration: none;
}

.component-gas-f2d0 a:hover {
  color: white;
}

.short-1d30 {
  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);
}

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

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

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

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

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

.fixed-d866 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;
}

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

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

@media (max-width: 768px) {
  .short-1d30 {
    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;
  }
  
  .current-4b1b {
    font-size: 2rem;
  }
  
  .search-hard-0a0c {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .video_clean_7337,
  .narrow_060e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .lower-bb2f,
  .wrapper_pressed_f400,
  .panel_a174,
  .left_8490,
  .alert_rough_89bf,
  .dropdown-basic-8b9c,
  .smooth-20a5,
  .shadow_5875,
  .item_red_ca0e {
    grid-template-columns: 1fr;
  }
  
  .component-purple-d802 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .column-active-685f {
    padding: var(--space-lg) 0;
  }
  
  .south-d55c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .south-d55c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .sidebar-8474 {
    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;
  }
  
  .component-purple-d802 {
    grid-template-columns: 1fr;
  }
  
  .soft-3204,
  .green_16e5,
  .article-e126 {
    flex-direction: column;
    width: 100%;
  }
  
  .thumbnail_rough_e695,
  .pro-c891,
  .soft-3204 .sidebar-8474,
  .green_16e5 .sidebar-8474 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .current-4b1b {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .search-hard-0a0c {
    font-size: 1.375rem;
  }
  
  .popup_e4f2 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .frame_green_24ca,
  .tabs_dynamic_4354,
  .mask-1e66,
  .module_0c47,
  .active-simple-7a45 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .element_top_d23a {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .accordion_light_382e {
    gap: var(--space-xs);
  }
  
  .content-east-9c5e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .over_ca14 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .brown-e18a {
    width: 150px;
    height: 150px;
  }
  
  .filter-selected-b3a4 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .warm-fa51,
  .prev-ec91,
  .soft-3204,
  .media-fce3,
  .popup-wide-1a58,
  .title-south-e49b,
  .small-9627 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .column-active-685f {
    page-break-inside: avoid;
  }
}

/* css-noise: e9ca */
.widget-item-e5 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.1;
}
