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

.motion_0080:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.fluid-f0f7,
header,
.center-b718,
.hard_93ce,
.icon_109a,
.form_b339,
.under_8b93,
.notification_simple_d08e,
.secondary-selected-1980 {
  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
   ============================================ */
.fluid-f0f7 {
  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);
}

.modal-inner-ea88 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.nav-a7ec img {
  height: 36px;
  width: auto;
  display: block;
}

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

.text_tall_cebe {
  flex: 1;
}

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

.iron-277a {
  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);
}

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

.iron-277a.fn-active-9370 {
  background: var(--color-primary);
  color: white;
}

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

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

.table-f1fe svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.summary_bd95 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.header-hovered-1bdc {
  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;
}

.header-hovered-1bdc: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);
}

.header-hovered-1bdc svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

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

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

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

  .text_tall_cebe::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .text_tall_cebe.hard-6132 {
    display: block;
    right: 0;
  }
  
  .north_8c0f {
    flex-direction: column;
    gap: 0;
  }
  
  .iron-277a {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .text_tall_cebe::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;
  }
  
  .text_tall_cebe.hard-6132::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .text_tall_cebe {
    display: none;
  }
  
  .popup_a9f0 {
    display: flex;
  }
  
  .light_9170 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .summary_bd95,
  .header-hovered-1bdc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .mini_3958 {
    position: relative;
  }
  
  .frame_west_850c {
    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;
  }
  
  .table-f1fe[aria-expanded="true"] + .frame_west_850c {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .content-medium-7141 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .title_warm_85ba {
    gap: 8px;
  }
  
  .summary_bd95 {
    display: none;
  }
  
  .header-hovered-1bdc {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .nav-a7ec img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .header-hovered-1bdc {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .header-hovered-1bdc svg {
    width: 14px;
    height: 14px;
  }
  
  .background-dynamic-1cc1 {
    gap: var(--space-sm);
  }
}

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

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

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

.steel-5202 svg {
  flex-shrink: 0;
}

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

.steel-5202 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.button-16ba {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

.frame-bottom-961e {
  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;
}

.narrow-179f {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.narrow-179f strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

.grid_rough_c302 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .main_in_a6fd {
    grid-template-columns: 1fr;
  }
  
  .gold_87c1 {
    font-size: 1.75rem;
  }
  
  .center_04fd {
    order: -1;
    max-width: 100%;
  }
  
  .grid_rough_c302 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .gold_87c1 {
    font-size: 1.5rem;
  }
  
  .center-eea8 {
    font-size: 1rem;
  }
  
  .search_hovered_b16e {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .grid_rough_c302 {
    max-width: 250px;
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.banner-yellow-0e2a {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown-liquid-0ca0 {
  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);
}

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

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

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

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

.mask-80a1 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.mask-80a1 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);
}

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

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

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

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

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

.mask-80a1 strong {
  font-weight: 600;
  color: var(--color-text);
}

.mask-80a1 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.mask-80a1 a:hover {
  color: var(--color-primary-dark);
}

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

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

.component_c3c3 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) {
  .list_focused_a66c {
    grid-template-columns: 1fr;
  }
  
  .dropdown-liquid-0ca0 {
    font-size: 1.75rem;
  }
  
  .mask-80a1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .dropdown-liquid-0ca0 {
    font-size: 1.5rem;
  }
  
  .mask-80a1 h3 {
    font-size: 1.375rem;
  }
  
  .mask-80a1 h4 {
    font-size: 1.125rem;
  }
}

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

.header-4c6f {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.slow-20c6 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.heading-up-709c {
  flex-shrink: 0;
}

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

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

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

.feature_small_27d6,
.table-42a2,
.link-9a8a {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature_small_27d6 thead,
.table-42a2 thead {
  background: var(--color-primary);
  color: white;
}

.feature_small_27d6 th,
.feature_small_27d6 td,
.table-42a2 th,
.table-42a2 td,
.link-9a8a th,
.link-9a8a td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .feature_small_27d6 th,
  .feature_small_27d6 td,
  .table-42a2 th,
  .table-42a2 td,
  .link-9a8a th,
  .link-9a8a td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .feature_small_27d6,
  .table-42a2,
  .link-9a8a {
    min-width: 600px;
  }
}

.feature_small_27d6 th,
.table-42a2 th,
.link-9a8a th {
  font-weight: 600;
}

.feature_small_27d6 tbody tr:hover,
.table-42a2 tbody tr:hover,
.link-9a8a tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.east-3612 h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

.warm_e62e {
  font-weight: 600;
  color: white;
}

.notice-c0a2 {
  list-style: none;
  padding: 0;
}

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

.easy-1c64 {
  color: #4caf50;
}

.carousel-fast-157f {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input_hovered_8de2 .banner-yellow-0e2a {
  width: 100%;
  background: white;
}

.main-last-9651 .banner-yellow-0e2a {
  color: #667eea;
}

.focused-5cb6 .banner-yellow-0e2a {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.message-pink-442d {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.tag-4c73 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .tag-4c73 {
    padding: var(--space-md);
  }
  
  .solid-be4c {
    padding: var(--space-md);
  }
  
  .row_e684 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.hero-7dc5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.form-f3a1,
.rough-2444,
.hover-east-5dfb,
.overlay-6ae9 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.table-34ac:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.frame-new-37b1 {
  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);
}

.heading_a3de .frame-new-37b1 {
  background: #e8f5e9;
  color: var(--color-success);
}

.component_lower_91a8 .frame-new-37b1 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thick-039a {
  text-align: center;
}

.shadow-medium-40e0 {
  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);
}

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

.shadow-medium-40e0 .warm_e62e {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.video-cold-9899 {
  margin-bottom: var(--space-xl);
}

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

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

.row-bright-d11c {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.black_f297 {
  text-align: right;
}

.black_f297 .pagination_out_bc63 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

.detail-orange-09b9 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

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

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

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

.notification-1e6d {
  background: #fff3e0;
  color: #e65100;
}

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

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

.status-lower-dc9d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.accent_narrow_2062[aria-expanded="true"] .smooth-dc47 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.filter-stone-6f05 {
  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);
}

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

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

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

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

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

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

.hero_fluid_c4c8 h4,
.west_e91b h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.hero_fluid_c4c8 ul,
.west_e91b ul {
  list-style: none;
  padding: 0;
}

.hero_fluid_c4c8 li,
.west_e91b li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow-focused-47e9 {
  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);
}

.grid-copper-c0b4 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tertiary-e013 .button-ba45 {
  color: #4caf50;
  font-size: 0.875rem;
}

.progress-red-94fb {
  list-style: none;
  padding: 0;
}

.progress-red-94fb li {
  margin-bottom: var(--space-xs);
}

.progress-red-94fb a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.progress-red-94fb a:hover {
  color: white;
}

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

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

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

.notice_7085 a:hover {
  color: white;
}

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

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

.left-11e1 a {
  color: #4caf50;
  text-decoration: none;
}

.backdrop-narrow-087e {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

@media (max-width: 768px) {
  .accordion_7c1a {
    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;
  }
  
  .gold_87c1 {
    font-size: 2rem;
  }
  
  .dropdown-liquid-0ca0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .main_in_a6fd,
  .list_focused_a66c {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .text_c524,
  .frame_147a,
  .texture-top-f675,
  .gallery_out_b6ca,
  .west_c302,
  .component-green-924c,
  .dim-e7f6,
  .full-f4ae {
    grid-template-columns: 1fr;
  }
  
  .popup-7736 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .under_8b93 {
    padding: var(--space-lg) 0;
  }
  
  .label_69fd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .label_69fd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .banner-yellow-0e2a {
    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;
  }
  
  .popup-7736 {
    grid-template-columns: 1fr;
  }
  
  .block_0c56,
  .full_2416,
  .dark_12ea {
    flex-direction: column;
    width: 100%;
  }
  
  .component_out_becd,
  .simple_02a0,
  .block_0c56 .banner-yellow-0e2a,
  .full_2416 .banner-yellow-0e2a {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .gold_87c1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .dropdown-liquid-0ca0 {
    font-size: 1.375rem;
  }
  
  .thick_4b8b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .search_small_c868,
  .inner_3949,
  .notice_blue_508c,
  .wood-a549,
  .progress_5e94 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .aside-dark-c634 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .surface_soft_ed6b {
    gap: var(--space-xs);
  }
  
  .steel-5202 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .row_huge_217c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shadow-medium-40e0 {
    width: 150px;
    height: 150px;
  }
  
  .list-next-4d32 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .fluid-f0f7,
  .center-b718,
  .block_0c56,
  .focus_in_f76f,
  .notification_simple_d08e,
  .secondary-selected-1980,
  .popup_a9f0 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .under_8b93 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5772 */
.ghost-box-l1 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.3;
}
