@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Background overlay */
.bg-black/50 {
  background-color: rgba(0, 0, 0, 0.7);
}
/* Enhanced contrast colors */
.text-white, .text-indigo-200, .text-indigo-300 {
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  color: #f8fafc !important;
}
.bg-white\\/10 {
  background-color: rgba(15,23,42,0.8) !important;
  border: 1px solid rgba(99, 102, 241, 0.3) !important;
}
.border-indigo-400\\/20 {
  border-color: rgba(129, 140, 248, 0.3);
}
.text-indigo-300 {
  color: #a5b4fc !important;
}
/* Shooting star animation */
.shooting-star {
    position: fixed;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.8);
    z-index: -1;
    animation: shooting 2s linear;
}
@keyframes shooting {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: translateX(300px) translateY(300px);
        opacity: 0;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}