/* tictactoe.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #FF7F50, #FF6347);
    color: #fff;
    text-align: center;
}

.game-container {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 400px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin: 20px 0;
}

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    background-color: #e7e7e7;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.cell:hover {
    background-color: #ddd;
}

button {
    background-color: #FF6347;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #FF4500;
}

#status {
    font-size: 1.5rem;
    margin-top: 20px;
}
