:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --bg-color: #fff0f3;
    --text-color: #590d22;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fff0f3 0%, #fff5f8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    color: var(--text-color);
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    width: 100%;
}

img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

button {
    font-family: 'Outfit', sans-serif;
    padding: 12px 24px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#yes-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.4);
}

#yes-btn:hover {
    transform: scale(1.05);
    background-color: #ff2a51;
}

#no-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#no-btn:hover {
    background-color: #fff0f3;
}

/* Falling hearts animation */
@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

.heart {
    position: fixed;
    top: -10vh;
    color: var(--primary-color);
    font-size: 1.5rem;
    pointer-events: none;
    z-index: 1000;
    animation-name: fall;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}