* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    height: 100vh;
    background: linear-gradient(135deg, #fff5f7, #ffe3ec);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* CONTENEUR */
.container {
    text-align: center;
    z-index: 2;
}

/* ===================== */
/* BANDEROLE ROMANTIQUE */
/* ===================== */

.banner {
    background: white;
    padding: 30px 60px;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(214, 51, 108, 0.2);
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
}

/* Petit effet arrondi décoratif */
.banner::before,
.banner::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(214, 51, 108, 0.1);
}

.banner::before {
    left: -20px;
}

.banner::after {
    right: -20px;
}

.banner h1 {
    font-size: 2.3rem;
    color: #d6336c;
}


h1 {
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: #d6336c;
}

/* ZONE DES BOUTONS */
.buttons {
    position: relative;
    width: 600px;
    margin: auto;
}

/* STYLE GENERAL */
button {
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* BOUTON OUI */
#yesBtn {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-140%, -50%);
    background-color: #ff4d6d;
    color: white;
}

#yesBtn:hover {
    background-color: #e03131;
    transform: translate(-140%, -50%) scale(1.1);
}

/* BOUTON NON */
#noBtn {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(40%, -50%);
    background-color: #dee2e6;
}

/* ========================= */
/* COEURS EN ARRIERE PLAN */
/* ========================= */

.hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.heart {
    position: absolute;
    color: #ff4d6d;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) scale(1.5);
        opacity: 0;
    }
}


/* ===================== */
/* PAGE CHOIX */
/* ===================== */

.choice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.choice-card {
    width: 220px;
    height: 220px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(214, 51, 108, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
    padding: 20px;
}

.choice-card p {
    font-size: 1rem;
    margin-top: 15px;
    color: #d6336c;
    font-weight: bold;
}

.choice-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(214, 51, 108, 0.25);
}

.or {
    font-size: 2rem;
    font-weight: bold;
    color: #d6336c;
}


/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {

    body {
        overflow: auto;
        padding: 20px;
    }

    .banner {
        padding: 20px 30px;
        border-radius: 30px;
        margin-bottom: 40px;
    }

    .banner h1 {
        font-size: 1.5rem;
    }

    .buttons {
        width: 100%;
        height: 200px;
    }

    button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    #yesBtn {
        transform: translate(-120%, -50%);
    }

    #yesBtn:hover {
        transform: translate(-120%, -50%) scale(1.05);
    }

    #noBtn {
        transform: translate(20%, -50%);
    }

    .choice-container {
        flex-direction: column;
        gap: 30px;
        height: auto;
        padding: 40px 0;
    }

    .choice-card {
        width: 180px;
        height: 180px;
        font-size: 2rem;
    }

    .or {
        font-size: 1.5rem;
    }
}
