/* ================= BASE ================= */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    font-family: cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffd54f;

    /* DARK HONEY CINEMATIC BACKGROUND */
    background:
        radial-gradient(circle at 20% 30%, rgba(255,180,0,0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,140,0,0.2), transparent 45%),
        linear-gradient(160deg, #120a00 0%, #2b1a00 40%, #5a3a00 100%);
}

/* CINEMATIC VIGNETTE */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ================= PARTICLES CANVAS ================= */
#particles {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ================= PAGE ================= */
.page {
    position: absolute;
    text-align: center;
    width: 90%;
    max-width: 700px;
    z-index: 5;
}

.hidden {
    display: none;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255,180,0,0.6);
}

/* ================= BUTTONS ================= */
button {
    padding: 14px 45px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ENTER BUTTON */
#enterBtn {
    background: #ffb300;
    color: #1a0f00;
    box-shadow: 0 0 20px rgba(255,179,0,0.6);
}

#enterBtn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 35px rgba(255,179,0,0.9);
}

/* BUTTON WRAP */
.buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* ================= YES BUTTON (GLOW HEARTBEAT) ================= */
#yesBtn {
    background: #ffd54f;
    color: #1a0f00;
    animation: glowBeat 1.5s infinite;
}

@keyframes glowBeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255,213,79,0.5);
    }
    50% {
        transform: scale(1.18);
        box-shadow: 
            0 0 35px rgba(255,213,79,1),
            0 0 70px rgba(255,200,0,0.8),
            0 0 120px rgba(255,160,0,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255,213,79,0.5);
    }
}

/* ================= NO BUTTON ================= */
#noBtn {
    background: #3e2600;
    color: #ffd54f;
    position: relative;
    transition: all 0.25s ease;
}

#noBtn:hover {
    transform: scale(0.9);
}

/* Shape variations (if used in JS) */
.shape1 { border-radius: 50px; }
.shape2 { border-radius: 5px; }
.shape3 { border-radius: 50%; }
.shape4 { border-radius: 0; }
