body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.game-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
}

.game-info {
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#player-turn {
    font-size: 18px;
    font-weight: bold;
}

#restart-btn {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#restart-btn:hover {
    background-color: #45a049;
}

#board {
    background-color: #dcb35c;
    border: 1px solid #333;
    cursor: pointer;
}
