.game-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    background: var(--card);
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color, #2d3748);
}

.game-container h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 32px;
}

.credits-display {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text);
}

.credits {
    color: #ffd23f;
    font-weight: 800;
}

/* SLOT MACHINE */
.slot-reels {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.reel {
    width: 100px;
    height: 100px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 3px solid var(--primary);
}

/* ROULETTE */
.roulette-wheel {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(red 0deg 180deg, black 180deg 360deg);
    margin: 30px auto;
    border: 5px solid #ffd23f;
    transition: transform 0.05s linear;
    position: relative;
}

.roulette-wheel::after {
    content: '◀';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ffd23f;
}

.color-bets {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.color-bet {
    padding: 15px 30px;
    border: 3px solid transparent;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.color-bet.red {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.color-bet.black {
    background: linear-gradient(135deg, #2d3436, #000000);
}

.color-bet.selected {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary);
    transform: scale(1.05);
}

.bet-input {
    padding: 12px 20px;
    background: var(--dark);
    border: 2px solid var(--border-color, #2d3748);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    width: 150px;
    margin: 20px 0;
    text-align: center;
}

/* POKER */
.poker-table {
    margin: 30px 0;
}

.poker-section {
    margin: 30px 0;
}

.poker-section h3 {
    margin-bottom: 15px;
    color: var(--text-dim);
    font-size: 18px;
}

.poker-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.card {
    width: 80px;
    height: 120px;
    background: white;
    color: black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* GAME BUTTONS */
.game-btn {
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.game-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 142, 160, 0.4);
    background: var(--primary-dark, #076b7a);
}

.game-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.message {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    min-height: 30px;
    color: var(--text);
}

@media (max-width: 768px) {
    .game-container {
        padding: 20px;
        margin: 20px 10px;
    }

    .game-container h2 {
        font-size: 24px;
    }

    .slot-reels {
        gap: 10px;
    }

    .reel {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .roulette-wheel {
        width: 150px;
        height: 150px;
    }

    .color-bets {
        flex-direction: column;
    }

    .poker-cards {
        gap: 10px;
    }

    .card {
        width: 60px;
        height: 90px;
        font-size: 24px;
    }
}