
.dealer-area,
.player-area {
    margin-bottom: 30px;
    text-align: center;
}

.dealer-area h2,
.player-area h2 {
    margin-bottom: 15px;
    padding-top: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid #fff;
}

/* Cards */
.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.card {
    box-sizing: content-box;
    width: 10vw;
}

/* Message */
.message {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    border: 3px solid #ffcc00;
}

.message h3 {
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Action Buttons */
.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin: 10px;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cards {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .actions {
        flex-direction: column;
        align-items: center;
    }

    .btn,
    a {
        width: 100%;
        max-width: 200px;
        text-align: center;
        margin-bottom: 10px;
    }
}