body {
    background-color: #ffdde1;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    /* To prevent scrollbars when the button moves */
}

.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
}

h1 {
    font-family: 'Pacifico', cursive;
    color: #ff4d6d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.image-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 50%;
    border: 4px solid rgba(255, 77, 109, 0.2);
    box-shadow:
        0 8px 20px rgba(255, 77, 109, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 30px rgba(255, 77, 109, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    /* Needed for absolute positioning context if we wanted, but we'll use fixed/absolute on the body for the No button move */
}

button {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

#yes-btn {
    background-color: #ff4d6d;
    color: white;
}

#yes-btn:hover {
    background-color: #e63950;
    transform: scale(1.1);
}

#no-btn {
    background-color: #c9184a;
    color: white;
    /* We'll handle position in JS for the "run away" effect */
}

#no-btn:hover {
    /* No hover effect needed if it moves away, but good for accessibility/tabbing */
}

.fragment {
    position: fixed;
    pointer-events: none;
    width: 12px;
    height: 12px;
    background-color: #c9184a;
    border-radius: 2px;
    z-index: 2000;
}

@keyframes shatter-animate {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translate(var(--dx), var(--dy)) rotate(var(--dr));
        opacity: 0;
    }
}