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

.link_719f:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.table_mini_7ea3,
header,
.fresh_175c,
.pressed_d849,
.dropdown_a00f,
.module-701b,
.pattern-f4a6,
.panel-25cc,
.gold_f989 {
  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
   ============================================ */
.table_mini_7ea3 {
  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);
}

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

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

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

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

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

.paper-5647 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.lower_e57e {
  flex: 1;
}

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

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

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

.highlight_4085.fn-active-1337 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.banner-84b0 {
  position: relative;
}

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

.layout-yellow-df79 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

.info-easy-0ae5 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

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

.table_paper_11b7 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .lower_e57e {
    display: none;
  }
  
  .notification_14c7 {
    display: flex;
  }
  
  .caption_0800 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .table_paper_11b7,
  .text_full_a86c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .banner-84b0 {
    position: relative;
  }
  
  .frame_first_c92b {
    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-yellow-df79[aria-expanded="true"] + .frame_first_c92b {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .purple-e6d7 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .info-easy-0ae5 {
    gap: 8px;
  }
  
  .table_paper_11b7 {
    display: none;
  }
  
  .text_full_a86c {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .paper-5647 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.glass_1265 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.message-bottom-0849 a {
  color: var(--color-primary);
  text-decoration: none;
}

.message-bottom-0849 a:hover {
  text-decoration: underline;
}

.card-orange-c281 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

.card-2bf6 strong {
  font-weight: 600;
  color: var(--color-text);
}

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

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

.link-first-8ccc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-6810 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .pagination-hard-d0a6 {
    grid-template-columns: 1fr;
  }
  
  .video-gold-9745 {
    font-size: 1.75rem;
  }
  
  .link-first-8ccc {
    order: -1;
    max-width: 100%;
  }
  
  .icon-6810 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .video-gold-9745 {
    font-size: 1.5rem;
  }
  
  .paper_624c {
    font-size: 1rem;
  }
  
  .message-bottom-0849 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .icon-6810 {
    max-width: 250px;
  }
}

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

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

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

.notification-clean-70ce {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.notification-clean-70ce:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lower-17e0 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.lower-17e0 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);
}

.lower-17e0 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;
}

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

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

.fresh-4fdb {
  background: var(--color-bg-section);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.list-glass-bb98 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) {
  .secondary_under_868e {
    grid-template-columns: 1fr;
  }
  
  .blue-bc13 {
    font-size: 1.75rem;
  }
  
  .surface_hard_f0f3 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .blue-bc13 {
    font-size: 1.5rem;
  }
  
  .surface_hard_f0f3 h3 {
    font-size: 1.375rem;
  }
  
  .surface_hard_f0f3 h4 {
    font-size: 1.125rem;
  }
}

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

.search-narrow-88bf {
  background: #fff3e0;
  border-color: var(--color-warning);
}

.message-stale-27e6 {
  background: #e3f2fd;
  border-color: var(--color-primary);
}

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.banner-bottom-9e69 {
  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;
}

.text_0b82 {
  flex-shrink: 0;
}

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

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

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

.hovered-c0d1,
.red-eb22,
.shadow-rough-af55 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hovered-c0d1 thead,
.red-eb22 thead {
  background: var(--color-primary);
  color: white;
}

.hovered-c0d1 th,
.hovered-c0d1 td,
.red-eb22 th,
.red-eb22 td,
.shadow-rough-af55 th,
.shadow-rough-af55 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hovered-c0d1 th,
  .hovered-c0d1 td,
  .red-eb22 th,
  .red-eb22 td,
  .shadow-rough-af55 th,
  .shadow-rough-af55 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .hovered-c0d1,
  .red-eb22,
  .shadow-rough-af55 {
    min-width: 600px;
  }
}

.hovered-c0d1 th,
.red-eb22 th,
.shadow-rough-af55 th {
  font-weight: 600;
}

.hovered-c0d1 tbody tr:hover,
.red-eb22 tbody tr:hover,
.shadow-rough-af55 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.lower-75c7 h4 {
  color: white;
}

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

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

.main-black-39e5:last-child {
  border-bottom: none;
}

.main-black-39e5 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.main-black-39e5 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.card-4ac2:hover {
  text-decoration: underline;
}

.chip-first-94c4 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.small-64de {
  font-weight: 600;
  color: white;
}

.border-middle-bc46 {
  list-style: none;
  padding: 0;
}

.border-middle-bc46 li {
  padding: var(--space-xs) 0;
}

.gallery_white_5d19 {
  color: #4caf50;
}

.layout-a3ba {
  color: #ff9800;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .message-middle-4cfa {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .card-black-18b5 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.full_0796 .selected_5292 {
  width: 100%;
  background: white;
}

.sort_200f .selected_5292 {
  color: #667eea;
}

.main_fcb5 .selected_5292 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .mask_0c72 {
    padding: var(--space-md);
  }
  
  .full_62f1 {
    padding: var(--space-md);
  }
  
  .texture_warm_b206 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.tertiary-10ac,
.panel_5516,
.bottom-7a7c,
.text-3fc2 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.slider-static-223b {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip_bronze_39ad .card-0008 {
  background: #e8f5e9;
  color: var(--color-success);
}

.paragraph_bright_b579 .card-0008 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.advanced-6e71 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

.alert-6dbb {
  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);
}

.table-black-6c97 {
  text-align: center;
}

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

.outline-medium-949d {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.shadow_3991 .small-64de {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

.in-389b p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.photo-62fd {
  color: var(--color-text-light);
}

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

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

.hidden-hot-324f {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

.dropdown-hot-6a8b {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  gap: var(--space-md);
}

.input-narrow-7a73 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

.basic-813a {
  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;
}

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

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

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

.breadcrumb_tall_c58c {
  text-align: right;
}

.breadcrumb_tall_c58c .sort-slow-c4c9 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.secondary-silver-2b97 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bright-4d80 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.frame_basic_3ca9[aria-expanded="true"] .bright-4d80 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mask_current_ab4b ul,
.alert_hard_9c4c ul {
  list-style: none;
  padding: 0;
}

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

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

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

.wrapper-old-6dd6 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.wrapper-old-6dd6 ul {
  list-style: none;
  padding: 0;
}

.wrapper-old-6dd6 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.caption_bronze_c62b {
  font-style: italic;
}

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

.pro-5c68 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Footer variant: footer-content (subpages) */
.button-stale-71ce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.item_a6db a:hover {
  color: white;
}

.border-bronze-f1d5 {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.border-bronze-f1d5 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.border-bronze-f1d5 a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.disabled-pink-bcb1 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.disabled-pink-bcb1 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .video_blue_7370,
  .button-stale-71ce {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.purple_f2f4 .label_3ae8 {
  color: #4caf50;
  font-size: 0.875rem;
}

.tertiary-2e1a {
  list-style: none;
  padding: 0;
}

.tertiary-2e1a li {
  margin-bottom: var(--space-xs);
}

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

.tertiary-2e1a a:hover {
  color: white;
}

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

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

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

.article_medium_4cb0 a:hover {
  color: white;
}

.up-82a8 {
  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);
}

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

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

.bottom-38e4 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

.dim_5186 a:hover {
  color: white;
}

/* Element selectors: survive CMS class obfuscation on deploy */
footer > div > div:last-child > div:last-child a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

footer > div > div:last-child > div:last-child a:hover {
  color: white;
}

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

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

@media (max-width: 768px) {
  .up-82a8 {
    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;
  }
  
  .video-gold-9745 {
    font-size: 2rem;
  }
  
  .blue-bc13 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .pagination-hard-d0a6,
  .secondary_under_868e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .message-middle-4cfa,
  .caption-2bb0,
  .card-black-18b5,
  .out-9e6a,
  .paragraph_0b02,
  .info-318d,
  .bottom-568f,
  .video_blue_7370,
  .button-stale-71ce {
    grid-template-columns: 1fr;
  }
  
  .bright-dcf6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pattern-f4a6 {
    padding: var(--space-lg) 0;
  }
  
  .lower-17e0 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .lower-17e0 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .selected_5292 {
    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;
  }
  
  .bright-dcf6 {
    grid-template-columns: 1fr;
  }
  
  .bronze_0d64,
  .focus-clean-4217,
  .frame-f6ae {
    flex-direction: column;
    width: 100%;
  }
  
  .message_636e,
  .motion-c590,
  .bronze_0d64 .selected_5292,
  .focus-clean-4217 .selected_5292 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .video-gold-9745 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .blue-bc13 {
    font-size: 1.375rem;
  }
  
  .notification_70e0 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .tall-c52d,
  .overlay_hard_1cb0,
  .input_down_65f9,
  .hovered_1d7c,
  .upper_1ff1 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .overlay_tall_33c7 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .progress-dcea {
    gap: var(--space-xs);
  }
  
  .glass_1265 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .main-a2ae {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .shadow_3991 {
    width: 150px;
    height: 150px;
  }
  
  .outline-medium-949d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .table_mini_7ea3,
  .fresh_175c,
  .bronze_0d64,
  .pro-5c68,
  .panel-25cc,
  .gold_f989,
  .notification_14c7 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pattern-f4a6 {
    page-break-inside: avoid;
  }
}

/* css-noise: 8995 */
.ghost-box-q3 {
  padding: 0.4rem;
  font-size: 10px;
  line-height: 1.0;
}
