html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    background: black;
}

#space-container {
    position: absolute;
    width: 5000px;
    height: 3000px;
    background-size: cover;
    cursor: grab;
}

body.dragging {
    cursor: grabbing;
}

.zodiaco {
    position: absolute;
    color: white;
    font-size: 24px;
    font-family: sans-serif;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
}

.zodiaco:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.cosmic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1500px;
    height: 1500px;
    margin-left: -700px;
    margin-top: -700px;
    background: radial-gradient(circle, rgba(255,240,200,0.6), rgba(255,200,100,0.2), transparent 80%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(65px);
    pointer-events: none;
    animation: cosmicPulse 6s infinite ease-in-out;
}

@keyframes cosmicPulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.stars-background {
    position: absolute;
    width: 5000px;
    height: 3000px;
    z-index: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    border-radius: 50%;
    background: white !important;
    opacity: 0.8;
    animation: starPulse 2s infinite ease-in-out;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5);
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom left, white, transparent);
    opacity: 0;
    transform: rotate(-45deg);
    animation: shoot 1.2s ease-out forwards;
    pointer-events: none;
}

@keyframes shoot {
    0% {
        height: 0;
        opacity: 0;
        transform: translate(0, 0) rotate(-45deg);
    }
    10% {
        height: 30px;
        opacity: 1;
    }
    50% {
        height: 100px;
        opacity: 1;
        transform: translate(-200px, 200px) rotate(-45deg);
    }
    90% {
        height: 30px;
        opacity: 0.7;
    }
    100% {
        height: 0;
        opacity: 0;
        transform: translate(-300px, 300px) rotate(-45deg);
    }
}