body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    color: white;
    margin: 0;
    padding: 20px;
}

header {
    font-size: 24px;
    font-weight: bold;
}

.game-info img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin: 20px 0;
}

.game-container {
    margin-top: 20px;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    justify-content: center;
    margin: 20px auto;
}

.cell {
    width: 100px;
    height: 100px;
    background: white;
    color: black;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}

button {
    background: #fff;
    color: #ff5e62;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

button:hover {
    background: #ff9966;
    color: white;
}
