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

.soft-f3a8:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.stone_9322,
header,
.status-bright-2af3,
.banner-0912,
.wrapper_clean_0812,
.status-1bf2,
.status-up-dd03,
.overlay_2193,
.under_7f7a {
  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
   ============================================ */
.stone_9322 {
  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);
}

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

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

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

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

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

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

.pro-1a6c {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: #e8f5e9;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 12px;
  white-space: nowrap;
}

.card_7668 {
  flex: 1;
}

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

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

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

.middle_66fe.fn-active-d8f2 {
  background: var(--color-primary);
  color: white;
}

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

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

.paragraph-e217 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.yellow_c6b4 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.column-3d63[aria-expanded="true"] .component_86ab:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Navigation Menu */
@media (max-width: 1100px) {
  .card_7668 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 80px 0 20px;
    transition: right 0.3s ease-out;
    z-index: 999;
    overflow-y: auto; /* 移动端菜单内容过多时可滚动 */
    overflow-x: visible; /* 水平方向不滚动，确保下拉菜单可见 */
    /* 隐藏滚动条外观，但保留可滚动能力，视觉上更自然 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .card_7668::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .card_7668.cold_1c12 {
    display: block;
    right: 0;
  }
  
  .cold-6582 {
    flex-direction: column;
    gap: 0;
  }
  
  .middle_66fe {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .card_7668::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
  }
  
  .card_7668.cold_1c12::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .card_7668 {
    display: none;
  }
  
  .column-3d63 {
    display: flex;
  }
  
  .pro-1a6c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .yellow_c6b4,
  .outline_ebdb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .alert_down_67ea {
    position: relative;
  }
  
  .column_action_cb5a {
    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;
  }
  
  .paragraph-e217[aria-expanded="true"] + .column_action_cb5a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .pink-b2ac {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dirty-e2ae {
    gap: 8px;
  }
  
  .yellow_c6b4 {
    display: none;
  }
  
  .outline_ebdb {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .alert_da0c img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.component_red_8c76 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.video-dynamic-8719 {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

.dim-89d0 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-19ae {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .carousel-hard-2342 {
    grid-template-columns: 1fr;
  }
  
  .label_east_bc69 {
    font-size: 1.75rem;
  }
  
  .dim-89d0 {
    order: -1;
    max-width: 100%;
  }
  
  .input-19ae {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .label_east_bc69 {
    font-size: 1.5rem;
  }
  
  .badge_rough_cff6 {
    font-size: 1rem;
  }
  
  .accordion_large_7e87 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .input-19ae {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

.row-stale-587a {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.item-down-2c83 {
  background: var(--color-bg-section);
}

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

.in-4f60 {
  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);
}

.content-22b2 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.top_edc0 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) {
  .preview_top_f136 {
    grid-template-columns: 1fr;
  }
  
  .content-22b2 {
    font-size: 1.75rem;
  }
  
  .purple_468a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .content-22b2 {
    font-size: 1.5rem;
  }
  
  .purple_468a h3 {
    font-size: 1.375rem;
  }
  
  .purple_468a h4 {
    font-size: 1.125rem;
  }
}

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

.paragraph-current-dce8 {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.first_5a2b {
  flex-shrink: 0;
}

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

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

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

.heading-full-2d4c,
.summary_motion_3629,
.alert_9900 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.heading-full-2d4c thead,
.summary_motion_3629 thead {
  background: var(--color-primary);
  color: white;
}

.heading-full-2d4c th,
.heading-full-2d4c td,
.summary_motion_3629 th,
.summary_motion_3629 td,
.alert_9900 th,
.alert_9900 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .heading-full-2d4c th,
  .heading-full-2d4c td,
  .summary_motion_3629 th,
  .summary_motion_3629 td,
  .alert_9900 th,
  .alert_9900 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .heading-full-2d4c,
  .summary_motion_3629,
  .alert_9900 {
    min-width: 600px;
  }
}

.heading-full-2d4c th,
.summary_motion_3629 th,
.alert_9900 th {
  font-weight: 600;
}

.heading-full-2d4c tbody tr:hover,
.summary_motion_3629 tbody tr:hover,
.alert_9900 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.menu_5923 h4 {
  color: white;
}

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

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

.banner-mini-feea:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

.slider-hovered-3e53 {
  list-style: none;
  padding: 0;
}

.slider-hovered-3e53 li {
  padding: var(--space-xs) 0;
}

.bright_f3db {
  color: #4caf50;
}

.panel_huge_fea9 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white-e163 .info-f871 {
  width: 100%;
  background: white;
}

.panel-7428 .info-f871 {
  color: #667eea;
}

.glass-9bf1 .info-f871 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .table_fc57 {
    padding: var(--space-md);
  }
  
  .notice_action_5c19 {
    padding: var(--space-md);
  }
  
  .pattern-ba86 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.pro-c7f4,
.sort-hovered-27b3,
.cold_c1dc,
.alert-45a5 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.info-paper-96b0:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

.grid-old-fa4b {
  border-color: var(--color-success);
}

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

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

.grid-old-fa4b .lower-d3fc {
  background: #e8f5e9;
  color: var(--color-success);
}

.right-7245 .lower-d3fc {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.hover-c7ea {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.border-d5d6 {
  text-align: center;
}

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

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

.form-d971 .badge_9048 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.pagination-stone-1c2a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

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

.input-lite-2fc3 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sidebar-30a9 {
  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;
}

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

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

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

.disabled-paper-8aff {
  text-align: right;
}

.disabled-paper-8aff .notice-00e3 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.table-01b1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.heading-tiny-8c74 {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-ed0d {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.avatar-easy-1c08 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.red-702d {
  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);
}

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

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

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

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

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

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

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

.brown_4ba7 ul,
.tertiary_stale_394f ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.background-8bdd {
  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);
}

.status_right_9deb {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

.shadow-clean-1b0c {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

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

.medium-d9ce a:hover {
  color: white;
}

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

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

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

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

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

.layout_67a6 a:hover {
  color: white;
}

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

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

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

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

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

.sort_clean_d744 .rough_4fae {
  color: #4caf50;
  font-size: 0.875rem;
}

.info-0fc4 {
  list-style: none;
  padding: 0;
}

.info-0fc4 li {
  margin-bottom: var(--space-xs);
}

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

.info-0fc4 a:hover {
  color: white;
}

.header-bronze-7231 {
  list-style: none;
  padding: 0;
}

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

.header-bronze-7231 a {
  color: #b0b0b0;
  text-decoration: none;
}

.header-bronze-7231 a:hover {
  color: white;
}

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline_fresh_d64e {
    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;
  }
  
  .label_east_bc69 {
    font-size: 2rem;
  }
  
  .content-22b2 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .carousel-hard-2342,
  .preview_top_f136 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .top-7ef2,
  .thick-abc4,
  .outline_prev_549f,
  .active-glass-d543,
  .advanced-33f5,
  .tabs-left-3604,
  .pink-1c84,
  .menu-5a8c,
  .dropdown_7664 {
    grid-template-columns: 1fr;
  }
  
  .row-3fe5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .status-up-dd03 {
    padding: var(--space-lg) 0;
  }
  
  .hard_2a74 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .hard_2a74 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .info-f871 {
    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;
  }
  
  .row-3fe5 {
    grid-template-columns: 1fr;
  }
  
  .summary_huge_3a67,
  .row-short-a465,
  .module-6ae5 {
    flex-direction: column;
    width: 100%;
  }
  
  .row-stale-587a,
  .logo_stale_31e0,
  .summary_huge_3a67 .info-f871,
  .row-short-a465 .info-f871 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .label_east_bc69 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .content-22b2 {
    font-size: 1.375rem;
  }
  
  .primary_smooth_4fcc {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .solid-7fe5,
  .main-c789,
  .large_56de,
  .active_3a6c,
  .main-7e1a {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .static-e837 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .action_73db {
    gap: var(--space-xs);
  }
  
  .component_red_8c76 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .slider-ab39 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .form-d971 {
    width: 150px;
    height: 150px;
  }
  
  .plasma-fdbe {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .stone_9322,
  .status-bright-2af3,
  .summary_huge_3a67,
  .background_d461,
  .overlay_2193,
  .under_7f7a,
  .column-3d63 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .status-up-dd03 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6c24 */
.shadow-element-o6 {
  padding: 0.2rem;
  font-size: 12px;
  line-height: 1.2;
}
