@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

:root {
    --primary-pink: #ffafbd;
    --accent-red: #ff3e6d;
    --soft-white: rgba(255, 255, 255, 0.9);
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffafbd 0%, #ffc3a0 100%);
    font-family: 'Quicksand', sans-serif;
    overflow: hidden;
}

.container {
    z-index: 10;
}

.card {
    background: var(--soft-white);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 450px;
    border: 4px solid white;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.image-section img {
    width: 200px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

h1 {
    color: var(--accent-red);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    height: 50px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.yes-btn {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.no-btn {
    background-color: #f44336;
    color: white;
    position: absolute;
    left: 55%;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Background Animation */
.bg-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.heart {
    position: absolute;
    color: white;
    opacity: 0.6;
    animation: float 5s linear infinite;
}

@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}