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

.static-d958:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.icon_north_cfc1,
header,
.clean_2913,
.basic_2b43,
.middle_5c3f,
.bright_2ba1,
.heading-0f8a,
.east_2b80,
.smooth_3ec3 {
  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
   ============================================ */
.icon_north_cfc1 {
  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);
}

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

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

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

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

.primary-paper-83d2 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.cold-dfea img {
  height: 36px;
  width: auto;
  display: block;
}

.banner-huge-576a {
  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;
}

.warm_912d {
  flex: 1;
}

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

.section-tiny-284e {
  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);
}

.section-tiny-284e:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.section-tiny-284e.fn-active-a32c {
  background: var(--color-primary);
  color: white;
}

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

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

.wide-a6b1 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.lite-4b7a svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

  .warm_912d::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .warm_912d.heading-a676 {
    display: block;
    right: 0;
  }
  
  .box-c568 {
    flex-direction: column;
    gap: 0;
  }
  
  .section-tiny-284e {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .warm_912d::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;
  }
  
  .warm_912d.heading-a676::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .warm_912d {
    display: none;
  }
  
  .hero_e3b9 {
    display: flex;
  }
  
  .banner-huge-576a {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .lite-4b7a,
  .brown_12a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .inner_b1bd {
    position: relative;
  }
  
  .widget_huge_2789 {
    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;
  }
  
  .wide-a6b1[aria-expanded="true"] + .widget_huge_2789 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .background_8d6c {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .secondary_401d {
    gap: 8px;
  }
  
  .lite-4b7a {
    display: none;
  }
  
  .brown_12a8 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .cold-dfea img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.backdrop_advanced_8187 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.texture-ed4e {
  display: flex;
  gap: var(--space-sm);
}

.easy-0f46 {
  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;
}

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

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

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

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

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

.logo-6ccd {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .main_2559 {
    grid-template-columns: 1fr;
  }
  
  .detail-d2c1 {
    font-size: 1.75rem;
  }
  
  .thumbnail_716f {
    order: -1;
    max-width: 100%;
  }
  
  .logo-6ccd {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .detail-d2c1 {
    font-size: 1.5rem;
  }
  
  .tiny-0d65 {
    font-size: 1rem;
  }
  
  .module_current_88ef {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .logo-6ccd {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row-under-c6da {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

.main-24b3 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.main-24b3 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);
}

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

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

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

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

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

.main-24b3 strong {
  font-weight: 600;
  color: var(--color-text);
}

.main-24b3 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.main-24b3 a:hover {
  color: var(--color-primary-dark);
}

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

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

.dropdown-6696 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) {
  .static_0b2b {
    grid-template-columns: 1fr;
  }
  
  .nav-d648 {
    font-size: 1.75rem;
  }
  
  .main-24b3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-d648 {
    font-size: 1.5rem;
  }
  
  .main-24b3 h3 {
    font-size: 1.375rem;
  }
  
  .main-24b3 h4 {
    font-size: 1.125rem;
  }
}

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

.next-291b {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.label-large-362f {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

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

.active_down_0d36 {
  flex-shrink: 0;
}

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

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

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

.row_paper_1f7a,
.module-clean-997c,
.carousel_0c07 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.row_paper_1f7a thead,
.module-clean-997c thead {
  background: var(--color-primary);
  color: white;
}

.row_paper_1f7a th,
.row_paper_1f7a td,
.module-clean-997c th,
.module-clean-997c td,
.carousel_0c07 th,
.carousel_0c07 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .row_paper_1f7a th,
  .row_paper_1f7a td,
  .module-clean-997c th,
  .module-clean-997c td,
  .carousel_0c07 th,
  .carousel_0c07 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .row_paper_1f7a,
  .module-clean-997c,
  .carousel_0c07 {
    min-width: 600px;
  }
}

.row_paper_1f7a th,
.module-clean-997c th,
.carousel_0c07 th {
  font-weight: 600;
}

.row_paper_1f7a tbody tr:hover,
.module-clean-997c tbody tr:hover,
.carousel_0c07 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.image-pressed-669b h4 {
  color: white;
}

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

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

.focus-brown-807f:last-child {
  border-bottom: none;
}

.focus-brown-807f dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.focus-brown-807f dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

.list-huge-5dae {
  font-weight: 600;
  color: white;
}

.dark-8642 {
  list-style: none;
  padding: 0;
}

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

.article_6bcd {
  color: #4caf50;
}

.detail-gold-5ec6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-huge-5dae {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

.section-left-e2d9 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.wrapper_81be .footer-red-9053 {
  width: 100%;
  background: white;
}

.status-pro-9537 .footer-red-9053 {
  color: #667eea;
}

.chip_b2c8 .footer-red-9053 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .element-white-a16c {
    padding: var(--space-md);
  }
  
  .active_silver_f6c8 {
    padding: var(--space-md);
  }
  
  .heading_gold_c21d {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tertiary_57ad,
.pagination_7114,
.header-pink-1744,
.article-f8b1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.silver-729a h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.simple-3e39 {
  border-color: var(--color-success);
}

.summary-active-af54 {
  border-color: var(--color-warning);
}

.motion-713f {
  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);
}

.simple-3e39 .motion-713f {
  background: #e8f5e9;
  color: var(--color-success);
}

.summary-active-af54 .motion-713f {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.banner-1e13 {
  text-align: center;
}

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

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

.right-ff71 .list-huge-5dae {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.carousel-motion-d90b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.hidden-pro-4d47 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.tertiary-dynamic-c157 {
  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;
}

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

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

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

.picture-advanced-182a {
  text-align: right;
}

.picture-advanced-182a .hero-ae0b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.gradient-27ce {
  background: #e8f5e9;
  color: #2e7d32;
}

.upper-eea8 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.main-479a {
  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);
}

.main-479a:hover {
  background: var(--color-bg-alt);
}

.under-6d8c {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.main-479a[aria-expanded="true"] .under-6d8c {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-e5b0,
.dim_ba13 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.tooltip-e5b0 h4,
.dim_ba13 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.tooltip-e5b0 ul,
.dim_ba13 ul {
  list-style: none;
  padding: 0;
}

.tooltip-e5b0 li,
.dim_ba13 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.primary-dirty-cde5 ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.shade-fb9d {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.image-left-2134 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.carousel_c053 a:hover {
  color: white;
}

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

.main-96f1 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.main-96f1 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.progress-lower-0dd3 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.progress-lower-0dd3 a:hover {
  color: white;
}

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

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

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

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

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

.shade_silver_f877 .texture-ed4e {
  color: #4caf50;
  font-size: 0.875rem;
}

.info-fa04 {
  list-style: none;
  padding: 0;
}

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

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

.info-fa04 a:hover {
  color: white;
}

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

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

.in_6962 a {
  color: #b0b0b0;
  text-decoration: none;
}

.in_6962 a:hover {
  color: white;
}

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

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

.column-huge-d1d6 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.new_332d a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .notification_north_0ec2 {
    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;
  }
  
  .detail-d2c1 {
    font-size: 2rem;
  }
  
  .nav-d648 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .main_2559,
  .static_0b2b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .pagination-hard-fd72,
  .widget_dad6,
  .info_fixed_2371,
  .basic-79fe,
  .block_narrow_0693,
  .simple_5c1e,
  .hard-e877,
  .rough_2044,
  .image-left-2134 {
    grid-template-columns: 1fr;
  }
  
  .alert_light_83f6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .heading-0f8a {
    padding: var(--space-lg) 0;
  }
  
  .preview_d6b3 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .preview_d6b3 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .footer-red-9053 {
    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;
  }
  
  .alert_light_83f6 {
    grid-template-columns: 1fr;
  }
  
  .block_hard_a0bf,
  .wide-c0b6,
  .description_upper_70af {
    flex-direction: column;
    width: 100%;
  }
  
  .hero_5416,
  .rough_a6e0,
  .block_hard_a0bf .footer-red-9053,
  .wide-c0b6 .footer-red-9053 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .detail-d2c1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .nav-d648 {
    font-size: 1.375rem;
  }
  
  .highlight_cool_ea90 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .mini-fd72,
  .secondary_large_2dd1,
  .background-a541,
  .inner_c113,
  .frame_selected_75e9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .column_9dcd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .light_a5b8 {
    gap: var(--space-xs);
  }
  
  .backdrop_advanced_8187 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .carousel-ba96 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .right-ff71 {
    width: 150px;
    height: 150px;
  }
  
  .layout-out-b6dc {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .icon_north_cfc1,
  .clean_2913,
  .block_hard_a0bf,
  .plasma-2771,
  .east_2b80,
  .smooth_3ec3,
  .hero_e3b9 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .heading-0f8a {
    page-break-inside: avoid;
  }
}

/* css-noise: a6d8 */
.phantom-card-w2 {
  padding: 0.5rem;
  font-size: 10px;
  line-height: 1.3;
}
