*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    min-height:100vh;

    font-family:'Quicksand',sans-serif;

    background:
    linear-gradient(
    135deg,
    #ffd9ea,
    #fff4fa,
    #e8f4ff
    );

    overflow-x:hidden;
}

.back{

    position:fixed;

    top:30px;
    left:30px;

    text-decoration:none;

    color:#ff6ba8;

    font-weight:600;

    z-index:10;
}

.hero{

    min-height:70vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:40px;
}

.glass-card{

    width:700px;

    max-width:90%;

    padding:50px;

    border-radius:35px;

    text-align:center;

    backdrop-filter:blur(30px);

    background:
    rgba(255,255,255,.35);

    border:
    1px solid rgba(255,255,255,.5);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.emoji{
    font-size:40px;
    margin-bottom:15px;
}

.glass-card h1{

    font-size:55px;

    color:#ff6ba8;

    margin-bottom:15px;
}

.glass-card p{

    opacity:.7;

    margin-bottom:25px;
}

.gif{

    width:240px;

    border-radius:20px;
}

.cards{

    width:1200px;

    max-width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    padding-bottom:80px;
}

.card{

    background:
    rgba(255,255,255,.4);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:30px;

    text-align:center;

    transition:.3s;
}

.card:hover{

    transform:
    translateY(-8px);
}

.card span{

    font-size:35px;
}

.card h3{

    margin-top:15px;
    margin-bottom:10px;

    color:#ff6ba8;
}

.heart{

    position:fixed;

    bottom:-50px;

    font-size:25px;

    animation:
    floatUp linear infinite;

    opacity:.8;
}

@keyframes floatUp{

    from{
        transform:
        translateY(0);
    }

    to{
        transform:
        translateY(-120vh);
    }
}
.love-buttons{

    margin-top:25px;

    display:flex;

    justify-content:center;

    gap:15px;
}

.love-buttons button{

    border:none;

    padding:14px 24px;

    border-radius:999px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    background:white;
}

.love-buttons button:hover{

    transform:translateY(-3px);
}

#responseBox{

    margin-top:20px;

    font-size:22px;

    font-weight:600;

    color:#ff5c9a;

    min-height:35px;
}
.puddle-container{

    position:fixed;

    right:25px;
    bottom:25px;

    z-index:999;
}

.puddle{

    width:110px;

    cursor:pointer;

    transition:.3s;
}

.puddle:hover{

    transform:scale(1.1);
}

.puddle-message{

    position:absolute;

    bottom:120px;
    right:0;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(10px);

    padding:12px 18px;

    border-radius:18px;

    white-space:nowrap;

    font-size:14px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
}