/* ============================================
   Modern CSS for SEO-Optimized Content Site
   Based on Google 2026 Best Practices
   ============================================ */

/* ============================================
   1. CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-primary: #1976d2;
  --color-primary-dark: #115293;
  --color-primary-light: #4791db;
  --color-secondary: #424242;
  --color-accent: #ff6b6b;
  --color-success: #4caf50;
  --color-warning: #ff9800;
  --color-danger: #f44336;
  
  /* Neutrals */
  --color-text: #212121;
  --color-text-light: #666666;
  --color-text-lighter: #999999;
  --color-border: #e0e0e0;
  --color-border-light: #f5f5f5;
  --color-bg: #ffffff;
  --color-bg-alt: #fafafa;
  --color-bg-section: #f8f9fa;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Merriweather', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here: combined with body's overflow-x: hidden
     it makes <html> its own scroll container and breaks the sticky header. */
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
}

/* ============================================
   2. SKIP LINK (Accessibility)
   ============================================ */
.feature-1e86 {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
}

.feature-1e86:focus {
  top: 0;
}

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

@media (max-width: 768px) {
  .hero-red-5aea {
    padding: 0 var(--space-sm);
  }
}

@media (max-width: 480px) {
  .hero-red-5aea {
    padding: 0 12px;
  }
}

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

/* Allow specific elements to exceed container */
html,
body,
.message_b526,
header,
.shade_4ed3,
.silver_b14e,
.caption-glass-919e,
.fixed-1c82,
.list_orange_b901,
.link-1170,
.dim-287c {
  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
   ============================================ */
.message_b526 {
  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);
}

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

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

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

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

.modal-narrow-462e {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.block-72a7 img {
  height: 36px;
  width: auto;
  display: block;
}

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

.huge_48e8 {
  flex: 1;
}

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

.column-under-0589 {
  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);
}

.column-under-0589:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

.column-under-0589.fn-active-f3b1 {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.brown_088d svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.accent_motion_3266[aria-expanded="true"] .easy-69a7:nth-child(2) {
  opacity: 0;
}

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

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

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

@media (max-width: 1100px) {
  .huge_48e8 {
    display: none;
  }
  
  .accent_motion_3266 {
    display: flex;
  }
  
  .upper_27c6 {
    display: none;
  }
  
  /* Adjust header buttons on tablet */
  .brown_088d,
  .item_be1b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  /* 移动端下拉菜单改为堆叠显示，不需要浮动 */
  .popup_518f {
    position: relative;
  }
  
  .element-db6a {
    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;
  }
  
  .small_96e6[aria-expanded="true"] + .element-db6a {
    max-height: 320px; /* 足够容纳所有子项，展开时自然撑开 */
    margin-top: 8px;
  }
  
  .list_light_6555 {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Stack buttons vertically or hide login on small screens */
  .dirty-8ffe {
    gap: 8px;
  }
  
  .brown_088d {
    display: none;
  }
  
  .item_be1b {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
  
  .block-72a7 img {
    height: 32px;
    width: auto;
  }
}

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

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

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

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

.detail_3f69 svg {
  flex-shrink: 0;
}

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

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

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

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

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

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

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

.component-bottom-9ce2 a {
  color: var(--color-primary);
  text-decoration: none;
}

.component-bottom-9ce2 a:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.wrapper-lower-d5f0 {
  display: flex;
  gap: var(--space-sm);
}

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

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

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

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

.alert-bottom-725e {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

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

.overlay-b43e {
  position: relative;
  text-align: center;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  .west_864e {
    grid-template-columns: 1fr;
  }
  
  .sort_19eb {
    font-size: 1.75rem;
  }
  
  .title-ef29 {
    order: -1;
    max-width: 100%;
  }
  
  .overlay-b43e {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .sort_19eb {
    font-size: 1.5rem;
  }
  
  .button_wide_a8e9 {
    font-size: 1rem;
  }
  
  .component-bottom-9ce2 {
    font-size: 0.8125rem;
    flex-wrap: wrap;
  }
  
  .overlay-b43e {
    max-width: 250px;
  }
}

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

.menu-085f {
  background: var(--color-primary);
  color: white;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma-c85c 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.plasma-4011 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) {
  .border-b219 {
    grid-template-columns: 1fr;
  }
  
  .content_b010 {
    font-size: 1.75rem;
  }
  
  .label_dim_b609 {
    max-width: 100%;
  }
}

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

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

.gas-4cec {
  background: #fff3e0;
  border-color: var(--color-warning);
}

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

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

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

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

.soft-df6d {
  flex-shrink: 0;
}

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

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

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

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

.info_06ce thead,
.tall_6493 thead {
  background: var(--color-primary);
  color: white;
}

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

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

.info_06ce th,
.tall_6493 th,
.plasma_44b6 th {
  font-weight: 600;
}

.info_06ce tbody tr:hover,
.tall_6493 tbody tr:hover,
.plasma_44b6 tbody tr:hover {
  background: var(--color-bg-alt);
}

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

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

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

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

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

.steel_6e03 h4 {
  color: white;
}

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

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

.card-4bfa:last-child {
  border-bottom: none;
}

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

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

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

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

.breadcrumb-cfe5:hover {
  text-decoration: underline;
}

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

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

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

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

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

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

.notification-red-057a {
  color: #4caf50;
}

.short-4b1b {
  color: #ff9800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.outline-4d8f .gallery_912b {
  width: 100%;
  background: white;
}

.upper_13fd .gallery_912b {
  color: #667eea;
}

.texture_f411 .gallery_912b {
  color: #f5576c;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .north_4067 {
    padding: var(--space-md);
  }
  
  .container_81e2 {
    padding: var(--space-md);
  }
  
  .shade-dirty-25cd {
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }
}

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

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

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

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

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

.shade-dirty-25cd {
  margin-top: var(--space-lg);
  text-align: center;
}

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

.tooltip_bronze_7261,
.icon_6c0d,
.mask_b87c,
.selected_d6a1 {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
}

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

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

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

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

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

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

.filter-1f03 h4 {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

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

.module_stone_0811 .complex_ce18 {
  background: #e8f5e9;
  color: var(--color-success);
}

.glass_bf5f .complex_ce18 {
  background: #fff3e0;
  color: var(--color-warning);
}

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

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

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

.badge-4c06 {
  margin: var(--space-xxl) 0;
}

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

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

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

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

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

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

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

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

.accent-inner-c4ab {
  margin-top: var(--space-xxl);
}

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

.solid-54f5 {
  text-align: center;
}

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

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

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

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

.shade-paper-62ad p {
  margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.cool-607f {
  color: var(--color-text-light);
}

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

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

.item-basic-0b7d {
  font-weight: 600;
  color: var(--color-text);
}

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

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

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

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

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

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

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

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

.preview-middle-edb5 {
  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;
}

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

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

.list-lower-2bd8 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.container_iron_9a14 {
  text-align: right;
}

.container_iron_9a14 .item-down-1324 {
  color: #ffa000;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.carousel-liquid-1a02 {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.first-58b6 {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.background-e63d[aria-expanded="true"] .first-58b6 {
  transform: rotate(180deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.message-d7e1,
.notice_pressed_d4d3 {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.message-d7e1 h4,
.notice_pressed_d4d3 h4 {
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
}

.message-d7e1 ul,
.notice_pressed_d4d3 ul {
  list-style: none;
  padding: 0;
}

.message-d7e1 li,
.notice_pressed_d4d3 li {
  padding: var(--space-sm) 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

.paragraph-8fd8 {
  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);
}

.accordion_glass_2f7e {
  font-style: italic;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hard-14fb {
  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) */
.menu-fast-4884 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

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

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

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

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

.cold-7500 a:hover {
  color: white;
}

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

.east-139d 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);
}

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

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

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

.summary_2362 a:hover {
  color: white;
}

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

@media (max-width: 768px) {
  .hard-14fb,
  .menu-fast-4884 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

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

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

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

.clean_665e .wrapper-lower-d5f0 {
  color: #4caf50;
  font-size: 0.875rem;
}

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

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

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

.modal_f2c2 a:hover {
  color: white;
}

.surface-new-bee9 {
  list-style: none;
  padding: 0;
}

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

.surface-new-bee9 a {
  color: #b0b0b0;
  text-decoration: none;
}

.surface-new-bee9 a:hover {
  color: white;
}

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

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

.sidebar-015f a {
  color: #4caf50;
  text-decoration: none;
}

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

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

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

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

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

.dropdown-274d:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .list_13c0 {
    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;
  }
  
  .sort_19eb {
    font-size: 2rem;
  }
  
  .content_b010 {
    font-size: 1.75rem;
  }
  
  /* Ensure all grids are single column */
  .west_864e,
  .border-b219 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 14px;
    --space-xl: 2rem;
    --space-xxl: 2.5rem;
  }
  
  .surface_aead,
  .stone_55c0,
  .cold-3e27,
  .current-8706,
  .advanced_59fb,
  .block-left-77e0,
  .warm-5376,
  .hard-14fb,
  .menu-fast-4884 {
    grid-template-columns: 1fr;
  }
  
  .background_116e {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile-specific adjustments */
  .list_orange_b901 {
    padding: var(--space-lg) 0;
  }
  
  .plasma-c85c li a {
    font-size: 0.875rem;
    padding: var(--space-xs);
  }
  
  .plasma-c85c li a:before {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  /* Improve mobile readability */
  p, li {
    font-size: 0.9375rem;
  }
  
  /* Better touch targets */
  .gallery_912b {
    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;
  }
  
  .background_116e {
    grid-template-columns: 1fr;
  }
  
  .alert-bottom-725e,
  .summary_black_3e7c,
  .plasma_ead4 {
    flex-direction: column;
    width: 100%;
  }
  
  .shade_cool_47b7,
  .fluid-f9bb,
  .alert-bottom-725e .gallery_912b,
  .summary_black_3e7c .gallery_912b {
    width: 100%;
  }
  
  /* Smaller font sizes for very small screens */
  .sort_19eb {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .content_b010 {
    font-size: 1.375rem;
  }
  
  .modal-static-99e9 {
    font-size: 2rem;
  }
  
  /* Reduce padding on small screens */
  .menu_pro_6f9d,
  .icon_brown_8c92,
  .north_ccac,
  .advanced-1576,
  .list_b8a5 {
    padding: var(--space-md);
  }
  
  /* Improve code readability on mobile */
  code,
  .wrapper-36ef {
    font-size: 0.625rem;
    word-break: break-all;
  }
  
  /* Better meta display */
  .warm_0834 {
    gap: var(--space-xs);
  }
  
  .detail_3f69 {
    font-size: 0.75rem;
  }
  
  /* Optimize score circles */
  .easy_8b8f {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }
  
  .copper_3292 {
    width: 150px;
    height: 150px;
  }
  
  .image-pressed-3579 {
    font-size: 3rem;
  }
}

/* ============================================
   25. PRINT STYLES
   ============================================ */
@media print {
  .message_b526,
  .shade_4ed3,
  .alert-bottom-725e,
  .hover-f386,
  .link-1170,
  .dim-287c,
  .accent_motion_3266 {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .list_orange_b901 {
    page-break-inside: avoid;
  }
}

/* css-noise: ca55 */
.promo-block-h6 {
  padding: 0.2rem;
  font-size: 10px;
  line-height: 1.2;
}
