body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items:center;
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #ff9a9e,#fad0c4);
}

.container {
    text-align: center;
}

.title {
    font-size:2em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3,100px);
    grid-gap: 10px;
    margin: 0 auto;
}

.cell {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    color: #444;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    user-select: none;
}

.cell.winner {
    background: #ff9a9e;
    color: #fff;
}

.cell.disabled {
    pointer-events: none;
}

.reset {
    margin-top: 20px;
    padding: 10px 20px ;
    font-size: 1em;
    color: #fff;
    background: #444;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reset:hover {
    background: #333;
}