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

.pagination_medium_d28b:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.description-2ec9,
header,
.badge_blue_38c9,
.shadow_47ed,
.purple-98ea,
.hero-7753,
.stale_987c,
.outline_warm_d651,
.aside_middle_66b8 {
  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
   ============================================ */
.description-2ec9 {
  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);
}

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

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

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

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

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

.heading-1575 img {
  height: 36px;
  width: auto;
  display: block;
}

.narrow-40a5 {
  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;
}

.detail_inner_9074 {
  flex: 1;
}

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

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

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

.focus_d166.fn-active-936c {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.orange-ec46 {
  position: relative;
}

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

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

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

.article-middle-e7c6 {
  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;
}

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

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

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

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

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

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

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

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

.gallery-df32 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.menu-dbb8[aria-expanded="true"] .element-6dbb:nth-child(2) {
  opacity: 0;
}

.menu-dbb8[aria-expanded="true"] .element-6dbb:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .detail_inner_9074::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .detail_inner_9074.first-6e21 {
    display: block;
    right: 0;
  }
  
  .widget_fresh_8130 {
    flex-direction: column;
    gap: 0;
  }
  
  .focus_d166 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .detail_inner_9074::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;
  }
  
  .detail_inner_9074.first-6e21::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .detail_inner_9074 {
    display: none;
  }
  
  .menu-dbb8 {
    display: flex;
  }
  
  .narrow-40a5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .gallery-df32,
  .south_abde {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .orange-ec46 {
    position: relative;
  }
  
  .article-middle-e7c6 {
    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;
  }
  
  .container_3926[aria-expanded="true"] + .article-middle-e7c6 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .description-5124 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dropdown_left_e6da {
    gap: 8px;
  }
  
  .gallery-df32 {
    display: none;
  }
  
  .south_abde {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .heading-1575 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.south-c735 svg {
  flex-shrink: 0;
}

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

.south-c735 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.west-08d2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.west-08d2 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.cool-86b3 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .black_6d65 {
    grid-template-columns: 1fr;
  }
  
  .dim_5863 {
    font-size: 1.75rem;
  }
  
  .shade_183b {
    order: -1;
    max-width: 100%;
  }
  
  .cool-86b3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .dim_5863 {
    font-size: 1.5rem;
  }
  
  .avatar_upper_60dc {
    font-size: 1rem;
  }
  
  .advanced_4b54 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .cool-86b3 {
    max-width: 250px;
  }
}

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

.red-1d6f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-70ce {
  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);
}

.slider-basic-557d {
  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);
}

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

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

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

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

.fast-5fa5 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.fast-5fa5 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);
}

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

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

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

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

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

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

.fast-5fa5 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.fast-5fa5 a:hover {
  color: var(--color-primary-dark);
}

.row-stone-065f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.row-stone-065f 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) {
  .component_e8fc {
    grid-template-columns: 1fr;
  }
  
  .slider-basic-557d {
    font-size: 1.75rem;
  }
  
  .fast-5fa5 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slider-basic-557d {
    font-size: 1.5rem;
  }
  
  .fast-5fa5 h3 {
    font-size: 1.375rem;
  }
  
  .fast-5fa5 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.wide-336a {
  flex-shrink: 0;
}

.title-simple-09f9 strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

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

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

.pattern-cold-d138,
.widget_c9e6,
.form-eed1 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pattern-cold-d138 thead,
.widget_c9e6 thead {
  background: var(--color-primary);
  color: white;
}

.pattern-cold-d138 th,
.pattern-cold-d138 td,
.widget_c9e6 th,
.widget_c9e6 td,
.form-eed1 th,
.form-eed1 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pattern-cold-d138 th,
  .pattern-cold-d138 td,
  .widget_c9e6 th,
  .widget_c9e6 td,
  .form-eed1 th,
  .form-eed1 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .pattern-cold-d138,
  .widget_c9e6,
  .form-eed1 {
    min-width: 600px;
  }
}

.pattern-cold-d138 th,
.widget_c9e6 th,
.form-eed1 th {
  font-weight: 600;
}

.pattern-cold-d138 tbody tr:hover,
.widget_c9e6 tbody tr:hover,
.form-eed1 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.active-25d3 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.active-left-8a32 {
  font-weight: 600;
  color: white;
}

.layout-934f {
  list-style: none;
  padding: 0;
}

.layout-934f li {
  padding: var(--space-xs) 0;
}

.small_f8f6 {
  color: #4caf50;
}

.iron_dbd7 {
  color: #ff9800;
}

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

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

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

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

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

.tabs-glass-1a91 {
  font-weight: 700;
  color: var(--color-text);
  text-align: right;
}

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

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

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

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

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

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

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

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

.active-left-8a32 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label-fee2 .chip-8fc0 {
  width: 100%;
  background: white;
}

.mask_full_f84e .chip-8fc0 {
  color: #667eea;
}

.sidebar-75ee .chip-8fc0 {
  color: #f5576c;
}

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

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

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

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

.block-medium-edf3 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .block-medium-edf3 {
    padding: var(--space-md);
  }
  
  .texture_69a0 {
    padding: var(--space-md);
  }
  
  .icon_left_0264 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.stone_c3bd,
.feature_under_a8b1,
.hard-c70a,
.backdrop_20a4 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

.caption-bottom-9cdd {
  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) {
  .caption-bottom-9cdd {
    font-size: 0.625rem;
  }
}

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

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

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

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

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

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

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

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

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

.block-outer-e004 {
  border-color: var(--color-success);
}

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

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

.block-outer-e004 .background_6004 {
  background: #e8f5e9;
  color: var(--color-success);
}

.description_brown_7aa3 .background_6004 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.background-7ad1 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.row-smooth-710e {
  margin-top: var(--space-xxl);
}

.tertiary-east-4e22 {
  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);
}

.icon-iron-d7d2 {
  text-align: center;
}

.video-0fb4 {
  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);
}

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

.video-0fb4 .active-left-8a32 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

@media (max-width: 768px) {
  .tertiary-east-4e22 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-medium-801a {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.block-old-5139 {
  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;
}

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

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

.thumbnail-cold-4bbf {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.short_5b2e {
  text-align: right;
}

.short_5b2e .accordion-light-6906 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.gas-0b43 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

.red-862e {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-top-aa20 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.focus_ae44[aria-expanded="true"] .search-top-aa20 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .form-hovered-5fbf {
    grid-template-columns: 1fr;
  }
}

.thick-386a,
.banner_e0f6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.thick-386a h4,
.banner_e0f6 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.thick-386a ul,
.banner_e0f6 ul {
  list-style: none;
  padding: 0;
}

.thick-386a li,
.banner_e0f6 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.last-6114 {
  font-style: italic;
}

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

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

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

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

.icon-blue-7f50 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-353b {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aside-353b li {
  margin-bottom: var(--space-xs);
}

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

.aside-353b a:hover {
  color: white;
}

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

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

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

.modal-4b4e {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.modal-4b4e a {
  color: #808080;
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.modal-4b4e a:hover {
  color: white;
}

.layout-active-5f27 > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

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

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

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

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

.fixed-bd62 .north_f56d {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.menu_gold_6834 a:hover {
  color: white;
}

.hover-9b40 {
  list-style: none;
  padding: 0;
}

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

.hover-9b40 a {
  color: #b0b0b0;
  text-decoration: none;
}

.hover-9b40 a:hover {
  color: white;
}

.layout-active-5f27 {
  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);
}

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

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

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

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

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

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

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

.hover-iron-b774:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .layout-active-5f27 {
    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;
  }
  
  .dim_5863 {
    font-size: 2rem;
  }
  
  .slider-basic-557d {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .black_6d65,
  .component_e8fc {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .description-4716,
  .table-fast-f60d,
  .dirty-5e41,
  .over_e79b,
  .form-hovered-5fbf,
  .red_6ac0,
  .element_pressed_3706,
  .notification-e900,
  .backdrop_upper_403b {
    grid-template-columns: 1fr;
  }
  
  .tag-5663 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .stale_987c {
    padding: var(--space-lg) 0;
  }
  
  .breadcrumb_0c30 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .breadcrumb_0c30 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .chip-8fc0 {
    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;
  }
  
  .tag-5663 {
    grid-template-columns: 1fr;
  }
  
  .sidebar-a4e6,
  .icon-blue-7f50,
  .article-hard-1cbd {
    flex-direction: column;
    width: 100%;
  }
  
  .out_caba,
  .new_852c,
  .sidebar-a4e6 .chip-8fc0,
  .icon-blue-7f50 .chip-8fc0 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .dim_5863 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slider-basic-557d {
    font-size: 1.375rem;
  }
  
  .modal-fcf8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .up_0223,
  .orange-67de,
  .card_bfca,
  .media-3549,
  .pressed-337d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .caption-bottom-9cdd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .article-fresh-4852 {
    gap: var(--space-xs);
  }
  
  .south-c735 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .table_216b {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .video-0fb4 {
    width: 150px;
    height: 150px;
  }
  
  .carousel-253a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .description-2ec9,
  .badge_blue_38c9,
  .sidebar-a4e6,
  .advanced_0aae,
  .outline_warm_d651,
  .aside_middle_66b8,
  .menu-dbb8 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .stale_987c {
    page-break-inside: avoid;
  }
}

/* css-noise: 3416 */
.shadow-element-g3 {
  padding: 0.3rem;
  font-size: 13px;
  line-height: 1.3;
}
