/* MODAL DE TURNO */
.turn-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid #00ffe1;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 225, 0.6);
    animation: turnPulse 0.5s ease;
    min-width: 400px;
}

.turn-modal.hidden {
    display: none;
}

.turn-modal-content h2 {
    font-size: 32px;
    color: #00ffe1;
    letter-spacing: 4px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.turn-modal-content p {
    font-size: 18px;
    color: #d8b4fe;
    letter-spacing: 2px;
    margin: 0;
}

@keyframes turnPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}
