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

.active-warm-f739:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.tiny-44cd,
header,
.thumbnail_glass_c96f,
.hard-60fc,
.active_east_88c4,
.shade-lite-447d,
.bottom-34dc,
.prev-6b91,
.highlight_383a {
  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
   ============================================ */
.tiny-44cd {
  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);
}

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

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

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

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

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

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

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

.info-d4bd {
  flex: 1;
}

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

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

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

.image_af21.fn-active-ff38 {
  background: var(--color-primary);
  color: white;
}

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

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

.link-tall-56a8 svg {
  transition: transform 0.2s ease;
}

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

.narrow-0ead {
  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;
}

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

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

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

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

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

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

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

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

.paragraph-274b svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .info-d4bd {
    display: none;
  }
  
  .thumbnail-d884 {
    display: flex;
  }
  
  .liquid_2f24 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .paragraph-274b,
  .footer-f7d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .info_516b {
    position: relative;
  }
  
  .narrow-0ead {
    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;
  }
  
  .link-tall-56a8[aria-expanded="true"] + .narrow-0ead {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .blue_e814 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .caption_narrow_3f4c {
    gap: 8px;
  }
  
  .paragraph-274b {
    display: none;
  }
  
  .footer-f7d5 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .wrapper_39c9 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.widget-b529 svg {
  flex-shrink: 0;
}

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

.widget-b529 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

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

.black-534b {
  color: var(--color-text-lighter);
}

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

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

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

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

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

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

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

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

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

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

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

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

.title-simple-018a {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .status_b11d {
    grid-template-columns: 1fr;
  }
  
  .surface-fb28 {
    font-size: 1.75rem;
  }
  
  .hover_full_9e91 {
    order: -1;
    max-width: 100%;
  }
  
  .title-simple-018a {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .surface-fb28 {
    font-size: 1.5rem;
  }
  
  .input-d6de {
    font-size: 1rem;
  }
  
  .north_2437 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .title-simple-018a {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-iron-dade:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.block-complex-12c4 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

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

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

.mask-blue-cf18 {
  list-style: none;
  counter-reset: toc-counter;
}

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

.mask-blue-cf18 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);
}

.mask-blue-cf18 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;
}

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

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

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

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

.hover-inner-d470 {
  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);
}

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

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

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

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

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

.tiny-1b77 img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.tiny-1b77 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);
}

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

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

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

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

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

.tiny-1b77 strong {
  font-weight: 600;
  color: var(--color-text);
}

.tiny-1b77 a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tiny-1b77 a:hover {
  color: var(--color-primary-dark);
}

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

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

.tag-da8c 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) {
  .under-5893 {
    grid-template-columns: 1fr;
  }
  
  .left_6373 {
    font-size: 1.75rem;
  }
  
  .tiny-1b77 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .left_6373 {
    font-size: 1.5rem;
  }
  
  .tiny-1b77 h3 {
    font-size: 1.375rem;
  }
  
  .tiny-1b77 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.gallery-78e4 {
  flex-shrink: 0;
}

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

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

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

.section_f0a0,
.carousel-hot-40de,
.caption_3c98 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.section_f0a0 thead,
.carousel-hot-40de thead {
  background: var(--color-primary);
  color: white;
}

.section_f0a0 th,
.section_f0a0 td,
.carousel-hot-40de th,
.carousel-hot-40de td,
.caption_3c98 th,
.caption_3c98 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section_f0a0 th,
  .section_f0a0 td,
  .carousel-hot-40de th,
  .carousel-hot-40de td,
  .caption_3c98 th,
  .caption_3c98 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .section_f0a0,
  .carousel-hot-40de,
  .caption_3c98 {
    min-width: 600px;
  }
}

.section_f0a0 th,
.carousel-hot-40de th,
.caption_3c98 th {
  font-weight: 600;
}

.section_f0a0 tbody tr:hover,
.carousel-hot-40de tbody tr:hover,
.caption_3c98 tbody tr:hover {
  background: var(--color-bg-alt);
}

.summary-dim-3c3e {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: var(--space-sm);
}

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

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

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

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

.popup-89a7 h4 {
  color: white;
}

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

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

.notice_67ba:last-child {
  border-bottom: none;
}

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

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

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

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

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

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

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

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

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

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

.outline_b639 li {
  padding: var(--space-xs) 0;
}

.sidebar-rough-3f5d {
  color: #4caf50;
}

.badge_b325 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-rough-698c {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.full-146b .backdrop-wood-c076 {
  width: 100%;
  background: white;
}

.slow_1af6 .backdrop-wood-c076 {
  color: #667eea;
}

.middle_f7b3 .backdrop-wood-c076 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .accent-0c23 {
    padding: var(--space-md);
  }
  
  .slider_gold_0a9b {
    padding: var(--space-md);
  }
  
  .right-3979 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.motion-5a01 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.gold-b630,
.tag_small_9a4f,
.menu_wood_14fa,
.basic-9328 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.yellow-0c47 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

@media (max-width: 768px) {
  .focus-iron-60b4 {
    grid-template-columns: 1fr;
  }
}

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

.hot-388c {
  border-color: var(--color-success);
}

.solid-426a {
  border-color: var(--color-warning);
}

.photo-advanced-0b95 {
  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);
}

.hot-388c .photo-advanced-0b95 {
  background: #e8f5e9;
  color: var(--color-success);
}

.solid-426a .photo-advanced-0b95 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.advanced-95f5 {
  margin-top: var(--space-xxl);
}

.border-south-21bf {
  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);
}

.outline_simple_bafa {
  text-align: center;
}

.mask-86f7 {
  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);
}

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

.mask-86f7 .alert_right_2201 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

.banner-4ce1 {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

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

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

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

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

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

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

.surface-2f15 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

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

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

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

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

.paragraph-motion-48ed {
  text-align: right;
}

.paragraph-motion-48ed .paragraph_2176 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.under-ee07 {
  background: #e8f5e9;
  color: #2e7d32;
}

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

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

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

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

.dropdown-tiny-9139 {
  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);
}

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

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

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

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

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

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

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

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

.progress-glass-c7c0 {
  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);
}

.progress-glass-c7c0:hover {
  background: var(--color-bg-alt);
}

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

.progress-glass-c7c0[aria-expanded="true"] .popup_97f5 {
  transform: rotate(180deg);
}

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

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

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

.info-340d li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.carousel_e7a8,
.hard-354a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.carousel_e7a8 h4,
.hard-354a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.carousel_e7a8 ul,
.hard-354a ul {
  list-style: none;
  padding: 0;
}

.carousel_e7a8 li,
.hard-354a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.grid-next-f370 {
  font-style: italic;
}

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

.list-smooth-dcef {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.purple_f5a4 a:hover {
  color: white;
}

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

.accent-9ccf 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);
}

.accent-9ccf a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

.status-7de8 {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

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

.status-7de8 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .article-blue-30f5,
  .search-af7b {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.under-c1c4 .brown_21f4 {
  color: #4caf50;
  font-size: 0.875rem;
}

.layout-liquid-1902 {
  list-style: none;
  padding: 0;
}

.layout-liquid-1902 li {
  margin-bottom: var(--space-xs);
}

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

.layout-liquid-1902 a:hover {
  color: white;
}

.tooltip-87f3 {
  list-style: none;
  padding: 0;
}

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

.tooltip-87f3 a {
  color: #b0b0b0;
  text-decoration: none;
}

.tooltip-87f3 a:hover {
  color: white;
}

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

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

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

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

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

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

.grid-left-afc7 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;
}

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

.photo-86eb:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-ccfd {
    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;
  }
  
  .surface-fb28 {
    font-size: 2rem;
  }
  
  .left_6373 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .status_b11d,
  .under-5893 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .purple_c69d,
  .focus-iron-60b4,
  .short_deda,
  .list-78fa,
  .dim-c288,
  .slider_dark_eeca,
  .orange_0830,
  .article-blue-30f5,
  .search-af7b {
    grid-template-columns: 1fr;
  }
  
  .bright_d2f3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bottom-34dc {
    padding: var(--space-lg) 0;
  }
  
  .mask-blue-cf18 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .mask-blue-cf18 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .backdrop-wood-c076 {
    min-height: 44px;
  }
  
  /* Optimize images for mobile */
  img {
    height: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 1.75rem;
    --space-xxl: 2rem;
  }
  
  .bright_d2f3 {
    grid-template-columns: 1fr;
  }
  
  .upper-c783,
  .shade-5baf,
  .component-red-d25d {
    flex-direction: column;
    width: 100%;
  }
  
  .frame_2066,
  .summary_plasma_48cf,
  .upper-c783 .backdrop-wood-c076,
  .shade-5baf .backdrop-wood-c076 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .surface-fb28 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .left_6373 {
    font-size: 1.375rem;
  }
  
  .glass_257c {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .breadcrumb-iron-dade,
  .hard-750e,
  .column_425c,
  .slider-current-0538,
  .notification_up_d4ee {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .tiny-0ddd {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .nav-purple-c0fe {
    gap: var(--space-xs);
  }
  
  .widget-b529 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .border_f141 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .mask-86f7 {
    width: 150px;
    height: 150px;
  }
  
  .middle_1df0 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .tiny-44cd,
  .thumbnail_glass_c96f,
  .upper-c783,
  .list-smooth-dcef,
  .prev-6b91,
  .highlight_383a,
  .thumbnail-d884 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bottom-34dc {
    page-break-inside: avoid;
  }
}

/* css-noise: 9f2e */
.shadow-element-a7 {
  padding: 0.1rem;
  font-size: 11px;
  line-height: 1.0;
}
