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

.paper-3471:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.warm_57b9,
header,
.caption-tall-8c78,
.hover-3d8f,
.heading-out-27b1,
.black_a5a3,
.breadcrumb-lite-4935,
.huge-1303,
.brown_b06b {
  max-width: none;
}

/* Critical mobile fix: prevent any overflow */
section,
article,
div,
main {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Ensure images never cause overflow */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure SVG icons don't cause issues */
svg {
  max-width: 100%;
  height: auto;
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */
.warm_57b9 {
  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);
}

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

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

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

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

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

.small-dd58 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.article-smooth-cf9f {
  flex: 1;
}

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

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

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

.banner_cold_8752.fn-active-aaa4 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.east-c979 {
  position: relative;
}

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

.tertiary-fee1 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.sort-tall-78d9 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.shade-69c2 svg {
  flex-shrink: 0;
}

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

.active-motion-af89: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);
}

.active-motion-af89 svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .article-smooth-cf9f {
    display: none;
  }
  
  .next_449f {
    display: flex;
  }
  
  .paragraph_9d58 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .shade-69c2,
  .active-motion-af89 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .east-c979 {
    position: relative;
  }
  
  .container_paper_df6f {
    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;
  }
  
  .tertiary-fee1[aria-expanded="true"] + .container_paper_df6f {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .element_wood_2bd1 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .sort-tall-78d9 {
    gap: 8px;
  }
  
  .shade-69c2 {
    display: none;
  }
  
  .active-motion-af89 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .small-dd58 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.border_mini_2751 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.text-rough-9a82 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.button-north-acff {
  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;
}

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

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

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

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

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

.status-fdb9 {
  position: relative;
  text-align: center;
}

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

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

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

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

.main-upper-9b88 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

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

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

@media (max-width: 968px) {
  .form-fresh-d449 {
    grid-template-columns: 1fr;
  }
  
  .advanced_d1bd {
    font-size: 1.75rem;
  }
  
  .content-cool-7003 {
    order: -1;
    max-width: 100%;
  }
  
  .status-fdb9 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .advanced_d1bd {
    font-size: 1.5rem;
  }
  
  .avatar-9ded {
    font-size: 1rem;
  }
  
  .hover_south_961c {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .status-fdb9 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.container-rough-180a {
  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;
}

.search-soft-d97d {
  background: var(--color-primary);
  color: white;
}

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

.active-last-0e21 {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.active-last-0e21:hover {
  background: var(--color-primary);
  color: white;
}

.column-pro-78ae {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.column-pro-78ae:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.middle-915c {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

.paragraph-smooth-35f6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.box-1429 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;
}

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

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

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

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

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

.background_fef7 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.content-white-18af {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-fluid-426f {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.main-fluid-426f 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) {
  .header_black_6cec {
    grid-template-columns: 1fr;
  }
  
  .background_fef7 {
    font-size: 1.75rem;
  }
  
  .container-aa21 {
    max-width: 100%;
  }
}

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

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

.mini-6f0c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.west-f3e1 {
  flex-shrink: 0;
}

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

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

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

.widget_7aa0,
.message_liquid_eb4d,
.notification-wood-d47b {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.widget_7aa0 thead,
.message_liquid_eb4d thead {
  background: var(--color-primary);
  color: white;
}

.widget_7aa0 th,
.widget_7aa0 td,
.message_liquid_eb4d th,
.message_liquid_eb4d td,
.notification-wood-d47b th,
.notification-wood-d47b td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .widget_7aa0 th,
  .widget_7aa0 td,
  .message_liquid_eb4d th,
  .message_liquid_eb4d td,
  .notification-wood-d47b th,
  .notification-wood-d47b td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .widget_7aa0,
  .message_liquid_eb4d,
  .notification-wood-d47b {
    min-width: 600px;
  }
}

.widget_7aa0 th,
.message_liquid_eb4d th,
.notification-wood-d47b th {
  font-weight: 600;
}

.widget_7aa0 tbody tr:hover,
.message_liquid_eb4d tbody tr:hover,
.notification-wood-d47b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.disabled_next_1b28 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.west-3663 {
  font-weight: 600;
  color: white;
}

.list-orange-efe7 {
  list-style: none;
  padding: 0;
}

.list-orange-efe7 li {
  padding: var(--space-xs) 0;
}

.selected-5ac9 {
  color: #4caf50;
}

.notice-copper-6c06 {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .module-hot-2b27 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.aside-647a .container-rough-180a {
  width: 100%;
  background: white;
}

.header-c509 .container-rough-180a {
  color: #667eea;
}

.mask-bottom-abd7 .container-rough-180a {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .pressed-3482 {
    padding: var(--space-md);
  }
  
  .element_west_b405 {
    padding: var(--space-md);
  }
  
  .hover-53c1 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.mask-first-1727 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.icon-535b,
.content-hard-166a,
.sort_white_bfcf,
.box-e6b9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.content-dirty-e69d:hover {
  background: var(--color-primary-dark);
}

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

.outline-warm-28f1 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.video-focused-476a {
  border-color: var(--color-success);
}

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

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

.video-focused-476a .thumbnail_c266 {
  background: #e8f5e9;
  color: var(--color-success);
}

.heading-fb46 .thumbnail_c266 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .text-current-4cf5 {
    grid-template-columns: 1fr;
  }
}

.summary-paper-675b {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

.link-south-a22f {
  text-align: center;
}

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

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

.rough_39ea .west-3663 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.tooltip-purple-139c {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.icon-cool-9c31 p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.prev-72c2 {
  border: 2px solid #4caf50;
}

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

.backdrop-dark-66b6 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

.button-tall-99b6 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.info-56be {
  text-align: right;
}

.info-56be .static-49b9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

.media-0468 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.medium-2d25 strong {
  color: var(--color-primary);
}

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

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

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

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

.widget-63c1 {
  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);
}

.widget-63c1:hover {
  background: var(--color-bg-alt);
}

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

.widget-63c1[aria-expanded="true"] .shade_white_fdbe {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.logo-f2ed,
.surface-88c9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.logo-f2ed h4,
.surface-88c9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.logo-f2ed ul,
.surface-88c9 ul {
  list-style: none;
  padding: 0;
}

.logo-f2ed li,
.surface-88c9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .icon-fresh-78c0 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.preview-006c ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.copper_9001 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .chip-old-2cd4 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.preview_f7ca a:hover {
  color: white;
}

.middle-6e7e {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.middle-6e7e 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);
}

.middle-6e7e a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.hover_6b0f {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.hover_6b0f a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .card-150e,
  .avatar-glass-b983 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.shade-4e01 .caption_narrow_225b {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.static_ce30 a:hover {
  color: white;
}

.solid-ac46 {
  list-style: none;
  padding: 0;
}

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

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

.solid-ac46 a:hover {
  color: white;
}

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

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

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

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

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

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

.hidden-06bf 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;
}

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

.complex-aecd:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .modal_ff8e {
    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;
  }
  
  .advanced_d1bd {
    font-size: 2rem;
  }
  
  .background_fef7 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .form-fresh-d449,
  .header_black_6cec {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .module-hot-2b27,
  .warm-938f,
  .left-d23f,
  .text-current-4cf5,
  .wrapper-0d79,
  .icon-fresh-78c0,
  .chip-old-2cd4,
  .card-150e,
  .avatar-glass-b983 {
    grid-template-columns: 1fr;
  }
  
  .aside_thick_c69c {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .breadcrumb-lite-4935 {
    padding: var(--space-lg) 0;
  }
  
  .box-1429 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .box-1429 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .container-rough-180a {
    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;
  }
  
  .aside_thick_c69c {
    grid-template-columns: 1fr;
  }
  
  .overlay-d814,
  .paper-cbda,
  .pattern_under_75b1 {
    flex-direction: column;
    width: 100%;
  }
  
  .middle-915c,
  .modal_hovered_a768,
  .overlay-d814 .container-rough-180a,
  .paper-cbda .container-rough-180a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .advanced_d1bd {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .background_fef7 {
    font-size: 1.375rem;
  }
  
  .shadow-dce8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .table_47ff,
  .article-66ad,
  .banner-6dc7,
  .alert-4f39,
  .carousel-3961 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .glass-c13d {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .new_71c3 {
    gap: var(--space-xs);
  }
  
  .border_mini_2751 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .surface_top_24cc {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .rough_39ea {
    width: 150px;
    height: 150px;
  }
  
  .button_3dc9 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .warm_57b9,
  .caption-tall-8c78,
  .overlay-d814,
  .summary_769a,
  .huge-1303,
  .brown_b06b,
  .next_449f {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .breadcrumb-lite-4935 {
    page-break-inside: avoid;
  }
}

/* css-noise: 31d2 */
.ghost-box-w1 {
  padding: 0.5rem;
  font-size: 14px;
  line-height: 1.0;
}
