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

.selected_8601:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .shadow-light-7e1b {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .shadow-light-7e1b {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.status-fd38,
header,
.bright_7e46,
.notification_purple_2116,
.block_fast_6a83,
.icon_hard_5221,
.filter-fb17,
.outline_pressed_48b2,
.next_56a7 {
  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
   ============================================ */
.status-fd38 {
  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);
}

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

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

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

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

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

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

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

.west-66dd {
  flex: 1;
}

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

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

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

.nav_hovered_803c.fn-active-67b9 {
  background: var(--color-primary);
  color: white;
}

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

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

.medium-c7b4 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.status_wide_e5d9 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.badge_2e28[aria-expanded="true"] .accordion-19d1:nth-child(2) {
  opacity: 0;
}

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

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

  .west-66dd::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .west-66dd.out_10d6 {
    display: block;
    right: 0;
  }
  
  .breadcrumb-dark-d9bb {
    flex-direction: column;
    gap: 0;
  }
  
  .nav_hovered_803c {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .west-66dd::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;
  }
  
  .west-66dd.out_10d6::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .west-66dd {
    display: none;
  }
  
  .badge_2e28 {
    display: flex;
  }
  
  .summary_54b5 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .status_wide_e5d9,
  .chip-8602 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .south_f74d {
    position: relative;
  }
  
  .disabled-c8f1 {
    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;
  }
  
  .medium-c7b4[aria-expanded="true"] + .disabled-c8f1 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .active-hard-8022 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .element_north_e0f3 {
    gap: 8px;
  }
  
  .status_wide_e5d9 {
    display: none;
  }
  
  .chip-8602 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .status_blue_d538 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

.title-simple-bb3e {
  display: flex;
  align-items: center;
  gap: 6px;
}

.title-simple-bb3e svg {
  flex-shrink: 0;
}

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

.title-simple-bb3e a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.fixed-f118 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.article-red-26e7 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.description-bf7d {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .footer-4e51 {
    grid-template-columns: 1fr;
  }
  
  .preview_c918 {
    font-size: 1.75rem;
  }
  
  .article-red-26e7 {
    order: -1;
    max-width: 100%;
  }
  
  .description-bf7d {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .preview_c918 {
    font-size: 1.5rem;
  }
  
  .widget-9450 {
    font-size: 1rem;
  }
  
  .fixed-f118 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .description-bf7d {
    max-width: 250px;
  }
}

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

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

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

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

.card-09d1:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.focus-rough-4f5a {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

.badge-brown-3fe2 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

.image-b9d0 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.badge_fast_6684 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) {
  .message_pressed_1360 {
    grid-template-columns: 1fr;
  }
  
  .component-66dd {
    font-size: 1.75rem;
  }
  
  .media_left_56d9 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .component-66dd {
    font-size: 1.5rem;
  }
  
  .media_left_56d9 h3 {
    font-size: 1.375rem;
  }
  
  .media_left_56d9 h4 {
    font-size: 1.125rem;
  }
}

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

.filter-3a4c {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.hot-6c88 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.hot_ec97 {
  flex-shrink: 0;
}

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

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

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

.photo_e07e,
.easy-4c5d,
.border-0436 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.photo_e07e thead,
.easy-4c5d thead {
  background: var(--color-primary);
  color: white;
}

.photo_e07e th,
.photo_e07e td,
.easy-4c5d th,
.easy-4c5d td,
.border-0436 th,
.border-0436 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .photo_e07e th,
  .photo_e07e td,
  .easy-4c5d th,
  .easy-4c5d td,
  .border-0436 th,
  .border-0436 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .photo_e07e,
  .easy-4c5d,
  .border-0436 {
    min-width: 600px;
  }
}

.photo_e07e th,
.easy-4c5d th,
.border-0436 th {
  font-weight: 600;
}

.photo_e07e tbody tr:hover,
.easy-4c5d tbody tr:hover,
.border-0436 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.media-mini-0eb2 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.sidebar-wood-ad79 {
  font-weight: 600;
  color: white;
}

.message-5371 {
  list-style: none;
  padding: 0;
}

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

.tiny_cdf5 {
  color: #4caf50;
}

.card-9ba0 {
  color: #ff9800;
}

.background-plasma-5bfb {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.notification_6f48 .hovered_edfe {
  width: 100%;
  background: white;
}

.label-tall-0ec8 .hovered_edfe {
  color: #667eea;
}

.footer_e58b .hovered_edfe {
  color: #f5576c;
}

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

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

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

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

.north-5d07 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.article-over-2fe4 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .north-5d07 {
    padding: var(--space-md);
  }
  
  .article-over-2fe4 {
    padding: var(--space-md);
  }
  
  .link-05f0 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.label_9099,
.accordion-bronze-96c7,
.soft-296d,
.list_over_7cd3 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.article-full-99b4 {
  border-color: var(--color-warning);
}

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

.search_east_4d6f .shade_white_dc45 {
  background: #e8f5e9;
  color: var(--color-success);
}

.article-full-99b4 .shade_white_dc45 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.old-15c2 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.thumbnail-f8ed {
  text-align: center;
}

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

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

.pink-7010 .sidebar-wood-ad79 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.section-first-092e {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.notification-hot-545c p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

.footer-in-33de {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.gradient-06df {
  border: 2px solid #4caf50;
}

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

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

.secondary-large-7c79 {
  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;
}

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

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

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

.background-complex-16a1 {
  text-align: right;
}

.background-complex-16a1 .active_fb04 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.progress-blue-84e9 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.frame-center-0409 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

.focused_b02a {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

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

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

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

.section-781c,
.old_555f {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.section-781c h4,
.old_555f h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.section-781c ul,
.old_555f ul {
  list-style: none;
  padding: 0;
}

.section-781c li,
.old_555f li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.background-basic-a4ea {
  font-style: italic;
}

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

.overlay-064e {
  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;
}

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

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

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

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

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

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

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

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

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

.mask-pink-86da {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.surface-yellow-5e42 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.surface-yellow-5e42 li {
  margin-bottom: var(--space-xs);
}

.surface-yellow-5e42 a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.surface-yellow-5e42 a:hover {
  color: white;
}

.widget-03a4 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.widget-03a4 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);
}

.widget-03a4 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.surface_2ebf a:hover {
  color: white;
}

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

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

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

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

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

.advanced_2e2e .menu_6fc9 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.top_bea0 a:hover {
  color: white;
}

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

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

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

.sort_brown_a8bf a:hover {
  color: white;
}

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

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

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

.title-warm-6fdc {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

.warm-cc2e:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .progress_current_d397 {
    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;
  }
  
  .preview_c918 {
    font-size: 2rem;
  }
  
  .component-66dd {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .footer-4e51,
  .message_pressed_1360 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .box-active-0831,
  .liquid_4992,
  .glass_73b4,
  .border-fb92,
  .primary-hard-b2e0,
  .message_dim_b4de,
  .wrapper_1f2f,
  .wrapper_out_6e57,
  .south_1d0e {
    grid-template-columns: 1fr;
  }
  
  .notice-basic-a3fc {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .filter-fb17 {
    padding: var(--space-lg) 0;
  }
  
  .image-b9d0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .image-b9d0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .hovered_edfe {
    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;
  }
  
  .notice-basic-a3fc {
    grid-template-columns: 1fr;
  }
  
  .narrow_1af2,
  .popup_ce50,
  .image-e21a {
    flex-direction: column;
    width: 100%;
  }
  
  .easy_659e,
  .focus-rough-4f5a,
  .narrow_1af2 .hovered_edfe,
  .popup_ce50 .hovered_edfe {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .preview_c918 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .component-66dd {
    font-size: 1.375rem;
  }
  
  .gallery-orange-27d8 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list_middle_4e02,
  .column_thick_1e21,
  .tiny_add8,
  .upper_9c7f,
  .logo-glass-185f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .medium_c596 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .outer_bd27 {
    gap: var(--space-xs);
  }
  
  .title-simple-bb3e {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .orange_7109 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .pink-7010 {
    width: 150px;
    height: 150px;
  }
  
  .iron-cd54 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .status-fd38,
  .bright_7e46,
  .narrow_1af2,
  .overlay-064e,
  .outline_pressed_48b2,
  .next_56a7,
  .badge_2e28 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .filter-fb17 {
    page-break-inside: avoid;
  }
}

/* css-noise: 9e62 */
.phantom-card-k2 {
  padding: 0.5rem;
  font-size: 12px;
  line-height: 1.2;
}
