/* ============================================
   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)
   ============================================ */
.feature-liquid-85e3 {
  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;
}

.feature-liquid-85e3:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.gradient_orange_3986,
header,
.list-blue-06ce,
.bronze_238d,
.shade-focused-ce02,
.media_soft_c29c,
.tiny_1816,
.first_c3e7,
.lite_f0f0 {
  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
   ============================================ */
.gradient_orange_3986 {
  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);
}

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

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

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

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

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

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

.detail-gold-36ba {
  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;
}

.hovered-ee44 {
  flex: 1;
}

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

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

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

.feature-a33d.fn-active-31cd {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.form-wood-7a23 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.solid-5085 svg {
  flex-shrink: 0;
}

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

.lower-813f: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);
}

.lower-813f svg {
  flex-shrink: 0;
  animation: bounce 2s infinite;
}

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

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

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

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

.link_ffa3[aria-expanded="true"] .content-8792:nth-child(2) {
  opacity: 0;
}

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

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

  .hovered-ee44::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .hovered-ee44.east-e310 {
    display: block;
    right: 0;
  }
  
  .input-gas-701a {
    flex-direction: column;
    gap: 0;
  }
  
  .feature-a33d {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .hovered-ee44::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;
  }
  
  .hovered-ee44.east-e310::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .hovered-ee44 {
    display: none;
  }
  
  .link_ffa3 {
    display: flex;
  }
  
  .detail-gold-36ba {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .solid-5085,
  .lower-813f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .form-wood-7a23 {
    position: relative;
  }
  
  .photo_dynamic_27a4 {
    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;
  }
  
  .alert_bronze_839f[aria-expanded="true"] + .photo_dynamic_27a4 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .slider_east_f0f6 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .overlay-231a {
    gap: 8px;
  }
  
  .solid-5085 {
    display: none;
  }
  
  .lower-813f {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .focus_f15a img {
    height: 32px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .lower-813f {
    padding: 6px 12px;
    font-size: 0.8125rem;
  }
  
  .lower-813f svg {
    width: 14px;
    height: 14px;
  }
  
  .up-f147 {
    gap: var(--space-sm);
  }
}

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

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

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

.text_left_87a2 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.motion-e910 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.new-77db {
  display: flex;
  gap: var(--space-sm);
}

.content-9c09 {
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .text-up-294e {
    grid-template-columns: 1fr;
  }
  
  .hover_27ca {
    font-size: 1.75rem;
  }
  
  .cold-7217 {
    order: -1;
    max-width: 100%;
  }
  
  .box-fc41 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hover_27ca {
    font-size: 1.5rem;
  }
  
  .feature-large-1109 {
    font-size: 1rem;
  }
  
  .motion-e910 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .box-fc41 {
    max-width: 250px;
  }
}

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

.solid-7eb3 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

.tall-311e {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.block-new-11c4 {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.photo_695a 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) {
  .right_66e2 {
    grid-template-columns: 1fr;
  }
  
  .surface_75b8 {
    font-size: 1.75rem;
  }
  
  .pro_c533 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .surface_75b8 {
    font-size: 1.5rem;
  }
  
  .pro_c533 h3 {
    font-size: 1.375rem;
  }
  
  .pro_c533 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.thick-cfb4 {
  flex-shrink: 0;
}

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

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

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

.paragraph_dim_fb34,
.border_hard_564a,
.badge_6bd2 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.paragraph_dim_fb34 thead,
.border_hard_564a thead {
  background: var(--color-primary);
  color: white;
}

.paragraph_dim_fb34 th,
.paragraph_dim_fb34 td,
.border_hard_564a th,
.border_hard_564a td,
.badge_6bd2 th,
.badge_6bd2 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .paragraph_dim_fb34 th,
  .paragraph_dim_fb34 td,
  .border_hard_564a th,
  .border_hard_564a td,
  .badge_6bd2 th,
  .badge_6bd2 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .paragraph_dim_fb34,
  .border_hard_564a,
  .badge_6bd2 {
    min-width: 600px;
  }
}

.paragraph_dim_fb34 th,
.border_hard_564a th,
.badge_6bd2 th {
  font-weight: 600;
}

.paragraph_dim_fb34 tbody tr:hover,
.border_hard_564a tbody tr:hover,
.badge_6bd2 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.item-3c2b h4 {
  color: white;
}

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

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

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

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

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

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

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

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

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

.active_liquid_2f39 {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

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

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

.current-c363 {
  list-style: none;
  padding: 0;
}

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

.current-4d20 {
  color: #4caf50;
}

.filter_ba42 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.white_0bde .mini-f7db {
  width: 100%;
  background: white;
}

.gold-2e05 .mini-f7db {
  color: #667eea;
}

.gold-7c2f .mini-f7db {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .slow-3265 {
    padding: var(--space-md);
  }
  
  .dynamic_d834 {
    padding: var(--space-md);
  }
  
  .thick_3de4 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

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

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

.active-629a,
.lower-2399,
.header-motion-fc25,
.heading_wide_1519 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

.south-112f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

.photo-b544 {
  border-color: var(--color-warning);
}

.article-6f16 {
  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);
}

.detail-d5a9 .article-6f16 {
  background: #e8f5e9;
  color: var(--color-success);
}

.photo-b544 .article-6f16 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.focus-center-b246 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

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

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

.search-stale-6bb6 {
  text-align: center;
}

.thumbnail-stale-b61e {
  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);
}

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

.thumbnail-stale-b61e .summary_0de6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

.texture-light-497c {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

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

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

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

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

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

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

.notification-dirty-ec08 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.focused-62fc {
  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;
}

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

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

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

.message-9db6 {
  text-align: right;
}

.message-9db6 .pink_affe {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.background_gold_cd4b {
  background: #e8f5e9;
  color: #2e7d32;
}

.border-selected-9381 {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

.tooltip-1d9f {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.title-lite-39d6 ul,
.title-lite-39d6 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.title-lite-39d6 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.pagination-3db4,
.button-65b9 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.pagination-3db4 h4,
.button-65b9 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.pagination-3db4 ul,
.button-65b9 ul {
  list-style: none;
  padding: 0;
}

.pagination-3db4 li,
.button-65b9 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

.layout-iron-5131 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.label_89f2 a:hover {
  color: white;
}

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

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

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

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

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

.layout_f486 a:hover {
  color: white;
}

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

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

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

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

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

.clean_2edc .new-77db {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.pink_9372 a:hover {
  color: white;
}

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

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

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

.surface_b6e6 a:hover {
  color: white;
}

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

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

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

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

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

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

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

.highlight-pressed-444d {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: 600;
}

.highlight-pressed-444d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hard-5f17 {
    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;
  }
  
  .hover_27ca {
    font-size: 2rem;
  }
  
  .surface_75b8 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .text-up-294e,
  .right_66e2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .sort_5591,
  .module_simple_2fe8,
  .surface_1249,
  .short_8343,
  .alert_inner_be16,
  .short-2029,
  .table_e5bf,
  .form-f3e5,
  .info-aaaf {
    grid-template-columns: 1fr;
  }
  
  .notice-silver-b513 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .tiny_1816 {
    padding: var(--space-lg) 0;
  }
  
  .warm_db9b li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .warm_db9b li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .mini-f7db {
    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;
  }
  
  .notice-silver-b513 {
    grid-template-columns: 1fr;
  }
  
  .outer_a50e,
  .description-thick-eace,
  .focus-d30d {
    flex-direction: column;
    width: 100%;
  }
  
  .tall-311e,
  .block-new-11c4,
  .outer_a50e .mini-f7db,
  .description-thick-eace .mini-f7db {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .hover_27ca {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .surface_75b8 {
    font-size: 1.375rem;
  }
  
  .under-fd27 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .form_470f,
  .logo-ee98,
  .grid-033a,
  .chip-6d01,
  .dirty_f34c {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .description_north_7811 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .secondary-8403 {
    gap: var(--space-xs);
  }
  
  .text_left_87a2 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .active_liquid_2f39 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .thumbnail-stale-b61e {
    width: 150px;
    height: 150px;
  }
  
  .card_1670 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .gradient_orange_3986,
  .list-blue-06ce,
  .outer_a50e,
  .card_2ff8,
  .first_c3e7,
  .lite_f0f0,
  .link_ffa3 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .tiny_1816 {
    page-break-inside: avoid;
  }
}

/* css-noise: 5c3d */
.promo-block-u9 {
  padding: 0.4rem;
  font-size: 12px;
  line-height: 1.2;
}
