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

.sidebar-simple-5378:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.outer_53ff,
header,
.notification_north_4716,
.text_east_6dde,
.shadow_c875,
.texture_tiny_a3b3,
.backdrop-in-d798,
.sidebar-over-26b5,
.description_over_bfc2 {
  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
   ============================================ */
.outer_53ff {
  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);
}

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

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

/* Scrolled state */
.outer_53ff.section-5fd5 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

.footer-pro-93b6 {
  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;
}

.hot_627a {
  flex: 1;
}

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

.module-full-ac4d {
  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);
}

.module-full-ac4d:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.module-full-ac4d.fn-active-bdc6 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.modal-1d28 {
  position: relative;
}

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

.shadow-fast-7a49 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.panel_tiny_0303 svg {
  flex-shrink: 0;
}

/* Header Download Button */
.active_fresh_37c5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
  white-space: nowrap;
}

.active_fresh_37c5:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #0d47a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

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

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

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

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

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

.title-784a[aria-expanded="true"] .easy-dceb:nth-child(2) {
  opacity: 0;
}

.title-784a[aria-expanded="true"] .easy-dceb:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .hot_627a::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hot_627a.surface-motion-2c71 {
    display: block;
    right: 0;
  }
  
  .section_motion_12ea {
    flex-direction: column;
    gap: 0;
  }
  
  .module-full-ac4d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hot_627a::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;
  }
  
  .hot_627a.surface-motion-2c71::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hot_627a {
    display: none;
  }
  
  .title-784a {
    display: flex;
  }
  
  .footer-pro-93b6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel_tiny_0303,
  .active_fresh_37c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .modal-1d28 {
    position: relative;
  }
  
  .avatar-a306 {
    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;
  }
  
  .shadow-fast-7a49[aria-expanded="true"] + .avatar-a306 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .status-green-a0b5 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .over-07ac {
    gap: 8px;
  }
  
  .panel_tiny_0303 {
    display: none;
  }
  
  .active_fresh_37c5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .link_66b1 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.heading-a2b4 svg {
  flex-shrink: 0;
}

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

.heading-a2b4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.new-98d4 a {
  color: var(--color-primary);
  text-decoration: none;
}

.new-98d4 a:hover {
  text-decoration: underline;
}

.element-east-d96d {
  color: var(--color-text-lighter);
}

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

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

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

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

@media (max-width: 768px) {
  .column-black-84ff {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

.box-62f2 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .media_19d1 {
    grid-template-columns: 1fr;
  }
  
  .text-tall-febb {
    font-size: 1.75rem;
  }
  
  .icon_e9bb {
    order: -1;
    max-width: 100%;
  }
  
  .box-62f2 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .text-tall-febb {
    font-size: 1.5rem;
  }
  
  .shadow-08eb {
    font-size: 1rem;
  }
  
  .new-98d4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .box-62f2 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.progress-short-ed5b {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

.modal-mini-7ab1:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

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

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

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

.center-f638 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;
}

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

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

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

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

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

.easy-164f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.layout_f485 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) {
  .popup_pressed_5eaa {
    grid-template-columns: 1fr;
  }
  
  .easy-164f {
    font-size: 1.75rem;
  }
  
  .box_purple_35ec {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .easy-164f {
    font-size: 1.5rem;
  }
  
  .box_purple_35ec h3 {
    font-size: 1.375rem;
  }
  
  .box_purple_35ec h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

/* ============================================
   12. AUTHOR NOTE
   ============================================ */
.slider_7ad7 {
  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_140d {
  flex-shrink: 0;
}

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

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

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

.gradient-dirty-7716,
.modal_1941,
.accent-cool-ecc4 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gradient-dirty-7716 thead,
.modal_1941 thead {
  background: var(--color-primary);
  color: white;
}

.gradient-dirty-7716 th,
.gradient-dirty-7716 td,
.modal_1941 th,
.modal_1941 td,
.accent-cool-ecc4 th,
.accent-cool-ecc4 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gradient-dirty-7716 th,
  .gradient-dirty-7716 td,
  .modal_1941 th,
  .modal_1941 td,
  .accent-cool-ecc4 th,
  .accent-cool-ecc4 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gradient-dirty-7716,
  .modal_1941,
  .accent-cool-ecc4 {
    min-width: 600px;
  }
}

.gradient-dirty-7716 th,
.modal_1941 th,
.accent-cool-ecc4 th {
  font-weight: 600;
}

.gradient-dirty-7716 tbody tr:hover,
.modal_1941 tbody tr:hover,
.accent-cool-ecc4 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.blue-a83b h4 {
  color: white;
}

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

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

.new-dc92:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

.middle-904f {
  font-weight: 600;
  color: white;
}

.outline-black-9e48 {
  list-style: none;
  padding: 0;
}

.outline-black-9e48 li {
  padding: var(--space-xs) 0;
}

.secondary-rough-1949 {
  color: #4caf50;
}

.iron-4418 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.iron_7e34 .stale-f1df {
  width: 100%;
  background: white;
}

.menu_bright_1589 .stale-f1df {
  color: #667eea;
}

.old-9745 .stale-f1df {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .surface_611f {
    padding: var(--space-md);
  }
  
  .active_advanced_c2df {
    padding: var(--space-md);
  }
  
  .input-6875 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

.chip-medium-8f9c ol,
.chip-medium-8f9c ul {
  margin: var(--space-md) 0;
  padding-left: var(--space-lg);
}

.chip-medium-8f9c li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.secondary-f02d,
.tooltip_d635,
.slider-7b5a,
.north_99e0 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.yellow-83b5 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.next_de29 .pressed_118e {
  background: #e8f5e9;
  color: var(--color-success);
}

.layout-a7c2 .pressed_118e {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-d4ed {
  text-align: center;
}

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

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

.layout-b6a7 .middle-904f {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

.component-out-4e5f {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.modal-blue-990c {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.heading-full-1c7b {
  border: 2px solid #4caf50;
}

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

.header-focused-9fe7 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.dropdown_slow_c302 {
  text-align: right;
}

.dropdown_slow_c302 .outline-pressed-44ab {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.picture-f62b {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-slow-46cd {
  background: #e3f2fd;
  color: #1565c0;
}

.hidden-f035 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.notice-green-b5b8 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.list-c9c9[aria-expanded="true"] .complex-a8e5 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.accordion-2866,
.top_c878 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.accordion-2866 h4,
.top_c878 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.accordion-2866 ul,
.top_c878 ul {
  list-style: none;
  padding: 0;
}

.accordion-2866 li,
.top_c878 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

.chip-west-60c7 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.chip-west-60c7 ul {
  list-style: none;
  padding: 0;
}

.chip-west-60c7 li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.accordion_last_d15c {
  font-style: italic;
}

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

.medium-5a62 {
  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;
}

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

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

.paragraph-top-466c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .overlay-copper-710a {
    grid-template-columns: 1fr;
  }
}

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

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

.wood-8747 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

.tag-small-2cfa {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-small-2cfa li {
  margin-bottom: var(--space-xs);
}

.tag-small-2cfa a {
  color: #b0b0b0;
  text-decoration: none;
  transition: var(--transition-fast);
}

.tag-small-2cfa a:hover {
  color: white;
}

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

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

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

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

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

.layout_8b62 a:hover {
  color: white;
}

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

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

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

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

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

.row-0a31 .list_da31 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.label_hovered_e178 a:hover {
  color: white;
}

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

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

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

.input_mini_067a a:hover {
  color: white;
}

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

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

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

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

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

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

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

.module-outer-27be {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.module-outer-27be:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu_7b23 {
    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;
  }
  
  .text-tall-febb {
    font-size: 2rem;
  }
  
  .easy-164f {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .media_19d1,
  .popup_pressed_5eaa {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .tabs_01c5,
  .pink_8131,
  .border-last-bf2e,
  .short-3e26,
  .huge-24b6,
  .pressed_b29b,
  .overlay-copper-710a,
  .accordion_narrow_d906,
  .disabled_79c4 {
    grid-template-columns: 1fr;
  }
  
  .hot-e6f1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .backdrop-in-d798 {
    padding: var(--space-lg) 0;
  }
  
  .center-f638 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .center-f638 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .stale-f1df {
    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;
  }
  
  .hot-e6f1 {
    grid-template-columns: 1fr;
  }
  
  .main_hard_5671,
  .paragraph-top-466c,
  .lite_5595 {
    flex-direction: column;
    width: 100%;
  }
  
  .progress-short-ed5b,
  .tooltip_e078,
  .main_hard_5671 .stale-f1df,
  .paragraph-top-466c .stale-f1df {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .text-tall-febb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .easy-164f {
    font-size: 1.375rem;
  }
  
  .section-clean-791a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .modal-mini-7ab1,
  .primary_static_ed71,
  .component-553f,
  .slider_pink_8e07,
  .card_slow_3938 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .video_light_40ad {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .list_outer_5728 {
    gap: var(--space-xs);
  }
  
  .heading-a2b4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .lite_286e {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .layout-b6a7 {
    width: 150px;
    height: 150px;
  }
  
  .chip_fda7 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .outer_53ff,
  .notification_north_4716,
  .main_hard_5671,
  .medium-5a62,
  .sidebar-over-26b5,
  .description_over_bfc2,
  .title-784a {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .backdrop-in-d798 {
    page-break-inside: avoid;
  }
}

/* css-noise: f8d3 */
.shadow-element-p3 {
  padding: 0.3rem;
  font-size: 12px;
  line-height: 1.0;
}
