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

.cool_f870:focus {
  top: 0;
}

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

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

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

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

/* Allow specific elements to exceed container */
html,
body,
.feature-out-2d19,
header,
.list_645f,
.dropdown_4920,
.narrow-0945,
.carousel_fe7f,
.bottom-981f,
.preview_96e6,
.motion-8927 {
  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
   ============================================ */
.feature-out-2d19 {
  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);
}

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

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

/* Scrolled state */
.feature-out-2d19.form-advanced-274a {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

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

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

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

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

.tag-slow-bd35 {
  flex: 1;
}

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

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

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

.summary-ed0b.fn-active-4ee5 {
  background: var(--color-primary);
  color: white;
}

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

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

.form-fb89 svg {
  transition: transform 0.2s ease;
}

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

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

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

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

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

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

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

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

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

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

.description_36bc svg {
  flex-shrink: 0;
}

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

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

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

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

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

.outline-north-408a {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition-base);
}

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

.large_0591[aria-expanded="true"] .outline-north-408a:nth-child(2) {
  opacity: 0;
}

.large_0591[aria-expanded="true"] .outline-north-408a:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

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

  .tag-slow-bd35::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge(Chromium) */
  }
  
  .tag-slow-bd35.surface_2b42 {
    display: block;
    right: 0;
  }
  
  .row-outer-6c6a {
    flex-direction: column;
    gap: 0;
  }
  
  .summary-ed0b {
    display: block;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--color-border-light);
  }
  
  /* Mobile overlay */
  .tag-slow-bd35::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;
  }
  
  .tag-slow-bd35.surface_2b42::before {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 1100px) {
  .tag-slow-bd35 {
    display: none;
  }
  
  .large_0591 {
    display: flex;
  }
  
  .outer_6cec {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .description_36bc,
  .pattern_4680 {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .nav_5b2d {
    position: relative;
  }
  
  .brown-7399 {
    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;
  }
  
  .form-fb89[aria-expanded="true"] + .brown-7399 {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .under_5110 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

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

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

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

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

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

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

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

.solid-bee4 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

.hidden-rough-95d3 a {
  color: var(--color-primary);
  text-decoration: none;
}

.hidden-rough-95d3 a:hover {
  text-decoration: underline;
}

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

.tag-lower-10a9 {
  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) {
  .tag-lower-10a9 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .tag-lower-10a9 {
    font-size: 1.5rem;
  }
}

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

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

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

.gas-496f {
  display: flex;
  gap: var(--space-sm);
}

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

.container-3bef {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.container-3bef strong {
  font-weight: 600;
  color: var(--color-text);
}

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

.header-bottom-7517 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.gold-be34 {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .black_5868 {
    grid-template-columns: 1fr;
  }
  
  .tag-lower-10a9 {
    font-size: 1.75rem;
  }
  
  .tall_580d {
    order: -1;
    max-width: 100%;
  }
  
  .gold-be34 {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .tag-lower-10a9 {
    font-size: 1.5rem;
  }
  
  .description-wood-a3e4 {
    font-size: 1rem;
  }
  
  .hidden-rough-95d3 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .gold-be34 {
    max-width: 250px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.filter-9d90 {
  background: var(--color-bg-section);
}

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

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

.highlight-last-95ab {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.active-inner-791b {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 0;
}

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

.active-inner-791b 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) {
  .description_ef1e {
    grid-template-columns: 1fr;
  }
  
  .highlight-last-95ab {
    font-size: 1.75rem;
  }
  
  .thumbnail_5f53 {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .highlight-last-95ab {
    font-size: 1.5rem;
  }
  
  .thumbnail_5f53 h3 {
    font-size: 1.375rem;
  }
  
  .thumbnail_5f53 h4 {
    font-size: 1.125rem;
  }
}

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

.carousel-plasma-025e {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

.shadow-left-3f75 strong {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

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

.full-bbe5 {
  flex-shrink: 0;
}

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

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

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

.gallery-66ca,
.image_thick_93a4,
.short_cc85 {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-66ca thead,
.image_thick_93a4 thead {
  background: var(--color-primary);
  color: white;
}

.gallery-66ca th,
.gallery-66ca td,
.image_thick_93a4 th,
.image_thick_93a4 td,
.short_cc85 th,
.short_cc85 td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gallery-66ca th,
  .gallery-66ca td,
  .image_thick_93a4 th,
  .image_thick_93a4 td,
  .short_cc85 th,
  .short_cc85 td {
    padding: var(--space-sm);
    font-size: 0.875rem;
  }
  
  .gallery-66ca,
  .image_thick_93a4,
  .short_cc85 {
    min-width: 600px;
  }
}

.gallery-66ca th,
.image_thick_93a4 th,
.short_cc85 th {
  font-weight: 600;
}

.gallery-66ca tbody tr:hover,
.image_thick_93a4 tbody tr:hover,
.short_cc85 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.preview-785e h4 {
  color: white;
}

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

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

.panel-8d38:last-child {
  border-bottom: none;
}

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

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

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

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

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

.nav-out-8c11 {
  text-align: center;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

.video-f086 {
  color: #4caf50;
}

.picture_stone_aa93 {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.sort-5dd5 .icon-6082 {
  width: 100%;
  background: white;
}

.secondary_dark_d0f2 .icon-6082 {
  color: #667eea;
}

.block-4f13 .icon-6082 {
  color: #f5576c;
}

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

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

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

.out-917a {
  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);
}

.focus-27e2 h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.hot-5a78 {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .focus-27e2 {
    padding: var(--space-md);
  }
  
  .hot-5a78 {
    padding: var(--space-md);
  }
  
  .info_c76e {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

.form-8c6d li {
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

.photo-4c5f,
.clean_e947,
.grid_thick_ed50,
.component-glass-11f1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

.avatar-first-ace2 {
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

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

.thumbnail-last-2d2f:hover {
  background: var(--color-primary-dark);
}

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

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

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

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

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

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

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

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

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

.primary_hot_5564 {
  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_yellow_b789 .primary_hot_5564 {
  background: #e8f5e9;
  color: var(--color-success);
}

.overlay_pro_87c4 .primary_hot_5564 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-liquid-f05e {
  text-align: center;
}

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

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

.grid_blue_ebdb .search_pressed_51e7 {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

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

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

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

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

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

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

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

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

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

.footer-paper-8cba {
  color: var(--color-text-light);
}

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

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

.header-dim-d032 {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

.list-tall-40b9 {
  border: 2px solid #4caf50;
}

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

.full-17d1 {
  display: flex;
  gap: var(--space-md);
  flex: 1;
}

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

.grid-mini-96f0 {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

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

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

.input-dfae {
  text-align: right;
}

.input-dfae .upper-3bef {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

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

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

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

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

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

.dynamic-9fd1 {
  background: #e8f5e9;
  color: #2e7d32;
}

.hero-b994 {
  background: #e3f2fd;
  color: #1565c0;
}

.button-north-24c3 {
  background: #fff3e0;
  color: #e65100;
}

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

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

.grid-plasma-958f {
  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);
}

.grid-plasma-958f:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-text-light);
}

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

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

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

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

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

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

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

.shadow-top-aaad {
  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);
}

.shadow-top-aaad:hover {
  background: var(--color-bg-alt);
}

.search-6a54 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.shadow-top-aaad[aria-expanded="true"] .search-6a54 {
  transform: rotate(180deg);
}

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

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

.button-orange-d1e5 ul,
.button-orange-d1e5 ol {
  margin: var(--space-sm) 0;
  padding-left: var(--space-lg);
}

.button-orange-d1e5 li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

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

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

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

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

.button_3c13,
.inner-e72a {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.button_3c13 h4,
.inner-e72a h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.button_3c13 ul,
.inner-e72a ul {
  list-style: none;
  padding: 0;
}

.button_3c13 li,
.inner-e72a li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

.card-right-4eb3 {
  max-width: 800px;
  margin: var(--space-xxl) auto;
}

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

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

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

.banner-11b1 {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

.box-motion-3028 {
  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);
}

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

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

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

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

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

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

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

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

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

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

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

.outline-ce64 a:hover {
  color: white;
}

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

.accent-static-fbd1 a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid #424242;
  border-radius: 4px;
  transition: var(--transition-fast);
}

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

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

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

.right_8987 a:hover {
  color: white;
}

.highlight-outer-6f0b > p {
  font-size: 0.875rem;
  color: #808080;
  margin: 0;
}

@media (max-width: 768px) {
  .preview_461c,
  .frame-right-b00d {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.info_7d8b .gas-496f {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.highlight_c104 a:hover {
  color: white;
}

.complex-99c7 {
  list-style: none;
  padding: 0;
}

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

.complex-99c7 a {
  color: #b0b0b0;
  text-decoration: none;
}

.complex-99c7 a:hover {
  color: white;
}

.highlight-outer-6f0b {
  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);
}

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

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

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

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

.paragraph-out-1c7b a {
  color: #808080;
  text-decoration: none;
  transition: var(--transition-fast);
}

.paragraph-out-1c7b 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;
}

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

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

@media (max-width: 768px) {
  .highlight-outer-6f0b {
    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;
  }
  
  .tag-lower-10a9 {
    font-size: 2rem;
  }
  
  .highlight-last-95ab {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .black_5868,
  .description_ef1e {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .nav_red_8ca3,
  .container_active_3e8b,
  .slow-e82a,
  .left-e288,
  .down-a497,
  .box-dark-7253,
  .solid_766f,
  .preview_461c,
  .frame-right-b00d {
    grid-template-columns: 1fr;
  }
  
  .row_391a {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .bottom-981f {
    padding: var(--space-lg) 0;
  }
  
  .aside_white_0964 li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .aside_white_0964 li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .icon-6082 {
    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;
  }
  
  .row_391a {
    grid-template-columns: 1fr;
  }
  
  .header-bottom-7517,
  .title-d0a8,
  .last-97c9 {
    flex-direction: column;
    width: 100%;
  }
  
  .large_e9bc,
  .media_f236,
  .header-bottom-7517 .icon-6082,
  .title-d0a8 .icon-6082 {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .tag-lower-10a9 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .highlight-last-95ab {
    font-size: 1.375rem;
  }
  
  .row-over-b47f {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .texture-190a,
  .nav-stale-d863,
  .backdrop-center-2c8e,
  .row_5f1f,
  .heading-plasma-c16f {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .gallery_west_9529 {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .rough-1fdc {
    gap: var(--space-xs);
  }
  
  .solid-bee4 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .photo_5096 {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .grid_blue_ebdb {
    width: 150px;
    height: 150px;
  }
  
  .highlight-9651 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .feature-out-2d19,
  .list_645f,
  .header-bottom-7517,
  .center_d7a0,
  .preview_96e6,
  .motion-8927,
  .large_0591 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .bottom-981f {
    page-break-inside: avoid;
  }
}

/* css-noise: 8cb5 */
.ghost-box-h7 {
  padding: 0.3rem;
  font-size: 14px;
  line-height: 1.0;
}
