/* CSS Variables for easy theming */
:root {
  --color-primary: #3b82f6;
  --color-primary-dark: #2563eb;
  --color-accent: #6366f1;
  --color-accent-light: #8b5cf6;
  --color-success: #10b981;
  --color-warning: #f59e0b;
}

.glowing-dot {
  width: 10px;
  height: 10px;
  background-color: #ffcc00;
  border-radius: 50%;
  position: absolute;
  animation: glow 1.5s infinite alternate;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px #ffcc00;
  }
  100% {
    box-shadow: 0 0 20px #ffcc00;
  }
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-slow {
  animation: pulse-slow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Accessibility: Respect reduced motion without breaking core visuals */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
  }
}
