body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    /* Dark background for the entire page */
    color: #e0e0e0;
    /* Light text color for contrast */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-section {
    text-align: center;
    background-color: #1e1e1e;
    /* Dark background for the game section */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    /* Subtle shadow for better visibility */
}

.game--title {
    font-size: 4rem;
    color: #00ff00;
    /* Bright green for the title */
    margin-bottom: 20px;
}

.game--container {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 5px;
    margin: 0 auto;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #2e2e2e;
    /* Darker background for cells */
    border: 2px solid #00ff00;
    /* Green border */
    color: #00ff00;
    /* Green text color */
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.cell:hover {
    background-color: #3a3a3a;
    /* Slightly lighter dark background on hover */
    border-color: #00cc00;
    /* Lighter green border on hover */
    color: #00cc00;
    /* Lighter green text on hover */
}

.game--status {
    font-size: 2rem;
    color: #00ff00;
    /* Green text for status */
    margin: 20px 0;
}

.game--restart {
    background-color: #00ff00;
    /* Bright green background */
    border: none;
    color: #121212;
    /* Dark text color */
    font-size: 1.5rem;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.game--restart:hover {
    background-color: #00cc00;
    /* Darker green background on hover */
    color: #fff;
    /* White text color on hover */
}