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

.stone-b94c:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.menu_solid_5503,
header,
.frame_thick_8a73,
.caption-2708,
.frame_62f9,
.surface_small_5f94,
.pressed_fd78,
.overlay-c995,
.shadow-e685 {
  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
   ============================================ */
.menu_solid_5503 {
  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);
}

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

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

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

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

.tabs-middle-9f20 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

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

.shade-right-c6e6 {
  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;
}

.link_narrow_8463 {
  flex: 1;
}

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

.primary-brown-1d38 {
  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);
}

.primary-brown-1d38:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.primary-brown-1d38.fn-active-a7ff {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.highlight-upper-7984 {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

.message-3c3c svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.module_4a0e[aria-expanded="true"] .copper-2b8f:nth-child(2) {
  opacity: 0;
}

.module_4a0e[aria-expanded="true"] .copper-2b8f:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .link_narrow_8463::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .link_narrow_8463.tag-basic-2daf {
    display: block;
    right: 0;
  }
  
  .content-8d8a {
    flex-direction: column;
    gap: 0;
  }
  
  .primary-brown-1d38 {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .link_narrow_8463::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;
  }
  
  .link_narrow_8463.tag-basic-2daf::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .link_narrow_8463 {
    display: none;
  }
  
  .module_4a0e {
    display: flex;
  }
  
  .shade-right-c6e6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .message-3c3c,
  .under_c4be {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .highlight-upper-7984 {
    position: relative;
  }
  
  .status_complex_52af {
    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;
  }
  
  .modal_2031[aria-expanded="true"] + .status_complex_52af {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .steel_991f {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .left-1034 {
    gap: 8px;
  }
  
  .message-3c3c {
    display: none;
  }
  
  .under_c4be {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .container_839d img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.old_d980 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.yellow-f5c4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.picture-static-52ec {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

.row-dynamic-07d8 {
  color: #ffa000;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

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

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

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

@media (max-width: 968px) {
  .smooth-e98f {
    grid-template-columns: 1fr;
  }
  
  .shade_7967 {
    font-size: 1.75rem;
  }
  
  .article_fba6 {
    order: -1;
    max-width: 100%;
  }
  
  .dark_20d3 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .shade_7967 {
    font-size: 1.5rem;
  }
  
  .bronze_95a1 {
    font-size: 1rem;
  }
  
  .yellow-f5c4 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .dark_20d3 {
    max-width: 250px;
  }
}

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

.center-86d0 {
  background: var(--color-primary);
  color: white;
}

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

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

.photo-left-3121:hover {
  background: var(--color-primary);
  color: white;
}

.list-small-83d3 {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.list-small-83d3:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

.tooltip-cool-a242 {
  padding: 16px 32px;
  font-size: 1.125rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.action-c162 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;
}

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

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

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

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

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

.module-in-8ccc {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rough-c8c9 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) {
  .light_4cb2 {
    grid-template-columns: 1fr;
  }
  
  .module-in-8ccc {
    font-size: 1.75rem;
  }
  
  .row_north_90c2 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .module-in-8ccc {
    font-size: 1.5rem;
  }
  
  .row_north_90c2 h3 {
    font-size: 1.375rem;
  }
  
  .row_north_90c2 h4 {
    font-size: 1.125rem;
  }
}

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

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

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

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

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

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

.status_2ff9 {
  flex-shrink: 0;
}

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

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

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

.stone-4411,
.button-dark-8cf3,
.glass-8a6d {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stone-4411 thead,
.button-dark-8cf3 thead {
  background: var(--color-primary);
  color: white;
}

.stone-4411 th,
.stone-4411 td,
.button-dark-8cf3 th,
.button-dark-8cf3 td,
.glass-8a6d th,
.glass-8a6d td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .stone-4411 th,
  .stone-4411 td,
  .button-dark-8cf3 th,
  .button-dark-8cf3 td,
  .glass-8a6d th,
  .glass-8a6d td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .stone-4411,
  .button-dark-8cf3,
  .glass-8a6d {
    min-width: 600px;
  }
}

.stone-4411 th,
.button-dark-8cf3 th,
.glass-8a6d th {
  font-weight: 600;
}

.stone-4411 tbody tr:hover,
.button-dark-8cf3 tbody tr:hover,
.glass-8a6d tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.in_8a04 h4 {
  color: white;
}

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

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

.active-0cc3:last-child {
  border-bottom: none;
}

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

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

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

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

.logo-005a:hover {
  text-decoration: underline;
}

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

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

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

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

.label-steel-0594 {
  list-style: none;
  padding: 0;
}

.label-steel-0594 li {
  padding: var(--space-xs) 0;
}

.in_5e8b {
  color: #4caf50;
}

.active_ef9a {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tabs-outer-78d2 {
  margin-top: var(--space-xxl);
}

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

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

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

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

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

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

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

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

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

.complex_1205 .form_last_50f2 {
  width: 100%;
  background: white;
}

.modal_4970 .form_last_50f2 {
  color: #667eea;
}

.grid_5c78 .form_last_50f2 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .cold-8716 {
    padding: var(--space-md);
  }
  
  .south_3f2d {
    padding: var(--space-md);
  }
  
  .filter-d26e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.north-38d2 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.widget-ea3a,
.accordion-old-259c,
.banner-pressed-7925,
.badge-8c09 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.aside-tiny-0eda {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

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

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

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

.grid-1dee {
  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);
}

.container_outer_d886 .grid-1dee {
  background: #e8f5e9;
  color: var(--color-success);
}

.nav-7787 .grid-1dee {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

.wrapper-short-1723 {
  margin-top: var(--space-xxl);
}

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

.hard-12b2 {
  text-align: center;
}

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

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

.menu-tall-e08a .header_290a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

.border-motion-963e {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

.pink-874a {
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.header-hovered-fdd5 {
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.block-brown-a282 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.cold-509e {
  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;
}

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

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

.module-dim-06c1 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.status_simple_7b5a {
  text-align: right;
}

.status_simple_7b5a .message-steel-161b {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.title-wood-6f9b {
  background: #e3f2fd;
  color: #1565c0;
}

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

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

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

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

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

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

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

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

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

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

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

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

.logo-40e3 {
  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);
}

.logo-40e3:hover {
  background: var(--color-bg-alt);
}

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

.logo-40e3[aria-expanded="true"] .preview_6e21 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.description_stone_b614 ul,
.component_bronze_2912 ul {
  list-style: none;
  padding: 0;
}

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

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

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

.surface-clean-607e {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

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

.surface-clean-607e ul {
  list-style: none;
  padding: 0;
}

.surface-clean-607e li {
  padding: var(--space-xs) 0;
  color: white;
}

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

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

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

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

.focus-1d63 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.medium_0800 {
  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_0800:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

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

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

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

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

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

.wrapper_0440 a:hover {
  color: white;
}

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

.mini-910d 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);
}

.mini-910d a:hover {
  color: white;
  border-color: #666;
  background: #333;
}

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

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

.frame_261c a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .progress_fresh_5f4c,
  .next-9f21 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.hovered_0a2c .picture-static-52ec {
  color: #4caf50;
  font-size: 0.875rem;
}

.tabs-c203 {
  list-style: none;
  padding: 0;
}

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

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

.tabs-c203 a:hover {
  color: white;
}

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

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

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

.accordion_current_6587 a:hover {
  color: white;
}

.outline-stale-c872 {
  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);
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .outline-stale-c872 {
    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;
  }
  
  .shade_7967 {
    font-size: 2rem;
  }
  
  .module-in-8ccc {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .smooth-e98f,
  .light_4cb2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .list_cc6c,
  .huge_adeb,
  .top-6492,
  .gradient-red-a1e0,
  .block-5ee9,
  .solid_181f,
  .link-hard-e129,
  .progress_fresh_5f4c,
  .next-9f21 {
    grid-template-columns: 1fr;
  }
  
  .pressed-0ed6 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .pressed_fd78 {
    padding: var(--space-lg) 0;
  }
  
  .action-c162 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .action-c162 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .form_last_50f2 {
    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;
  }
  
  .pressed-0ed6 {
    grid-template-columns: 1fr;
  }
  
  .message_cool_d709,
  .grid-rough-f93c,
  .feature-6529 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip-cool-a242,
  .gradient_014d,
  .message_cool_d709 .form_last_50f2,
  .grid-rough-f93c .form_last_50f2 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .shade_7967 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .module-in-8ccc {
    font-size: 1.375rem;
  }
  
  .nav-purple-12d1 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .block_5bbf,
  .solid_d4f7,
  .layout-fc81,
  .status_focused_720f,
  .disabled_tiny_d44d {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .element-f557 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .current_f839 {
    gap: var(--space-xs);
  }
  
  .old_d980 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .chip-b254 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .menu-tall-e08a {
    width: 150px;
    height: 150px;
  }
  
  .banner_071d {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .menu_solid_5503,
  .frame_thick_8a73,
  .message_cool_d709,
  .tertiary_7283,
  .overlay-c995,
  .shadow-e685,
  .module_4a0e {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .pressed_fd78 {
    page-break-inside: avoid;
  }
}

/* css-noise: 62af */
.promo-block-s0 {
  padding: 0.5rem;
  font-size: 11px;
  line-height: 1.2;
}
