body {
    background-color: #fce4ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    z-index: 10;
}

#cat-img {
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}

h1 {
    color: #d81b60;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

button {
    padding: 15px 25px;
    font-size: 1.2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#yesButton { background-color: #4caf50; color: white; }
#noButton { background-color: #f44336; color: white; }

/* Animation des cœurs pour la fin */
@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

.heart-animation {
    position: absolute;
    pointer-events: none;
    animation: floatUp linear forwards;
    z-index: 5;
}