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

.search-45fb:focus {
  top: 0;
}

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

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

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

/* Prevent horizontal overflow on all elements EXCEPT header */
*:not(.current_f9f7):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. */
.current_f9f7,
header,
.up-a656,
.hero_f40a,
.accordion_purple_d9f6,
.purple_3a3e,
.fresh-a40d,
.sort_silver_4dee,
.summary-c0d3 {
  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
   ============================================ */
.current_f9f7 {
  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);
}

.rough-1ed9 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.card-5a5b img {
  height: 36px;
  width: auto;
  display: block;
}

.title-9a0a {
  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;
}

.outer_963e {
  flex: 1;
}

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

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

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

.shadow_static_a058.notification-4291 {
  background: var(--color-primary);
  color: white;
}

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

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

.active-6091 svg {
  transition: transform 0.2s ease;
}

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

.clean-6a41 {
  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;
}

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

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

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

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

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

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

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

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

.slider_f524 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.pink-a39c[aria-expanded="true"] .clean-ee46:nth-child(2) {
  opacity: 0;
}

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

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

  .outer_963e::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .outer_963e.gold-879b {
    display: block;
    right: 0;
  }
  
  .aside-dim-2b69 {
    flex-direction: column;
    gap: 0;
  }
  
  .shadow_static_a058 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .outer_963e::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;
  }
  
  .outer_963e.gold-879b::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .outer_963e {
    display: none;
  }
  
  .pink-a39c {
    display: flex;
  }
  
  .title-9a0a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .slider_f524,
  .notice_yellow_3acf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hidden_e31b {
    position: relative;
  }
  
  .clean-6a41 {
    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;
  }
  
  .active-6091[aria-expanded="true"] + .clean-6a41 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .disabled_dbee {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .hover_top_c774 {
    gap: 8px;
  }
  
  .slider_f524 {
    display: none;
  }
  
  .notice_yellow_3acf {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .card-5a5b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.box-0089 {
  display: flex;
  align-items: center;
  gap: 6px;
}

.box-0089 svg {
  flex-shrink: 0;
}

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

.box-0089 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.link-e428 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.text-active-36a2 {
  display: flex;
  gap: var(--space-sm);
}

.logo-steel-3b82 {
  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;
}

.stale-5f03 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stale-5f03 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.button-01a4 {
  position: relative;
  text-align: center;
}

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

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

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

.accent-lower-479b {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .glass_917f {
    grid-template-columns: 1fr;
  }
  
  .banner-2a29 {
    font-size: 1.75rem;
  }
  
  .out_4093 {
    order: -1;
    max-width: 100%;
  }
  
  .button-01a4 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner-2a29 {
    font-size: 1.5rem;
  }
  
  .layout-67cc {
    font-size: 1rem;
  }
  
  .link-e428 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .button-01a4 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.search-center-399c {
  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;
}

.alert-down-1493 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-3adf {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev-881d {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.prev-881d 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) {
  .huge_6e19 {
    grid-template-columns: 1fr;
  }
  
  .surface-b76d {
    font-size: 1.75rem;
  }
  
  .old-fef7 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .surface-b76d {
    font-size: 1.5rem;
  }
  
  .old-fef7 h3 {
    font-size: 1.375rem;
  }
  
  .old-fef7 h4 {
    font-size: 1.125rem;
  }
}

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

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

.nav-219b {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.white_81fd {
  flex-shrink: 0;
}

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

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

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

.item-black-1fbc,
.action-4ac2,
.element-hard-860f {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.item-black-1fbc thead,
.action-4ac2 thead {
  background: var(--color-primary);
  color: white;
}

.item-black-1fbc th,
.item-black-1fbc td,
.action-4ac2 th,
.action-4ac2 td,
.element-hard-860f th,
.element-hard-860f td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .item-black-1fbc th,
  .item-black-1fbc td,
  .action-4ac2 th,
  .action-4ac2 td,
  .element-hard-860f th,
  .element-hard-860f td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .item-black-1fbc,
  .action-4ac2,
  .element-hard-860f {
    min-width: 600px;
  }
}

.item-black-1fbc th,
.action-4ac2 th,
.element-hard-860f th {
  font-weight: 600;
}

.item-black-1fbc tbody tr:hover,
.action-4ac2 tbody tr:hover,
.element-hard-860f tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.new_4681 h4 {
  color: white;
}

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

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

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

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

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

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

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

.column-large-a1fc:hover {
  text-decoration: underline;
}

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

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

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

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

.mask-3273 {
  list-style: none;
  padding: 0;
}

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

.detail_7195 {
  color: #4caf50;
}

.selected_e044 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blue-878f .search-center-399c {
  width: 100%;
  background: white;
}

.accordion-hard-8540 .search-center-399c {
  color: #667eea;
}

.alert-1139 .search-center-399c {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .dark_0d2a {
    padding: var(--space-md);
  }
  
  .short_9ad8 {
    padding: var(--space-md);
  }
  
  .pro-b2aa {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.hovered_ce9d,
.row_4cf3,
.up-66d6,
.backdrop-east-252b {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.frame-46e8:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.full-2d56 {
  border-color: var(--color-success);
}

.progress-soft-6a53 {
  border-color: var(--color-warning);
}

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

.full-2d56 .tertiary_active_9d1d {
  background: #e8f5e9;
  color: var(--color-success);
}

.progress-soft-6a53 .tertiary_active_9d1d {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-outer-83e5 {
  margin-top: var(--space-xxl);
}

.clean-0bcb {
  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);
}

.image-in-8195 {
  text-align: center;
}

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

.widget-brown-88cc {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

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

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

.badge-hot-434d p {
  margin-bottom: var(--space-md);
}

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

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

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

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

.badge-north-0f8d {
  margin-bottom: var(--space-xl);
}

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

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

.image-west-5464 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.caption_da60 {
  text-align: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.overlay-center-3db3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

/* ============================================
   20. FAQ SECTION
   ============================================ */
.main-clean-6d88 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

.up-c346[aria-expanded="true"] .new_5135 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.copper-57c4,
.description_6ecd {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.copper-57c4 h4,
.description_6ecd h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.copper-57c4 ul,
.description_6ecd ul {
  list-style: none;
  padding: 0;
}

.copper-57c4 li,
.description_6ecd li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.brown-3e9e ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.avatar_dcd3 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.section-north-3853 {
  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);
}

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

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

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

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

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

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

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

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

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

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

.row_left_e787 .text-active-36a2 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.easy_7658 a:hover {
  color: white;
}

.container-short-c5a4 {
  list-style: none;
  padding: 0;
}

.container-short-c5a4 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.container-short-c5a4 a {
  color: #b0b0b0;
  text-decoration: none;
}

.container-short-c5a4 a:hover {
  color: white;
}

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

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

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

.background-small-9fe5 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .grid_dirty_a7d7 {
    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;
  }
  
  .banner-2a29 {
    font-size: 2rem;
  }
  
  .surface-b76d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .glass_917f,
  .huge_6e19 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .red-9f87,
  .section-157d,
  .motion_c468,
  .breadcrumb_static_62d6,
  .advanced_4537,
  .highlight-fixed-babf,
  .tag_up_d058,
  .nav_6b69 {
    grid-template-columns: 1fr;
  }
  
  .summary-7b60 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .fresh-a40d {
    padding: var(--space-lg) 0;
  }
  
  .module_554b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .module_554b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .search-center-399c {
    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;
  }
  
  .summary-7b60 {
    grid-template-columns: 1fr;
  }
  
  .message_ef90,
  .slow_df43,
  .avatar_new_3cea {
    flex-direction: column;
    width: 100%;
  }
  
  .prev_4d73,
  .texture_soft_6a54,
  .message_ef90 .search-center-399c,
  .slow_df43 .search-center-399c {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner-2a29 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .surface-b76d {
    font-size: 1.375rem;
  }
  
  .accordion_right_b89d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .west-0c60,
  .tooltip-fluid-cdd0,
  .border_8ead,
  .under_63ab,
  .notification-ebd7 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .sort_top_0d86 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .item_adeb {
    gap: var(--space-xs);
  }
  
  .box-0089 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .label_stale_d548 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .sort_2fa8 {
    width: 150px;
    height: 150px;
  }
  
  .widget-brown-88cc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .current_f9f7,
  .up-a656,
  .message_ef90,
  .breadcrumb_a786,
  .sort_silver_4dee,
  .summary-c0d3,
  .pink-a39c {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .fresh-a40d {
    page-break-inside: avoid;
  }
}

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

/* css-noise: c262 */
.promo-block-a4 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
