.mod-blackjack-game {
    font-family: Arial, sans-serif;
    background: #0b6b3a;
    color: white;
    margin: 0;
    padding: 15px;
    text-align: center;
}

.mod-blackjack-game .container {
    max-width: 1100px;
    margin: auto;
}


.mod-blackjack-game .version {
    font-size: 13px;
    opacity: 0.85;
    margin-top: -8px;
    margin-bottom: 10px;
}

.mod-blackjack-game .info,
.mod-blackjack-game .controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 12px 0;
}

.mod-blackjack-game .info {
    font-size: 18px;
    font-weight: bold;
}

.mod-blackjack-game button {
    border: none;
    border-radius: 6px;
    background: #2d7df0;
    color: white;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.mod-blackjack-game button:hover {
    background: #1b5fc0;
}

.mod-blackjack-game button:disabled {
    background: #888;
    cursor: not-allowed;
}

.mod-blackjack-game .hand-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 25px;
}

.mod-blackjack-game .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    min-height: 185px;
    margin: 18px auto;
}

.mod-blackjack-game .card {
    width: 120px;
    height: 170px;
    background: white;
    color: #111;
    border-radius: 12px;
    border: 3px solid #222;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.45);
    user-select: none;
}

.mod-blackjack-game .card-back {
    background: linear-gradient(135deg, #1d4ed8, #102a75);
    color: white;
}

.mod-blackjack-game .card-back::after {
    content: "★";
    font-size: 54px;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mod-blackjack-game .rank {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 26px;
    font-weight: bold;
}

.mod-blackjack-game .suit {
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 34px;
}

.mod-blackjack-game .center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.mod-blackjack-game .red {
    color: #d63031;
}

.mod-blackjack-game .black {
    color: #111;
}

.mod-blackjack-game #bjg-message {
    min-height: 36px;
    font-size: 22px;
    font-weight: bold;
    margin-top: 14px;
}

.mod-blackjack-game .rules {
    max-width: 700px;
    margin: 20px auto;
    background: rgba(255,255,255,0.12);
    padding: 12px;
    border-radius: 10px;
    line-height: 1.5;
}

@media(max-width:700px) {
    .mod-blackjack-game .card {
        width: 82px;
        height: 116px;
    }

    .mod-blackjack-game .rank {
        font-size: 18px;
    }

    .mod-blackjack-game .suit {
        font-size: 23px;
    }

    .mod-blackjack-game .center {
        font-size: 36px;
    }

    .mod-blackjack-game .cards {
        min-height: 130px;
    }
}