body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: #f0f0f0;
}

.container, .game-board {
    text-align: center;
}

.start-btn, .roll-btn {
    padding: 15px 30px;
    background: #ff5733;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

.board {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1;
    background: url('assets/board.png') no-repeat center/contain;
    position: relative;
    margin: 20px auto;
}

.token {
    width: 25px;
    height: 25px;
    position: absolute;
    border-radius: 50%;
    background-size: cover;
}

@media(max-width: 768px){
    .start-btn, .roll-btn {
        width: 80%;
        font-size: 16px;
    }
    .token {
        width: 18px;
        height: 18px;
    }
}
