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

body {
    font-family: 'Poppins', sans-serif;
    background: hsl(330, 100%, 95%);
    color: hsl(330, 60%, 20%);
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.bg-emojis span {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.15); }
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

h1 {
    font-family: 'Lilita One', cursive;
    font-size: 4rem;
    color: hsl(330, 80%, 55%);
    text-align: center;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.question-btn {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

#btn-yes, #btn-no {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.15s ease;
}

#btn-yes {
    background: hsl(330, 80%, 55%);
    color: white;
}
#btn-yes:hover { transform: scale(1.1); }

#btn-no {
    background: hsl(45, 100%, 70%);
    color: hsl(330, 60%, 20%);
    transition: transform 0.15s ease;
}

#sab-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: hsl(330, 20%, 50%);
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
#sab-btn:hover { color: hsl(330, 80%, 55%); }

dialog {
    border: none;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 24rem;
}
dialog::backdrop { background: rgba(0,0,0,0.5); }

dialog p {
    font-family: 'Lilita One', cursive;
    font-size: 2rem;
    color: hsl(330, 80%, 55%);
    margin-bottom: 1rem;
}

dialog a {
    font-size: 1.1rem;
    color: hsl(280, 60%, 65%);
    display: block;
    margin-bottom: 1rem;
}

#close-dialog {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    background: hsl(330, 80%, 55%);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.video-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hidden { display: none; }
