body {
    font-family: Comic Sans MS, Comic Sans, cursive;
    background: linear-gradient(135deg, #ffe6f0, #ffd6e8);
    text-align: center;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    margin-top: 40px;
    padding: 10px;
}

h1 {
    font-size: clamp(2em, 5vw, 2.7em);
    color: #cc0066;
}

.kitten {
    margin: 20px 0;
    max-width: 40%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    transition: transform 0.6s ease;
}

.kitten.zoom {
    transform: scale(1.3) rotate(3deg);
}

.buttons {
    margin-top: 30px;
    position: relative;
    height: 200px;
}

button {
    font-size: 1.4em;
    padding: 12px 24px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

#yesBtn {
    background-color: #ff66b2;
    color: white;
}

#noBtn {
    background-color: #cccccc;
    position: absolute;
}

/* Heart rain */
.heart {
    position: fixed;
    top: -20px;
    font-size: 26px;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh);
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .buttons {
        height: 240px;
    }

    button {
        font-size: 1.2em;
    }
}
