body {
    font-family: "Arial", sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

section {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cell {
    font-family: "Permanent Marker", cursive;
    width: 100px;
    height: 100px;
    border: 2px solid #ecd7ba;
    cursor: pointer;
    line-height: 100px;
    font-size: 60px;
    transition: background-color 0.3s ease;
    color: #04c0b2;
}

.cell:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.cell:active {
    transform: scale(0.95);
}

.game--title {
    font-size: 100px;
    color: #d7a62f;
    margin: 10px auto;
    animation: titleAnimation 1s ease-out;
}

@keyframes titleAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.game--container {
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 306px;
    margin: 10px auto;
    background-color: #11213a;
    color: #04c0b2;
}

.game--status {
    font-size: 50px;
    color: #d7a62f;
    margin: 20px auto;
    transition: color 0.3s ease;
}

.game--restart {
    background-color: #f7e4ac;
    width: 200px;
    height: 50px;
    font-size: 25px;
    color: #5586e2;
    box-shadow: 2px 2px 2px 2px #d86c23;
    border: 2px solid #d86c23;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.game--restart:hover {
    background-color: #d7a62f;
}

.game--restart:active {
    transform: scale(0.95);
}
