    /* Fun Gradient Background */
    body {
        background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #ffdde1, #ff758c);
        background-size: 400% 400%;
        animation: gradientBG 6s infinite alternate ease-in-out;
        text-align: center;
        font-family: 'Comic Sans MS', cursive, sans-serif;
        height: 100vh;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Background Gradient Animation */
    @keyframes gradientBG {
        0% { background-position: 0% 50%; }
        100% { background-position: 100% 50%; }
    }

    /* Wrapper */
    .wrapper {
        display: flex;
        align-items: center;
        gap: 5px; /* Reduced gap to bring the character closer */
    }

    /* Proposal Box - Made Wider */
    .container {
        background: rgba(255, 255, 255, 0.9);
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        animation: popUp 0.5s ease-in-out;
        width: 420px;  /* Increased the width */
        text-align: center;
    }

    /* Text Effect */
    .shake-text {
        color: #ff165d;
        text-shadow: 2px 2px 5px rgba(255, 50, 100, 0.5);
        animation: shake 0.5s infinite alternate ease-in-out;
    }

    /* Buttons */
    .buttons button {
        font-size: 18px;
        padding: 10px 20px;
        margin: 10px;
        border: none;
        cursor: pointer;
        border-radius: 25px;
        transition: 0.3s;
    }

    #yes {
        background-color: #ff4b7b;
        color: white;
        box-shadow: 0px 4px 10px rgba(255, 75, 123, 0.5);
    }

    #no {
        background-color: #444;
        color: white;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    }

    /* Wiggle Effect for Buttons */
    .wiggle-button:hover {
        animation: wiggle 0.3s infinite alternate ease-in-out;
    }

    /* Floating Hearts */
    .hearts-container {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .heart {
        position: absolute;
        color: red;
        font-size: 24px;
        animation: floatUp 4s linear infinite;
    }

    /* Character Image (Leaning Left & Closer) */
    .outside-image {
        width: 28%;
        max-height: 80vh;
        object-fit: contain;
        position: relative;
        left: -20px; /* Moved the image even closer */
        transform: scaleX(-1) rotate(-5deg);  /* Flipped and tilted for leaning effect */
        animation: bounce 1.5s infinite alternate ease-in-out;
    }

    /* Funny Animations */
    @keyframes popUp {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    @keyframes shake {
        0% { transform: translateX(-3px); }
        100% { transform: translateX(3px); }
    }

    @keyframes wiggle {
        0% { transform: rotate(-3deg); }
        100% { transform: rotate(3deg); }
    }

    @keyframes bounce {
        from { transform: translateY(0); }
        to { transform: translateY(-10px); }
    }

    @keyframes floatUp {
        0% { transform: translateY(100vh); opacity: 1; }
        100% { transform: translateY(-10vh); opacity: 0; }
    }
