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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.stars::before {
    top: 20%;
    left: 30%;
    box-shadow: 
        100px 200px white,
        300px 100px white,
        500px 300px white,
        700px 150px white,
        200px 400px white,
        600px 250px white,
        800px 400px white,
        150px 150px white,
        450px 450px white,
        250px 250px white;
}

.stars::after {
    top: 40%;
    left: 50%;
    animation-delay: 1.5s;
    box-shadow: 
        200px 100px white,
        400px 300px white,
        600px 200px white,
        100px 300px white,
        350px 150px white,
        550px 350px white,
        750px 250px white,
        850px 100px white,
        950px 300px white,
        50px 450px white;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.cosmic-glow {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5),
                 0 0 20px rgba(255, 215, 0, 0.3),
                 0 0 30px rgba(255, 215, 0, 0.2);
}

.shimmer {
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 100% 0; }
}

.cosmic-card {
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

select option {
    background-color: #1a0b2e;
    color: white;
}

@media (max-width: 640px) {
    .stars::before,
    .stars::after {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: rgba(26, 11, 46, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ffd700, #ff6b9d);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ffb347, #c44569);
}