/* Centered Title Styling */
.game-title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Button and Game Area Centering */
.game-selection,
.deal-button-container,
.action-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

/* Card Display Styling */
.card-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

/* Center the score directly under each card container */
#player-score, #dealer-score {
    text-align: center;
    font-weight: bold;
    margin-top: 10px; /* Adds some space between the cards and score */
}

/* Individual Card Styling */
.card {
    width: 60px;
    height: 90px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Card Face Design */
.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid #000;
    border-radius: 8px;
    background-color: white;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
}

.card-number {
    font-size: 12px;
}

.top-left {
    align-self: flex-start;
}

.bottom-right {
    align-self: flex-end;
    transform: rotate(180deg);
}

.card-suit {
    font-size: 24px;
    text-align: center;
}

/* Game Result Styling */
.game-result, .game-info {
    text-align: center;
    font-weight: bold;
    color: #1E1919;
    margin-top: 10px;
}
