:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --bg-color: #fff0f3;
    --text-color: #590d22;
    --btn-shadow: rgba(255, 77, 109, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background-image: radial-gradient(#ffccd5 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #e60023;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    /* Allow wrapping if buttons get huge */
    min-height: 100px;
    /* Space for buttons */
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.yes-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px var(--btn-shadow);
}

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

.no-btn {
    background-color: white;
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
}

.no-btn:hover {
    background-color: #ffe6eb;
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gifs img {
    margin-top: 20px;
    border-radius: 15px;
    max-width: 250px;
}

.floating-bear {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.video-container {
    margin: 2rem 0;
    border: 5px solid white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
}

.placeholder-video p {
    padding: 10px;
    font-weight: bold;
    color: var(--primary-color);
}

.love-note {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #a4133c;
}

/* Confetti effect could be added via JS, or simple CSS particles */