.bet-amount {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.blackjack-container {
    margin-top: 20px;
    padding: 15px;
    background: #0b1e33;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: #fff;
}

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

.card {
    width: 60px;
    height: 90px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.score {
    font-size: 18px;
    margin-top: 5px;
}
