/* Main styling */
body {
    margin: 0;
    background: #0a0a0a url('assets/textures/casino-bg.jpg');
    font-family: 'Luckiest Guy', cursive;
    color: white;
    overflow: hidden;
}

#game-ui {
    display: grid;
    grid-template-areas:
        "player-info leaderboard"
        "slot-machine slot-machine"
        "controls controls";
    height: 100vh;
}

#player-info {
    grid-area: player-info;
    padding: 20px;
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
}

#slot-machine {
    grid-area: slot-machine;
    width: 100%;
    height: 60vh;
}

#controls {
    grid-area: controls;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

button {
    background: linear-gradient(45deg, #ff0000, #ff6b00);
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

button:hover {
    transform: scale(1.1);
}

#leaderboard {
    grid-area: leaderboard;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    border-radius: 10px;
    margin: 20px;
}

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

.pulse {
    animation: pulse 1.5s infinite;
}