*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,Helvetica,sans-serif;
}

body{
    background:#1f232a;
    color:#fff;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.game{
    width:950px;
}

.gameTitle{
    text-align:center;
    font-size:56px;
    font-weight:900;
    letter-spacing:4px;
    color:#fff;
    margin-bottom:35px;
    text-transform:uppercase;
}

.board{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:60px;
    margin-bottom:40px;
}

.column{
    display:flex;
    flex-direction:column;
    align-items:center;
}

h2{
    margin-bottom:20px;
    letter-spacing:2px;
}

.cardColumn{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.card,
.slot{
    width:120px;
    height:70px;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    font-weight:bold;
}

.card{
    border:3px solid #fff;
    cursor:pointer;
    user-select:none;
    transition:.2s;
}

.player{
    background:#3b82f6;
}

.computer{
    background:#e74c3c;
}

.card:hover{
    transform:scale(1.05);
}

.card.selected{
    border-color:#2ecc71;
    box-shadow:0 0 15px #2ecc71;
}

.slot{
    border:3px dashed #666;
    background:#2d323b;
}

.bottomBar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
}

.dice{
    width:90px;
    height:90px;
    border-radius:15px;
    background:#fff;
    color:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:48px;
    font-weight:bold;
}

#rollButton{
    padding:14px 34px;
    font-size:20px;
    border:none;
    border-radius:10px;
    background:#2ecc71;
    color:#fff;
    cursor:pointer;
}

#rollButton:hover{
    background:#27b463;
}

.cardSlot{
    width:120px;
    height:70px;
}

.dice{
    cursor:pointer;
    transition:transform .15s;
}

.dice:hover{
    transform:scale(1.08);
}

.diceArea{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.turnText{
    font-size:24px;
    font-weight:bold;
    letter-spacing:1px;
    min-height:30px;
}