body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f6cacf;
    margin: 0;
    padding: 0;
}

#game {
    margin: 20px auto;
    max-width: 300px;
}

h1 {
    color: #333;
}

#board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 20px auto;
    width: 300px;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cell:hover {
    background-color: #f3aeae;
}

#result {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #e58181;
}

#reset {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #e15d5d;
    color: #0a0808;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#reset:hover {
    background-color: #555;
}
#design-container {
    margin-top: 20px;
    height: 150px;
    position: relative;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

#design-container::before,
#design-container::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

#design-container::before {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.4);
    top: 20px;
    left: 30px;
    animation: moveAround 6s infinite alternate;
}

#design-container::after {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    bottom: 10px;
    right: 40px;
    animation: moveAround 8s infinite alternate-reverse;
}

@keyframes moveAround {
    0% {
        transform: translateX(0px) translateY(0px);
    }

    100% {
        transform: translateX(20px) translateY(-20px);
    }
}
/* Game Container */
#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

/* Left and Right Decorations */
#left-decor,
#right-decor {
    width: 80px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: relative;
}

/* Shared styles for decorations */
#left-decor::before,
#left-decor::after,
#right-decor::before,
#right-decor::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6dd5ed, #2193b0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: bounce 3s infinite alternate;
}

#left-decor::before {
    top: 10px;
    left: 20px;
}

#left-decor::after {
    bottom: 10px;
    left: 5px;
}

#right-decor::before {
    top: 15px;
    right: 20px;
}

#right-decor::after {
    bottom: 15px;
    right: 5px;
}

/* Animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}