:root {
  color-scheme: dark;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse at top, rgba(88, 28, 135, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(15, 118, 110, 0.12), transparent 50%),
    #09090b;
}

.glass-card {
  background: rgba(24, 24, 27, 0.72);
  border: 1px solid rgba(161, 161, 170, 0.12);
  backdrop-filter: blur(12px);
}

.mystic-glow {
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
}

#ai-prompt-zone:not(:empty) {
  border-left: 3px solid rgba(167, 139, 250, 0.7);
  background: rgba(76, 29, 149, 0.12);
}

.hint-carousel {
  animation: fadeSlide 0.6s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.matrix-spinner {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(52, 211, 153, 0.15);
  border-top-color: rgba(52, 211, 153, 0.85);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#report-container {
  line-height: 1.75;
}

#report-container h1,
#report-container h2,
#report-container h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
}

#report-container p {
  margin-bottom: 0.75rem;
}
