body {
    font-family: "Arial", sans-serif;
    background-color: #2c3e50; /* Dark background */
    color: #ecf0f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game--container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.game--title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.game--status {
    font-size: 1.5rem;
    color: #f1c40f; /* Yellow text for status */
    margin-bottom: 20px;
    height: 30px; /* Prevent jumping */
}

.game--container--grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 10px;
    margin: 0 auto;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #34495e;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    font-weight: bold;
}

.cell:hover {
    background-color: #46607d; /* Slight highlight on hover */
}

/* Specific colors for X and O */
.cell[style*="color: #e74c3c"] { color: #e74c3c; } /* Red for X */
.cell[style*="color: #3498db"] { color: #3498db; } /* Blue for O */

.game--restart {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.game--restart:hover {
    background-color: #c0392b;
}