body {
    text-align: center;
    font-family: Arial, sans-serif;
    background: linear-gradient(120deg, #74ebd5, #acb6e5);
    color: #333;
}

h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    grid-template-rows: repeat(3, 120px);
    gap: 10px;
    justify-content: center;
    margin: 20px auto;
}

.cell {
    width: 120px;
    height: 120px;
    background-color: white;
    font-size: 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
}

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

.status {
    font-size: 24px;
    margin: 15px;
    font-weight: bold;
}

.reset {
    font-size: 18px;
    padding: 12px 20px;
    cursor: pointer;
    background-color: #ff4757;
    color: white;
    border: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.reset:hover {
    background-color: #ff6b81;
}
