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

.gas-06c4:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container.
   html/body are excluded on purpose: releasing their max-width removes the
   last guard against a horizontally scrollable page. */
.active-d38a,
header,
.secondary_edad,
.silver-f797,
.message-6858,
.mask-next-9257,
.tertiary_rough_f7de,
.status-11d2,
.column_green_fba8 {
  max-width: none;
}

/* overflow-x stays off <html>: pairing it with body's hidden turns <html>
   into its own scroll container and breaks the sticky header. */
html,
body {
  width: 100%;
  max-width: 100%;
}

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

.alert-fixed-6fe6 {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.card-top-3963 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.card_9336 {
  flex: 1;
}

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

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

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

.paper_4e98.orange-499d {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.search-complex-fe5b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .card_9336 {
    display: none;
  }
  
  .shadow_1441 {
    display: flex;
  }
  
  .top_d233 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .search-complex-fe5b,
  .photo_narrow_eb5d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .hover_0bc8 {
    position: relative;
  }
  
  .backdrop-7ebc {
    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;
  }
  
  .layout_simple_8b43[aria-expanded="true"] + .backdrop-7ebc {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .brown_c3be {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .modal-cool-b0e7 {
    gap: 8px;
  }
  
  .search-complex-fe5b {
    display: none;
  }
  
  .photo_narrow_eb5d {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .card-top-3963 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.active_dim_9cd5 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.border-3c51 {
  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;
}

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

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

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

.dark-1d72 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pagination-ae66 {
    grid-template-columns: 1fr;
  }
  
  .input_cold_7982 {
    font-size: 1.75rem;
  }
  
  .green_45f1 {
    order: -1;
    max-width: 100%;
  }
  
  .layout_brown_2ebe {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .input_cold_7982 {
    font-size: 1.5rem;
  }
  
  .text_soft_abab {
    font-size: 1rem;
  }
  
  .action_eba2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .layout_brown_2ebe {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.simple-44c1 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.grid-86a9 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gas_6380 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) {
  .article_stone_9815 {
    grid-template-columns: 1fr;
  }
  
  .grid-86a9 {
    font-size: 1.75rem;
  }
  
  .lower_2a2c {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-86a9 {
    font-size: 1.5rem;
  }
  
  .lower_2a2c h3 {
    font-size: 1.375rem;
  }
  
  .lower_2a2c h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.outer-2a09 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.under-3b00 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.badge-abbc {
  flex-shrink: 0;
}

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

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

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

.tag_9048,
.bronze-4bba,
.smooth-3651 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tag_9048 thead,
.bronze-4bba thead {
  background: var(--color-primary);
  color: white;
}

.tag_9048 th,
.tag_9048 td,
.bronze-4bba th,
.bronze-4bba td,
.smooth-3651 th,
.smooth-3651 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tag_9048 th,
  .tag_9048 td,
  .bronze-4bba th,
  .bronze-4bba td,
  .smooth-3651 th,
  .smooth-3651 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .tag_9048,
  .bronze-4bba,
  .smooth-3651 {
    min-width: 600px;
  }
}

.tag_9048 th,
.bronze-4bba th,
.smooth-3651 th {
  font-weight: 600;
}

.tag_9048 tbody tr:hover,
.bronze-4bba tbody tr:hover,
.smooth-3651 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.up-3b73 h4 {
  color: white;
}

.search-stale-9c51 {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

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

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

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

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

.popup-inner-9bf5:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.footer_green_6fcf {
  color: #4caf50;
}

.cool_42da {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

.menu-smooth-83d7 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.shade-ea1f .detail_advanced_5c00 {
  width: 100%;
  background: white;
}

.gallery-iron-9480 .detail_advanced_5c00 {
  color: #667eea;
}

.dynamic_de33 .detail_advanced_5c00 {
  color: #f5576c;
}

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

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

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

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

.easy-b709 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

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

@media (max-width: 768px) {
  .easy-b709 {
    padding: var(--space-md);
  }
  
  .white-e93c {
    padding: var(--space-md);
  }
  
  .text-7344 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.photo-cool-df68,
.backdrop_ad75,
.disabled-6f4e,
.primary-c147 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-static-a36d {
  border-color: var(--color-success);
}

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

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

.form-static-a36d .input-baa9 {
  background: #e8f5e9;
  color: var(--color-success);
}

.wrapper_1e2a .input-baa9 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.gas-4f42 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.media-d448 {
  text-align: center;
}

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

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

.feature_d0ee .breadcrumb_new_10c1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.content-fixed-0ea2 {
  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;
}

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

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

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

.notification-white-9157 {
  text-align: right;
}

.notification-white-9157 .sidebar-cdcc {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.backdrop-basic-3c59 {
  text-align: center;
  margin-top: var(--space-xl);
}

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

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

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

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

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

.panel-cd3d[aria-expanded="true"] .tabs_6e8e {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.block-hovered-d85a {
  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);
}

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

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

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

.form_603d,
.complex-e0ec {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form_603d h4,
.complex-e0ec h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.form_603d ul,
.complex-e0ec ul {
  list-style: none;
  padding: 0;
}

.form_603d li,
.complex-e0ec li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.texture-under-7b6e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.hidden-complex-8ae3 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.right_ea5b .card-f6fe {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.table_static_4003 a:hover {
  color: white;
}

.text-in-6c86 {
  list-style: none;
  padding: 0;
}

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

.text-in-6c86 a {
  color: #b0b0b0;
  text-decoration: none;
}

.text-in-6c86 a:hover {
  color: white;
}

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

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

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

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

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

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

.primary-cc8d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .feature_middle_b1d8 {
    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;
  }
  
  .input_cold_7982 {
    font-size: 2rem;
  }
  
  .grid-86a9 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination-ae66,
  .article_stone_9815 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .secondary-5bc5,
  .link_under_63a4,
  .old-77db,
  .fixed-54bf,
  .outline-f5b8,
  .green-9a26,
  .focus_smooth_ad30,
  .progress-stale-b187 {
    grid-template-columns: 1fr;
  }
  
  .bronze-dff4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tertiary_rough_f7de {
    padding: var(--space-lg) 0;
  }
  
  .right_e9bd li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .right_e9bd li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .detail_advanced_5c00 {
    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;
  }
  
  .bronze-dff4 {
    grid-template-columns: 1fr;
  }
  
  .dark-1d72,
  .logo-4996,
  .input_huge_e18b {
    flex-direction: column;
    width: 100%;
  }
  
  .simple-44c1,
  .banner_warm_3781,
  .dark-1d72 .detail_advanced_5c00,
  .logo-4996 .detail_advanced_5c00 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .input_cold_7982 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .grid-86a9 {
    font-size: 1.375rem;
  }
  
  .focused_3f8b {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .mask-hard-b752,
  .white-ab06,
  .link_8f88,
  .carousel_d05f,
  .active_2bcc {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .table-48f5 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .main_dim_4af8 {
    gap: var(--space-xs);
  }
  
  .active_dim_9cd5 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .logo_medium_c30c {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .feature_d0ee {
    width: 150px;
    height: 150px;
  }
  
  .main_west_9ca0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .active-d38a,
  .secondary_edad,
  .dark-1d72,
  .red-7de7,
  .status-11d2,
  .column_green_fba8,
  .shadow_1441 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tertiary_rough_f7de {
    page-break-inside: avoid;
  }
}

/* css-noise: eb39 */
.breadcrumb-65dc {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.3;
}

/* css-noise: 96a4 */
.ghost-box-q0 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.2;
}
