/* ============================================
   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)
   ============================================ */
.input-in-48a0 {
  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;
}

.input-in-48a0:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.table_cool_227d,
header,
.action_a70a,
.cool-735e,
.overlay_3282,
.dropdown-e2ec,
.sidebar_5969,
.feature-liquid-c845,
.feature-a35e {
  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
   ============================================ */
.table_cool_227d {
  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);
}

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

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

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

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

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

.outer-a52b img {
  height: 36px;
  width: auto;
  display: block;
}

.mask-middle-7ab8 {
  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;
}

.under-c2db {
  flex: 1;
}

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

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

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

.new_d2d3.fn-active-8a16 {
  background: var(--color-primary);
  color: white;
}

/* Dropdown Navigation */
.panel-9cf4 {
  position: relative;
}

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

.last-4331 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.panel_iron_78af svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1100px) {
  .under-c2db {
    display: none;
  }
  
  .widget_dim_2a2b {
    display: flex;
  }
  
  .mask-middle-7ab8 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .panel_iron_78af,
  .action_dddd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .panel-9cf4 {
    position: relative;
  }
  
  .container_abba {
    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;
  }
  
  .last-4331[aria-expanded="true"] + .container_abba {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .primary_d232 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .row_6d6b {
    gap: 8px;
  }
  
  .panel_iron_78af {
    display: none;
  }
  
  .action_dddd {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .outer-a52b img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.link_first_7711 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

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

.outline-orange-7071 {
  color: var(--color-text-lighter);
}

.picture-basic-111f {
  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) {
  .picture-basic-111f {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .picture-basic-111f {
    font-size: 1.5rem;
  }
}

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

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

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

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

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

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

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

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

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

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

.alert-bright-3507 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .card-advanced-dc91 {
    grid-template-columns: 1fr;
  }
  
  .picture-basic-111f {
    font-size: 1.75rem;
  }
  
  .icon_97be {
    order: -1;
    max-width: 100%;
  }
  
  .alert-bright-3507 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .picture-basic-111f {
    font-size: 1.5rem;
  }
  
  .brown_e6e9 {
    font-size: 1rem;
  }
  
  .input_f05a {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .alert-bright-3507 {
    max-width: 250px;
  }
}

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

.highlight-outer-12fe {
  background: var(--color-primary);
  color: white;
}

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

.tooltip-soft-131d {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.tooltip-soft-131d:hover {
  background: var(--color-primary);
  color: white;
}

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

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

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

.hard-045c {
  padding: 20px 40px;
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

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

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

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

.outline-4a2a {
  list-style: none;
  counter-reset: toc-counter;
}

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

.outline-4a2a 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);
}

.outline-4a2a 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;
}

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

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

.shadow-right-9479 {
  background: var(--color-bg-section);
}

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

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

.form-stone-2e11 {
  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);
}

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

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

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

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

.tabs-last-c22a img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.tabs-last-c22a 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);
}

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

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

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

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

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

.tabs-last-c22a strong {
  font-weight: 600;
  color: var(--color-text);
}

.tabs-last-c22a a {
  color: var(--color-primary);
  text-decoration: underline;
}

.tabs-last-c22a a:hover {
  color: var(--color-primary-dark);
}

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

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

.modal_9f44 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) {
  .active_4f1b {
    grid-template-columns: 1fr;
  }
  
  .form-stone-2e11 {
    font-size: 1.75rem;
  }
  
  .tabs-last-c22a {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-stone-2e11 {
    font-size: 1.5rem;
  }
  
  .tabs-last-c22a h3 {
    font-size: 1.375rem;
  }
  
  .tabs-last-c22a h4 {
    font-size: 1.125rem;
  }
}

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

.fixed-005d {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

.caption-6cd0 {
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.article-warm-15af {
  flex-shrink: 0;
}

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

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

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

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

.title_a8db thead,
.tooltip_33c1 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.title_a8db th,
.tooltip_33c1 th,
.form_e95b th {
  font-weight: 600;
}

.title_a8db tbody tr:hover,
.tooltip_33c1 tbody tr:hover,
.form_e95b tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.complex-a130 h4 {
  color: white;
}

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

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

.overlay-red-299a:last-child {
  border-bottom: none;
}

.overlay-red-299a dt {
  font-weight: 600;
  color: var(--color-text-light);
}

.overlay-red-299a dd {
  font-weight: 500;
  color: var(--color-text);
  text-align: right;
}

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

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

.sort-east-9cf1:hover {
  text-decoration: underline;
}

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

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

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

.steel-2b11 {
  font-weight: 600;
  color: white;
}

.blue-ca66 {
  list-style: none;
  padding: 0;
}

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

.info_wide_cba6 {
  color: #4caf50;
}

.main_simple_8c0e {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  .pattern-hot-82df {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

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

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

.main_basic_f3ae .video-bce6 {
  width: 100%;
  background: white;
}

.filter-c114 .video-bce6 {
  color: #667eea;
}

.prev_6ced .video-bce6 {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .gas-7043 {
    padding: var(--space-md);
  }
  
  .paragraph_action_218c {
    padding: var(--space-md);
  }
  
  .outline-b831 {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.feature-hard-d593 li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.outline-91a2,
.outline-2ecb,
.status-5550,
.article_5e2d {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb-7b58 {
  border-color: var(--color-warning);
}

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

.icon_bright_c88d .heading_paper_ddb6 {
  background: #e8f5e9;
  color: var(--color-success);
}

.breadcrumb-7b58 .heading_paper_ddb6 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slow-01ac {
  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);
}

.pro-b95b {
  text-align: center;
}

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

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

.center_8a96 .steel-2b11 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.video-8f68 {
  color: var(--color-text-light);
}

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

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

.panel-smooth-f322 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.slider-solid-b5b6 {
  border: 2px solid #4caf50;
}

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

.sidebar-action-8d99 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

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

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

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

.last_ef15 {
  text-align: right;
}

.last_ef15 .avatar_1603 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

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

.hard-0c1b {
  background: #e3f2fd;
  color: #1565c0;
}

.description-plasma-8502 {
  background: #fff3e0;
  color: #e65100;
}

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

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

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

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

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

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

.link-selected-255d strong {
  color: var(--color-primary);
}

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

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

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

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

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

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

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

.light-e0c8[aria-expanded="true"] .avatar_next_ffd1 {
  transform: rotate(180deg);
}

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

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

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

.layout-glass-ae80 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.steel-66e9,
.carousel-yellow-6c13 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.steel-66e9 h4,
.carousel-yellow-6c13 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.steel-66e9 ul,
.carousel-yellow-6c13 ul {
  list-style: none;
  padding: 0;
}

.steel-66e9 li,
.carousel-yellow-6c13 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

.liquid-26bc ul {
  list-style: none;
  padding: 0;
}

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

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

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

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

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

.highlight-3ecb {
  font-style: italic;
}

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

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

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

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

.hidden-hovered-7c80 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-8835 a:hover {
  color: white;
}

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

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

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

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

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

.fixed_ae2d a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .medium_2bfb,
  .avatar-motion-8b18 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.white-a0dc .silver-b023 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.active_dim_fbde a:hover {
  color: white;
}

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

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

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

.card_white_4de0 a:hover {
  color: white;
}

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

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

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

.pro-5f58 {
  font-size: 0.75rem;
  color: #666666;
}

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

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

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

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

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

@media (max-width: 768px) {
  .border_3c61 {
    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;
  }
  
  .picture-basic-111f {
    font-size: 2rem;
  }
  
  .form-stone-2e11 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .card-advanced-dc91,
  .active_4f1b {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .block-dbb2,
  .pressed_0df5,
  .pattern-hot-82df,
  .background-last-5b53,
  .texture_lower_17e7,
  .paragraph-cd1a,
  .chip_wood_1b8b,
  .medium_2bfb,
  .avatar-motion-8b18 {
    grid-template-columns: 1fr;
  }
  
  .disabled-wood-72cf {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .sidebar_5969 {
    padding: var(--space-lg) 0;
  }
  
  .outline-4a2a li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .outline-4a2a li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .video-bce6 {
    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;
  }
  
  .disabled-wood-72cf {
    grid-template-columns: 1fr;
  }
  
  .center_55cf,
  .hidden-hovered-7c80,
  .alert_6894 {
    flex-direction: column;
    width: 100%;
  }
  
  .tooltip_c04a,
  .hard-045c,
  .center_55cf .video-bce6,
  .hidden-hovered-7c80 .video-bce6 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .picture-basic-111f {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .form-stone-2e11 {
    font-size: 1.375rem;
  }
  
  .disabled_4d1a {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .active-f9fd,
  .plasma-429e,
  .modal-copper-e71f,
  .tag_green_3af8,
  .orange_52b9 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .article_motion_bac8 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .border-thick-054e {
    gap: var(--space-xs);
  }
  
  .link_first_7711 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .footer_e072 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .center_8a96 {
    width: 150px;
    height: 150px;
  }
  
  .focused_71cd {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .table_cool_227d,
  .action_a70a,
  .center_55cf,
  .search_4e5b,
  .feature-liquid-c845,
  .feature-a35e,
  .widget_dim_2a2b {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .sidebar_5969 {
    page-break-inside: avoid;
  }
}

/* css-noise: 3c45 */
.ghost-box-s0 {
  padding: 0.3rem;
  font-size: 10px;
  line-height: 1.0;
}
