/* Game Container Styles */
.game-container {
    background-color: var(--color-navy-light);
    border: 2px solid var(--color-gold);
    border-radius: 16px;
    padding: 32px;
    margin: 0 auto;
}

.game-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background-color: var(--color-slate);
    border-radius: 12px;
    margin-bottom: 32px;
}

.credits-display, .bet-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.credits-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
}

/* Slots Styles */
.slots-machine {
    background: linear-gradient(135deg, var(--color-slate), var(--color-navy));
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
}

.slots-reels {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.slot-reel {
    width: 120px;
    height: 140px;
    background-color: var(--color-ivory);
    color: var(--color-navy);
    border-radius: 12px;
    border: 3px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Roulette Styles */
.roulette-wheel {
    width: 300px;
    height: 300px;
    margin: 0 auto 32px;
    border-radius: 50%;
    background: conic-gradient(
        #EF4444 0deg 30deg,
        #1E293B 30deg 60deg,
        #EF4444 60deg 90deg,
        #1E293B 90deg 120deg,
        #EF4444 120deg 150deg,
        #1E293B 150deg 180deg,
        #EF4444 180deg 210deg,
        #1E293B 210deg 240deg,
        #EF4444 240deg 270deg,
        #1E293B 270deg 300deg,
        #EF4444 300deg 330deg,
        #1E293B 330deg 360deg
    );
    border: 8px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(252, 211, 77, 0.3);
}

.roulette-ball {
    width: 100px;
    height: 100px;
    background-color: var(--color-ivory);
    border-radius: 50%;
    border: 4px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-navy);
}

.betting-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.bet-button {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid var(--color-gold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-button.red {
    background-color: #EF4444;
    color: white;
}

.bet-button.black {
    background-color: #1E293B;
    color: white;
}

.bet-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 211, 77, 0.3);
}

/* Blackjack Styles */
.blackjack-table {
    background: linear-gradient(135deg, #059669, #047857);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.dealer-area, .player-area {
    margin-bottom: 24px;
}

.dealer-area h3, .player-area h3 {
    color: var(--color-ivory);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cards-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    min-height: 100px;
}

.playing-card {
    width: 70px;
    height: 100px;
    background-color: white;
    border: 2px solid var(--color-navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Game Controls */
.game-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.game-message {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 16px;
    background-color: rgba(252, 211, 77, 0.1);
    border-radius: 8px;
    margin-bottom: 32px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-rules {
    background-color: var(--color-slate);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--color-gold);
}

.game-rules h3 {
    color: var(--color-gold);
    margin-bottom: 16px;
}

.game-rules ul {
    list-style: none;
    padding: 0;
}

.game-rules li {
    color: var(--color-slate-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.game-rules li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .game-container {
        padding: 16px;
    }

    .slots-reels {
        gap: 8px;
    }

    .slot-reel {
        width: 80px;
        height: 100px;
        font-size: 2.5rem;
    }

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

    .roulette-ball {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }

    .betting-options {
        grid-template-columns: 1fr;
    }

    .playing-card {
        width: 50px;
        height: 75px;
        font-size: 1.1rem;
    }
}
