/* Estilos para estrellas interactivas del hero section */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.star::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.star.glow::before {
    opacity: 1;
}

.star.large {
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
}

.star.twinkle {
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float-star {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.star.floating {
    animation: float-star 4s ease-in-out infinite;
}

/* Estilos para título en móviles */
@media (max-width: 640px) {
    h1.neon-text {
        font-size: 1.75rem !important;
        letter-spacing: -0.05em !important;
    }
    
    .floating-letters {
        display: inline-block;
        letter-spacing: inherit;
    }
    
    /* Alineación horizontal para poster y disponibilidad en móviles */
    .grid.items-center > div:last-child {
        margin-top: 0;
        align-self: center;
    }
}
