/* /css/arcade.css */

.arcade-card {
    max-width: 500px;
    text-align: center;
}

#arcadeMachineImage {
    width: 200px;
    height: auto;
    margin: 2rem auto;
    filter: drop-shadow(0 0 15px rgba(52, 211, 153, 0.7));
    transition: transform 0.2s ease-out;
}

#arcadeMachineImage:active {
    transform: scale(0.95);
}

.token-spent-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fbbf24; /* amber-400 */
    padding: 1rem 2rem;
    background-color: rgba(0,0,0,0.7);
    border-radius: 10px;
    animation: fadeOutZoom 1.5s ease-out forwards;
    z-index: 1000;
    display: flex;
    align-items: center;
}

@keyframes fadeOutZoom {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}