/* ===== BACCARAT ANIMATIONS ===== */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes squeeze {
    0% {
        transform: rotateY(180deg) scale(1);
    }
    25% {
        transform: rotateY(180deg) scaleY(0.9) scaleX(1.1);
    }
    50% {
        transform: rotateY(180deg) scaleY(0.85) scaleX(1.15) translateY(-5px);
    }
    75% {
        transform: rotateY(180deg) scaleY(0.9) scaleX(1.1);
    }
    100% {
        transform: rotateY(180deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes chipFall {
    from {
        transform: translateY(-50px) rotate(0deg);
        opacity: 0;
    }
    to {
        transform: translateY(0) rotate(360deg);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }
}

.chip-visual {
    animation: chipFall 0.4s ease-out;
}

.bet-spot:active {
    animation: pulse 0.2s;
}

.game-message.result-message.player {
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.game-message.result-message.banker {
    color: #2196F3;
    text-shadow: 0 0 10px rgba(33, 150, 243, 0.5);
}

.game-message.result-message.tie {
    color: #FFC107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}
