/* Importación de fuentes de Google */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Press+Start+2P&display=swap');

/* Animación de brillo para el cometa y títulos */
.comet-glow {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { text-shadow: 0 0 5px #00f7ff, 0 0 10px #00f7ff; }
    100% { text-shadow: 0 0 20px #00f7ff, 0 0 30px #00f7ff, 0 0 40px #00f7ff; }
}

/* Estilo de fuente retro/alienígena */
.alien-text {
    font-family: 'Press Start 2P', cursive;
}

/* Estilos para la cuenta regresiva */
.countdown-digit {
    transition: all 0.3s ease;
}

.countdown-digit:hover {
    transform: scale(1.2);
    color: #ff00aa !important;
}

/* Estilos para la animación de revelación */
.reveal-box {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 1s ease-out;
}

.reveal-box.visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}