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

body {
    font-family: 'Space Grotesk', sans-serif;
    transition: background-color 0.3s ease;
}

#starMapContainer {
    transition: all 0.5s ease;
}
.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
}

#starMapContainer {
    position: relative;
    background: radial-gradient(ellipse at center, #1a202c 0%, #000000 100%);
    overflow: hidden;
}
.constellation-star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite alternate;
    z-index: 3;
}
@keyframes twinkle {
    0% { transform: scale(0.8); opacity: 0.7; }
    50% { transform: scale(1); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.7; }
}

.constellation-line {
    position: absolute;
    transform-origin: left center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    height: 1px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}
.constellation-star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: pulse 2s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes pulse {
    0% { opacity: 0.8; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}
.constellation-line {
    position: absolute;
    transform-origin: left center;
    z-index: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.constellation-label {
    position: absolute;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(0,0,0,0.8);
    opacity: 0.9;
    pointer-events: none;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 4;
}
input, select {
    transition: all 0.3s ease;
}

input:focus, select:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
