:root {
    --primary-pink: #ff1493;
    --neon-glow: #ff69b4;
    --deep-black: #050508;
    --card-bg: rgba(15, 8, 12, 0.75);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: radial-gradient(circle at center, #1a0210 0%, var(--deep-black) 80%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Luxury Glassmorphism Card Frame */
.container {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(255, 20, 147, 0.15);
    max-width: 480px;
    width: 90%;
    z-index: 10;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardEntrance {
    0% { opacity: 0; transform: scale(0.8) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Floating Badges */
.spa-badge {
    display: inline-flex;
    background: rgba(255, 20, 147, 0.12);
    border: 1px solid rgba(255, 20, 147, 0.4);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
    animation: floatingSoft 3s ease-in-out infinite alternate;
}

@keyframes floatingSoft {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #ff85c2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #b3b3cc;
    margin-bottom: 35px;
}

p b {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.4);
}

/* Buttons Zone */
.interactive-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    min-height: 80px;
    position: relative;
}

.btn {
    padding: 16px 38px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    outline: none;
}

#yesBtn {
    background: linear-gradient(135deg, #ff1493 0%, #ff69b4 100%);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.4);
    transition: transform 0.2s;
}

#yesBtn:hover {
    transform: scale(1.08);
}

/* Fixed positioning handles the runaway logic seamlessly */
#noBtn {
    background: #12121a;
    color: #ff69b4;
    border: 1px solid rgba(255, 20, 147, 0.3);
    position: absolute;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: left 0.15s cubic-bezier(0.19, 1, 0.22, 1), 
                top 0.15s cubic-bezier(0.19, 1, 0.22, 1);
}

.hide-state {
    display: none !important;
}

.success-accent {
    font-size: 4rem;
    margin-top: 20px;
    display: block;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}
