body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h3 {
    margin: 5px 0;
}

#result {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: gold;
}

.grid {
    display: grid;
    grid-template-columns: repeat(7, 60px);
    grid-template-rows: repeat(6, 60px);
    gap: 5px;
    background-color: #004080;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

.grid div {
    width: 60px;
    height: 60px;
    background-color: #1e1e1e;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-one {
    background-color: crimson;
    border: 3px solid darkred;
}

.player-two {
    background-color: royalblue;
    border: 3px solid navy;
}

.taken {
    cursor: default;
}

.grid div:not(.taken) {
    cursor: pointer;
}

#scoreboard {
    display: flex;
    justify-content: space-between;
    width: 140px;
    margin-bottom: 10px;
    font-size: 14px;
}

#reset-button {
    margin-top: 15px;
    padding: 5px 10px;
    font-size: 14px;
    background: #444;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#reset-button:hover {
    background: #666;
}