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

.paragraph_891e:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.overlay_iron_eeaf,
header,
.easy-3e97,
.widget_4440,
.alert-a6af,
.new_9c5c,
.overlay-easy-cabc,
.form-thick-dc21,
.main_last_8e18 {
  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
   ============================================ */
.overlay_iron_eeaf {
  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);
}

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

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

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

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

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

.highlight-old-d2dc img {
  height: 36px;
  width: auto;
  display: block;
}

.grid-light-fa99 {
  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;
}

.fresh_06f0 {
  flex: 1;
}

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

.hard-5cef {
  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);
}

.hard-5cef:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.hard-5cef.fn-active-d752 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.status-281c {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

/* Header Login Button */
.header-down-8be3 {
  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;
}

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

.header-down-8be3 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.stone_6625[aria-expanded="true"] .huge-122b:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .fresh_06f0 {
    display: none;
  }
  
  .stone_6625 {
    display: flex;
  }
  
  .grid-light-fa99 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .header-down-8be3,
  .avatar_3b90 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .status-281c {
    position: relative;
  }
  
  .grid_6445 {
    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;
  }
  
  .gallery_simple_947e[aria-expanded="true"] + .grid_6445 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .search_8a4d {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .mask-copper-d12e {
    gap: 8px;
  }
  
  .header-down-8be3 {
    display: none;
  }
  
  .avatar_3b90 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .highlight-old-d2dc img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.card_narrow_0d9f svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.soft-78b7 a {
  color: var(--color-primary);
  text-decoration: none;
}

.soft-78b7 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

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

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

.caption-dirty-16f2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .middle-ed55 {
    grid-template-columns: 1fr;
  }
  
  .notice-large-ec4d {
    font-size: 1.75rem;
  }
  
  .caption-dirty-16f2 {
    order: -1;
    max-width: 100%;
  }
  
  .preview_3cda {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .notice-large-ec4d {
    font-size: 1.5rem;
  }
  
  .cool-4ac1 {
    font-size: 1rem;
  }
  
  .soft-78b7 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .preview_3cda {
    max-width: 250px;
  }
}

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

.media-gas-3441 {
  background: var(--color-primary);
  color: white;
}

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

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

.sidebar-6b1e:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

.list-action-0089:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

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

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

.old-782d {
  list-style: none;
  counter-reset: toc-counter;
}

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

.old-782d 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);
}

.old-782d 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;
}

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

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

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

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

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

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

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

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

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

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

.popup-outer-3501 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.popup-outer-3501 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);
}

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

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

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

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

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

.popup-outer-3501 strong {
  font-weight: 600;
  color: var(--color-text);
}

.popup-outer-3501 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.popup-outer-3501 a:hover {
  color: var(--color-primary-dark);
}

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

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

.slow_a9cc 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) {
  .dim-8870 {
    grid-template-columns: 1fr;
  }
  
  .slow_e9f0 {
    font-size: 1.75rem;
  }
  
  .popup-outer-3501 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .slow_e9f0 {
    font-size: 1.5rem;
  }
  
  .popup-outer-3501 h3 {
    font-size: 1.375rem;
  }
  
  .popup-outer-3501 h4 {
    font-size: 1.125rem;
  }
}

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

.layout-bright-64dc {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.simple_8de0 {
  flex-shrink: 0;
}

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

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

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

.north_d5cd,
.badge_dim_db90,
.disabled-blue-60be {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.north_d5cd thead,
.badge_dim_db90 thead {
  background: var(--color-primary);
  color: white;
}

.north_d5cd th,
.north_d5cd td,
.badge_dim_db90 th,
.badge_dim_db90 td,
.disabled-blue-60be th,
.disabled-blue-60be td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .north_d5cd th,
  .north_d5cd td,
  .badge_dim_db90 th,
  .badge_dim_db90 td,
  .disabled-blue-60be th,
  .disabled-blue-60be td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .north_d5cd,
  .badge_dim_db90,
  .disabled-blue-60be {
    min-width: 600px;
  }
}

.north_d5cd th,
.badge_dim_db90 th,
.disabled-blue-60be th {
  font-weight: 600;
}

.north_d5cd tbody tr:hover,
.badge_dim_db90 tbody tr:hover,
.disabled-blue-60be tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.pro-c0e7 h4 {
  color: white;
}

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

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

.lower-96e1:last-child {
  border-bottom: none;
}

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

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

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

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

.dark-1712:hover {
  text-decoration: underline;
}

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

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

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

.tall-2857 {
  font-weight: 600;
  color: white;
}

.search-red-0e67 {
  list-style: none;
  padding: 0;
}

.search-red-0e67 li {
  padding: var(--space-xs) 0;
}

.light_80b7 {
  color: #4caf50;
}

.button-b074 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.thumbnail-dirty-db73 .silver_93e7 {
  width: 100%;
  background: white;
}

.basic_b636 .silver_93e7 {
  color: #667eea;
}

.orange_fb93 .silver_93e7 {
  color: #f5576c;
}

/* ============================================
   17. TUTORIAL / STEPS
   ============================================ */
.secondary-full-1c65 {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

.disabled-dark-c47d li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.caption_9bc8,
.orange_5e7a,
.item_out_46a2,
.current-ccbb {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.shadow-stone-7682 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.status-3d04 {
  border-color: var(--color-success);
}

.bronze-97de {
  border-color: var(--color-warning);
}

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

.status-3d04 .last_5198 {
  background: #e8f5e9;
  color: var(--color-success);
}

.bronze-97de .last_5198 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-wood-bffe {
  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);
}

.preview-60dc {
  text-align: center;
}

.grid-5e89 {
  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);
}

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

.grid-5e89 .tall-2857 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.dropdown-95a7 {
  color: var(--color-text-light);
}

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

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

.accordion-center-b09e {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.breadcrumb-black-ef6e {
  border: 2px solid #4caf50;
}

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

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

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

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

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

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

.south-bdce {
  text-align: right;
}

.south-bdce .popup_7d63 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.container-tiny-ef4d {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

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

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

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

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

.info-pro-e356 strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

.alert-hot-d0e8 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.current-b0e0[aria-expanded="true"] .alert-hot-d0e8 {
  transform: rotate(180deg);
}

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

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

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

.pagination-top-d176 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.link-lite-594b,
.pattern-purple-b48d {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.link-lite-594b h4,
.pattern-purple-b48d h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.link-lite-594b ul,
.pattern-purple-b48d ul {
  list-style: none;
  padding: 0;
}

.link-lite-594b li,
.pattern-purple-b48d li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.chip_next_6878 {
  font-style: italic;
}

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

.sidebar-small-fe95 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.yellow_f16d a:hover {
  color: white;
}

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

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

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

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

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

.form_short_e768 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .dropdown-e0f1,
  .background-east-1a6d {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.active_fae4 .paper-ecf1 {
  color: #4caf50;
  font-size: 0.875rem;
}

.table-4550 {
  list-style: none;
  padding: 0;
}

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

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

.table-4550 a:hover {
  color: white;
}

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

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

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

.active_ddaa a:hover {
  color: white;
}

.overlay-3b24 {
  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);
}

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

.out-8c40 a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

.accent-d348 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;
}

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

.texture-gas-e0bc:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .overlay-3b24 {
    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;
  }
  
  .notice-large-ec4d {
    font-size: 2rem;
  }
  
  .slow_e9f0 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .middle-ed55,
  .dim-8870 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .overlay_cold_ebac,
  .accent_yellow_2bcd,
  .tiny_5f02,
  .short-a715,
  .surface_left_2906,
  .highlight-dark-9d65,
  .up_5fe1,
  .dropdown-e0f1,
  .background-east-1a6d {
    grid-template-columns: 1fr;
  }
  
  .card_4bc2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .overlay-easy-cabc {
    padding: var(--space-lg) 0;
  }
  
  .old-782d li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .old-782d li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .silver_93e7 {
    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;
  }
  
  .card_4bc2 {
    grid-template-columns: 1fr;
  }
  
  .main_easy_6a66,
  .accordion_d049,
  .link_35a0 {
    flex-direction: column;
    width: 100%;
  }
  
  .row_f1dc,
  .liquid-d004,
  .main_easy_6a66 .silver_93e7,
  .accordion_d049 .silver_93e7 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .notice-large-ec4d {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .slow_e9f0 {
    font-size: 1.375rem;
  }
  
  .grid-glass-008d {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .list-action-0089,
  .background_4eb8,
  .column-in-6029,
  .text-06ee,
  .menu-ac95 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .easy_a63f {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .large-3b4f {
    gap: var(--space-xs);
  }
  
  .card_narrow_0d9f {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .image_78a6 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .grid-5e89 {
    width: 150px;
    height: 150px;
  }
  
  .blue_607a {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .overlay_iron_eeaf,
  .easy-3e97,
  .main_easy_6a66,
  .sidebar-small-fe95,
  .form-thick-dc21,
  .main_last_8e18,
  .stone_6625 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .overlay-easy-cabc {
    page-break-inside: avoid;
  }
}

/* css-noise: 1cb4 */
.widget-item-t6 {
  padding: 0.1rem;
  font-size: 12px;
  line-height: 1.0;
}
