.sekuya-regular {
    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}


.game {
    max-width: 1000px;
    margin: 0 auto;

}

body {
    background: radial-gradient(circle, #0b6623 40%, #063d1a 100%);
    font-family: 'Trebuchet MS', sans-serif;
}

#players {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-family: Arial, sans-serif;
}

.game-body {
    display: flex;
    justify-content: center;

    
    align-items: center;
    margin-top: 30px;

}

#dealer-area,
#player-area {
    width: 35%;
}

.btn {
    width: 180px;
    height: 60px;
    font-size: 1.9em;

}


.game-options {
    display: flex;
    /* grid-template-columns: ;
    grid-template-rows: 5% 5% 5%; */
    width: 30%;

    flex-direction: column;

    align-items: center;

    margin-top: 0px;
    font-family: Arial, sans-serif;

    gap: 5px;
}

#dealer-area>div,
#player-area>div {
    border: 2px solid #333;
    border-radius: 10px;
    padding: 10px;
    width: 230px;
    text-align: center;
    background-color: #0b6623;
    /* dark green table look */
    color: rgb(0, 0, 0);
    font-size: larger;
}



#title {
    text-align: center;
    font-size: 30px;
    margin-top: 6%;
    margin-bottom: 4%;

    font-family: "Sekuya", system-ui;
    font-weight: 400;
    font-style: normal;
}

.hand {
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    min-height: 70px;
    margin-bottom: 10px;
    margin-top:10px;

}

.card {
    width: 70px;
    height: 95px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    border: 1px solid #ccc;

    opacity: 0;
    animation: deal 0.4s forwards;

    transition: transform 0.4s;
    transform-style: preserve-3d;
}

@keyframes deal {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hidden-card {
    background: repeating-linear-gradient(
        45deg,
        #1a1a1a,
        #1a1a1a 10px,
        #333 10px,
        #333 20px
    );
    border: 1px solid #000;
    color: transparent;
    
}

@keyframes deal {
    to {
        opacity: 1;
        transform: translateY(0);
        
    }
}


.points {
    margin-top: 5px;
    font-size: 1em;
}

.active {
    border: 3px solid yellow;
}

#status {

    padding: 10px;
    border-radius: 8px;

    font-size: 30px;
    width: fit-content;
    margin: 20px auto;
}

button {
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}


button:disabled,
input:disabled {
    background-color: #888;
    cursor: not-allowed;
    opacity: 0.6;
}
.side {
    width: 300px;
    display: flex;
    justify-content: center;
}

.center {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}