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

.over-8223:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.dirty-f436,
header,
.sort_8217,
.shadow-thick-c81f,
.chip-3d31,
.link-short-f74e,
.logo_06a8,
.header-lite-f813,
.hard-a6c4 {
  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
   ============================================ */
.dirty-f436 {
  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);
}

.summary-044e {
  animation: slideDown 0.3s ease-out;
}

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

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

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

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

.logo-under-2bdb img {
  height: 36px;
  width: auto;
  display: block;
}

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

.small_fbdc {
  flex: 1;
}

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

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

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

.badge_f6a7.fn-active-9a6d {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.component-cool-66bc {
  position: relative;
}

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

.column-cdc2 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.notice_f93c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.main-1aaf[aria-expanded="true"] .background-2f3c:nth-child(2) {
  opacity: 0;
}

.main-1aaf[aria-expanded="true"] .background-2f3c:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

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

@media (max-width: 1100px) {
  .small_fbdc {
    display: none;
  }
  
  .main-1aaf {
    display: flex;
  }
  
  .list_basic_0f7c {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .notice_f93c,
  .basic-3948 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .component-cool-66bc {
    position: relative;
  }
  
  .notice_54df {
    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;
  }
  
  .column-cdc2[aria-expanded="true"] + .notice_54df {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .large_d3ec {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .rough_4179 {
    gap: 8px;
  }
  
  .notice_f93c {
    display: none;
  }
  
  .basic-3948 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .logo-under-2bdb img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.accent-e3db svg {
  flex-shrink: 0;
}

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

.accent-e3db a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tooltip-tiny-01a0 {
  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;
}

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

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

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

.picture-glass-ceb9 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .surface_2444 {
    grid-template-columns: 1fr;
  }
  
  .banner-df56 {
    font-size: 1.75rem;
  }
  
  .outer_02e1 {
    order: -1;
    max-width: 100%;
  }
  
  .summary_a7c8 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .banner-df56 {
    font-size: 1.5rem;
  }
  
  .list_416d {
    font-size: 1rem;
  }
  
  .easy_8396 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .summary_a7c8 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_76bb li a {
  display: flex;
  align-items: center;
  padding: var(--space-sm);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.label_76bb li a:before {
  content: counter(toc-counter);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary-light);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

.tall-7cc1 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

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

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

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

.tall-7cc1 strong {
  font-weight: 600;
  color: var(--color-text);
}

.tall-7cc1 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tall-7cc1 a:hover {
  color: var(--color-primary-dark);
}

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

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

.old_8288 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) {
  .grid_e377 {
    grid-template-columns: 1fr;
  }
  
  .lower_abd4 {
    font-size: 1.75rem;
  }
  
  .tall-7cc1 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .lower_abd4 {
    font-size: 1.5rem;
  }
  
  .tall-7cc1 h3 {
    font-size: 1.375rem;
  }
  
  .tall-7cc1 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

.icon-834b {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.feature_bright_4144 {
  flex-shrink: 0;
}

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

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

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

.bottom_d23b,
.focused_eadf,
.dynamic-1ec8 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bottom_d23b thead,
.focused_eadf thead {
  background: var(--color-primary);
  color: white;
}

.bottom_d23b th,
.bottom_d23b td,
.focused_eadf th,
.focused_eadf td,
.dynamic-1ec8 th,
.dynamic-1ec8 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .bottom_d23b th,
  .bottom_d23b td,
  .focused_eadf th,
  .focused_eadf td,
  .dynamic-1ec8 th,
  .dynamic-1ec8 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .bottom_d23b,
  .focused_eadf,
  .dynamic-1ec8 {
    min-width: 600px;
  }
}

.bottom_d23b th,
.focused_eadf th,
.dynamic-1ec8 th {
  font-weight: 600;
}

.bottom_d23b tbody tr:hover,
.focused_eadf tbody tr:hover,
.dynamic-1ec8 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.component-3340 h4 {
  color: white;
}

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

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

.header-focused-5a65:last-child {
  border-bottom: none;
}

.header-focused-5a65 dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.header-focused-5a65 dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.advanced-d99a:hover {
  text-decoration: underline;
}

.slider-first-09f9 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

.table-92fd {
  font-weight: 600;
  color: white;
}

.up-35f3 {
  list-style: none;
  padding: 0;
}

.up-35f3 li {
  padding: var(--space-xs) 0;
}

.surface-8310 {
  color: #4caf50;
}

.highlight_fresh_49c6 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.input-west-3d3a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.input-west-3d3a ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-lg);
}

.input-west-3d3a li {
  padding: var(--space-xs) 0;
  color: white;
}

.input-west-3d3a .paper_ecb7 {
  width: 100%;
  background: white;
}

.east_5e3c .paper_ecb7 {
  color: #667eea;
}

.table-44a7 .paper_ecb7 {
  color: #f5576c;
}

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

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

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

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

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

.gallery-23be {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .fixed_57c0 {
    padding: var(--space-md);
  }
  
  .gallery-23be {
    padding: var(--space-md);
  }
  
  .grid-lite-8ff4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.out-8ac5 li {
  margin-bottom: var(--space-sm);
}

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

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

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

.grid-lite-8ff4 {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.widget-warm-68e7,
.upper_6a0b,
.element-15ed,
.tabs-east-cf26 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.element-lower-3ba8 h4 {
  margin-bottom: var(--space-md);
}

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

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

.top-fb38 {
  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-fb38 {
    grid-template-columns: 1fr;
  }
}

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

.iron-9b34 {
  border-color: var(--color-success);
}

.nav-bronze-de86 {
  border-color: var(--color-warning);
}

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

.iron-9b34 .highlight_946a {
  background: #e8f5e9;
  color: var(--color-success);
}

.nav-bronze-de86 .highlight_946a {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.background-bottom-aa79 {
  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);
}

.steel_bb88 {
  text-align: center;
}

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

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

.notice-ba81 .table-92fd {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.dim-4f69 {
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

.center-bebc {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.logo-middle-85bb {
  text-align: right;
}

.logo-middle-85bb .grid_a6ee {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.label-pressed-a11d {
  background: #e8f5e9;
  color: #2e7d32;
}

.grid-5bd2 {
  background: #e3f2fd;
  color: #1565c0;
}

.article-slow-75e1 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.cold-072d {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.fresh-b47a[aria-expanded="true"] .upper-b9b2 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

.heading-first-382c {
  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);
}

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

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

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

.dynamic-55f1,
.panel_2675 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.dynamic-55f1 h4,
.panel_2675 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.dynamic-55f1 ul,
.panel_2675 ul {
  list-style: none;
  padding: 0;
}

.dynamic-55f1 li,
.panel_2675 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .container-paper-99f8 {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

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

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

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

.fixed-2e6c {
  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);
}

.hot-d2fa {
  font-style: italic;
}

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

.active-fixed-e39c {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.modal-6c41 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-6c41 li {
  margin-bottom: var(--space-xs);
}

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

.modal-6c41 a:hover {
  color: white;
}

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

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

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

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

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

.selected_02cd a:hover {
  color: white;
}

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

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

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

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

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

.orange-768c .last_fa05 {
  color: #4caf50;
  font-size: 0.875rem;
}

.main-bright-dfa8 {
  list-style: none;
  padding: 0;
}

.main-bright-dfa8 li {
  margin-bottom: var(--space-xs);
}

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

.main-bright-dfa8 a:hover {
  color: white;
}

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

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

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

.background_0c5b a:hover {
  color: white;
}

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

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

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

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

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

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

.bright-da31 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;
}

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

.progress-8734:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .photo_static_2cb4 {
    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;
  }
  
  .banner-df56 {
    font-size: 2rem;
  }
  
  .lower_abd4 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .surface_2444,
  .grid_e377 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .under_a699,
  .top-fb38,
  .list_last_f0ca,
  .upper_e291,
  .sort_0ea5,
  .container-paper-99f8,
  .table-fcea,
  .thick-18f0,
  .fixed_6424 {
    grid-template-columns: 1fr;
  }
  
  .light_8f31 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .logo_06a8 {
    padding: var(--space-lg) 0;
  }
  
  .label_76bb li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .label_76bb li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .paper_ecb7 {
    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;
  }
  
  .light_8f31 {
    grid-template-columns: 1fr;
  }
  
  .picture-glass-ceb9,
  .filter-1b65,
  .block-south-1699 {
    flex-direction: column;
    width: 100%;
  }
  
  .form_04f9,
  .menu_rough_5b70,
  .picture-glass-ceb9 .paper_ecb7,
  .filter-1b65 .paper_ecb7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .banner-df56 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .lower_abd4 {
    font-size: 1.375rem;
  }
  
  .gas_c86a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .shade-warm-f239,
  .rough-3c82,
  .link-action-b792,
  .under-1155,
  .fixed_d1f0 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .basic-8663 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .dropdown-bright-6712 {
    gap: var(--space-xs);
  }
  
  .accent-e3db {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .active_2ba2 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .notice-ba81 {
    width: 150px;
    height: 150px;
  }
  
  .preview_rough_725e {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .dirty-f436,
  .sort_8217,
  .picture-glass-ceb9,
  .active-fixed-e39c,
  .header-lite-f813,
  .hard-a6c4,
  .main-1aaf {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .logo_06a8 {
    page-break-inside: avoid;
  }
}

/* css-noise: 6429 */
.widget-item-z8 {
  padding: 0.2rem;
  font-size: 13px;
  line-height: 1.2;
}
