@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

body {
    font-family: 'Press Start 2P', cursive;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    background-color: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.game-state {
    display: none;
}

h1, h2, h3 {
    margin: 0;
    color: magenta;
    margin-bottom: 10px;
}

input, button {
    font-family: 'Press Start 2P', cursive;
}

button {
    background-color: #0000ff;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    transition: background-color 0.2s;
}

button:hover {
    background-color: #23cc39;
}

input {
    display: block;
    margin: 10px auto;
    width: 100%;
    max-width: 300px;
}

.players {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.player-box {
    background-color: #222;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    width: 150px;
}

.current-player {
    background-color: limegreen;
}

.player-chips {
    color: #FFFF00;
  }


.dice-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dice-box {
    width: 25px;
    height: 25px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.dice {
    font-size: 1rem;
    color: black;
}

.rules {
    margin-top: 20px;
    padding: 10px;
    background-color: #222;
    border-radius: 5px;
    text-align: left;
    font-size: 0.8rem;
}

.active {
    border: 3px solid #32CD32;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

