/* ─── Space Invaders Easter Egg modal ─────────────────────────────────────── */

#faq-invaders-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

#faq-invaders-modal {
  background: #0a0a0a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
}

#faq-invaders-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #1e1e1e;
}

#faq-invaders-title {
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #EF5A33;
  flex: 1;
}

#faq-invaders-hud {
  font-family: 'Cabin', sans-serif;
  font-size: 13px;
  color: #cccccc;
}

#faq-invaders-hud b {
  color: #ffffff;
}

#faq-invaders-close {
  background: none;
  border: none;
  color: #555;
  font-size: 22px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color 0.15s ease;
  font-family: inherit;
}

#faq-invaders-close:hover {
  color: #ffffff;
}

#faq-invaders-canvas {
  display: block;
  width: 100%;
  image-rendering: pixelated;
  background: #000000;
}

#faq-invaders-footer {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 8px 16px;
  border-top: 1px solid #1e1e1e;
  font-family: 'Cabin', sans-serif;
  font-size: 11px;
  color: #444;
  letter-spacing: 0.04em;
}
