@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ffccd5;
    --bg-gradient: linear-gradient(135deg, #fff0f3 0%, #ffccd5 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-color: #590d22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: fadeIn 1s ease-out;
}

.hero-img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.2);
}

h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    min-height: 100px;
}

button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
}

.yes-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.yes-btn:hover {
    transform: scale(1.05);
    background: #ff758f;
}

.no-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    h1 {
        font-size: 1.5rem;
    }

    .hero-img {
        max-height: 200px;
    }

    button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
        gap: 1rem;
    }
}