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

.link-70bb:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.focused_cb6c,
header,
.fixed-fb79,
.section_70a5,
.article_c023,
.accordion-0a81,
.link-hard-5228,
.article_174d,
.in_0831 {
  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
   ============================================ */
.focused_cb6c {
  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);
}

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

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

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

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

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

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

.filter-large-3aff {
  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;
}

.lite-ec16 {
  flex: 1;
}

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

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

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

.blue_be75.fn-active-0adf {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.heading_7af4 svg {
  flex-shrink: 0;
}

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

.new-5d04: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);
}

.new-5d04 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .lite-ec16::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .lite-ec16.liquid-cda7 {
    display: block;
    right: 0;
  }
  
  .preview-gold-93d0 {
    flex-direction: column;
    gap: 0;
  }
  
  .blue_be75 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .lite-ec16::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;
  }
  
  .lite-ec16.liquid-cda7::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .lite-ec16 {
    display: none;
  }
  
  .search_c346 {
    display: flex;
  }
  
  .filter-large-3aff {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .heading_7af4,
  .new-5d04 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .alert_9385 {
    position: relative;
  }
  
  .popup_abd1 {
    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;
  }
  
  .hovered_1c69[aria-expanded="true"] + .popup_abd1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .tag_iron_1f8a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

@media (max-width: 480px) {
  .new-5d04 {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .new-5d04 svg {
    width: 14px;
    height: 14px;
  }
  
  .tiny-e376 {
    gap: var(--space-sm);
  }
}

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

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

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

.avatar_394a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.simple-85d0 a {
  color: var(--color-primary);
  text-decoration: none;
}

.simple-85d0 a:hover {
  text-decoration: underline;
}

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

.hover-simple-3cd8 {
  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) {
  .hover-simple-3cd8 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hover-simple-3cd8 {
    font-size: 1.5rem;
  }
}

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

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

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

.selected-3d0f {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.frame-dark-07fe {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .center_ae63 {
    grid-template-columns: 1fr;
  }
  
  .hover-simple-3cd8 {
    font-size: 1.75rem;
  }
  
  .current-a4fe {
    order: -1;
    max-width: 100%;
  }
  
  .frame-dark-07fe {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover-simple-3cd8 {
    font-size: 1.5rem;
  }
  
  .media-basic-2682 {
    font-size: 1rem;
  }
  
  .simple-85d0 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .frame-dark-07fe {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.detail-069f {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.input-hovered-4a53 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.input-826e {
  list-style: none;
  counter-reset: toc-counter;
}

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

.input-826e 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);
}

.input-826e 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;
}

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

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

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

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

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

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

.backdrop-steel-42ed {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-tiny-9ce4 {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.paragraph-tiny-9ce4 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) {
  .block-last-83b2 {
    grid-template-columns: 1fr;
  }
  
  .link_0e5f {
    font-size: 1.75rem;
  }
  
  .info_4a9d {
    max-width: 100%;
  }
}

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

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

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

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

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

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

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

.table_7f99 {
  flex-shrink: 0;
}

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

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

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

.input-e46a,
.layout_fluid_e82b,
.tag_bottom_1325 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.input-e46a thead,
.layout_fluid_e82b thead {
  background: var(--color-primary);
  color: white;
}

.input-e46a th,
.input-e46a td,
.layout_fluid_e82b th,
.layout_fluid_e82b td,
.tag_bottom_1325 th,
.tag_bottom_1325 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .input-e46a th,
  .input-e46a td,
  .layout_fluid_e82b th,
  .layout_fluid_e82b td,
  .tag_bottom_1325 th,
  .tag_bottom_1325 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .input-e46a,
  .layout_fluid_e82b,
  .tag_bottom_1325 {
    min-width: 600px;
  }
}

.input-e46a th,
.layout_fluid_e82b th,
.tag_bottom_1325 th {
  font-weight: 600;
}

.input-e46a tbody tr:hover,
.layout_fluid_e82b tbody tr:hover,
.tag_bottom_1325 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pro_607a h4 {
  color: white;
}

.shadow-wide-3ce6 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.preview-plasma-343e:hover {
  text-decoration: underline;
}

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

.warm-0a58 {
  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);
}

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

.pattern-hot-d9c9 {
  font-weight: 600;
  color: white;
}

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

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

.disabled-4650 {
  color: #4caf50;
}

.green_6516 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.preview-3a10 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.notification-4902 .wide_131b {
  width: 100%;
  background: white;
}

.photo-middle-6d16 .wide_131b {
  color: #667eea;
}

.logo-1a8c .wide_131b {
  color: #f5576c;
}

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

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

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

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

.carousel-black-5151 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .carousel-black-5151 {
    padding: var(--space-md);
  }
  
  .soft-9223 {
    padding: var(--space-md);
  }
  
  .photo-5e48 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.breadcrumb_glass_d62e,
.tertiary_last_7ae9,
.badge-2e15,
.panel_c6d7 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.badge-huge-7ce3:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

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

.sidebar-2786 .in_64a3 {
  background: #e8f5e9;
  color: var(--color-success);
}

.hard_890a .in_64a3 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

.grid-paper-673b {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.yellow-6b09 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.input-5b6c {
  margin-top: var(--space-xxl);
}

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

.overlay_59c7 {
  text-align: center;
}

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

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

.filter_5162 .pattern-hot-d9c9 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-dirty-659f {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

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

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

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

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

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

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

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

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

.overlay-8613 {
  text-align: right;
}

.overlay-8613 .under-18b6 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.heading-pink-118e {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.pagination-8cc5 {
  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);
}

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

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

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

.layout-left-306b strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.nav_a26f[aria-expanded="true"] .narrow_b8ed {
  transform: rotate(180deg);
}

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

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

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

.card-outer-a5e9 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.progress-iron-6ef4 {
  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);
}

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

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

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

.cold-3fa7,
.widget-left-4c9f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.cold-3fa7 h4,
.widget-left-4c9f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.cold-3fa7 ul,
.widget-left-4c9f ul {
  list-style: none;
  padding: 0;
}

.cold-3fa7 li,
.widget-left-4c9f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.surface-paper-95a5 {
  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);
}

.disabled-pressed-e0da {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.narrow-104d {
  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);
}

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

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

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

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

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

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

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

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

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

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

.banner-in-fd98 .selected-3d0f {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.pink_d21c a:hover {
  color: white;
}

.video-copper-b7c7 {
  list-style: none;
  padding: 0;
}

.video-copper-b7c7 li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: #b0b0b0;
}

.video-copper-b7c7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.video-copper-b7c7 a:hover {
  color: white;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .info_1b4d {
    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;
  }
  
  .hover-simple-3cd8 {
    font-size: 2rem;
  }
  
  .link_0e5f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .center_ae63,
  .block-last-83b2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .detail-c8a9,
  .paragraph_slow_e6ad,
  .grid_0dbe,
  .white_0d5e,
  .lower-14e7,
  .filter_7ee8,
  .sort-f73a,
  .input-d351 {
    grid-template-columns: 1fr;
  }
  
  .dim-39d7 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .link-hard-5228 {
    padding: var(--space-lg) 0;
  }
  
  .input-826e li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .input-826e li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .wide_131b {
    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;
  }
  
  .dim-39d7 {
    grid-template-columns: 1fr;
  }
  
  .feature-2768,
  .badge_f353,
  .middle-968b {
    flex-direction: column;
    width: 100%;
  }
  
  .detail-069f,
  .input-hovered-4a53,
  .feature-2768 .wide_131b,
  .badge_f353 .wide_131b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover-simple-3cd8 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .link_0e5f {
    font-size: 1.375rem;
  }
  
  .top-2e7e {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .popup-2f35,
  .button_b383,
  .badge-yellow-9a8e,
  .banner_full_8afd,
  .slider-center-9b83 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .left_74c7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .wrapper-red-67fb {
    gap: var(--space-xs);
  }
  
  .avatar_394a {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .warm-0a58 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .filter_5162 {
    width: 150px;
    height: 150px;
  }
  
  .first_6dbb {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .focused_cb6c,
  .fixed-fb79,
  .feature-2768,
  .alert_bottom_2cce,
  .article_174d,
  .in_0831,
  .search_c346 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .link-hard-5228 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6ed8 */
.phantom-card-y4 {
  padding: 0.2rem;
  font-size: 14px;
  line-height: 1.1;
}
