body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    font-family: 'Comic Sans MS', cursive;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #ff4d6d;
    font-size: 2.2em;
}

.btn-box {
    margin-top: 30px;
    position: relative;
    width: 320px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

button {
    width: 80px;
    height: 80px;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#yesBtn {
    background: linear-gradient(135deg, #ff4d6d, #ff758c);
    color: white;
}

#yesBtn:hover {
    transform: scale(1.15);
}

#noBtn {
    background: #ccc;
    position: absolute;
    right: 0;
}

#result img {
    width: 250px;
    margin-top: 20px;
    border-radius: 20px;
}

.hidden {
    display: none;
}

/* Floating balloons / hearts from YES button */
.heart {
    position: absolute;
    width: 25px;
    height: 25px;
    background: red;
    clip-path: polygon(50% 0%, 61% 10%, 70% 25%, 50% 90%, 30% 25%, 39% 10%);
    animation: floatUp 2s linear forwards;
}

/* Falling flowers from top */
.flower {
    position: absolute;
    width: 90px;
    height: 90px;
    background: url('https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExcTMyb2NwdGdkYjd2NTlnOWo4aDdlZ3E0N2luNHUwdjI0eTFrcXFicyZlcD12MV9zdGlja2Vyc19zZWFyY2gmY3Q9cw/WlSmbZdjmSzsTdaTTN/giphy.gif') no-repeat center;
    background-size: contain;
    animation: fall 5s linear infinite;
}

/* Animations */
@keyframes floatUp {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(0, -150px) scale(0.5);
        opacity: 0;
    }
}

@keyframes fall {
    0% {
        top: -70px;
        transform: rotate(0deg);
    }

    100% {
        top: 100vh;
        transform: rotate(360deg);
    }
}