body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    overflow: hidden;

}

#heartCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 2s ease-in;
    z-index: 0;
}

.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.buttons {
    position: fixed;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    padding: 12px 24px;
    width: 100%;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

button {
    padding: 12px 28px;
    font-size: 18px;
    margin: 8px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
}

.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0; 
    transition: all 1s ease;
    z-index: 9999; 
    letter-spacing: 2px;
    text-transform: uppercase;
}

#message.final {
    font-size: 36px;
}

#message {
    color: #ffdaf5;
    font-family: 'DancingScript', cursive;
    font-size: 30px;
    letter-spacing: 2.2px;
    line-height: 1.4;
    max-width: 80%;
    margin: 0 auto;
    text-shadow:
        0 0 4px #ff005d,
        0 0 10px #ff005d,
        0 0 20px rgba(255, 0, 93, 0.8);
    transition: opacity 1.2s ease;
}

#message.red-glow {
    color: #ffdada;
    text-shadow:
        0 0 4px #ff0000,
        0 0 10px #ff0000,
        0 0 20px rgba(255, 0, 0, 0.8);
    transition: all 5s ease;
}

#message.red-glow~.watermark {
    color: rgba(255, 0, 0, 0.3 );
    opacity: 1;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.6);
}

#message.no-glow {
    color: #f0fff7;
    text-shadow:
        0 0 5px #22ff99,
        0 0 15px #22ff99,
        0 0 30px rgba(34, 255, 153, 0.6);
    transition: all 5s ease-in-out;
}


#message.no-glow~.watermark {
    color: rgba( 0,255, 136, 0.3 );
    opacity: 1;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.6);
}

#yesBtn {
    background: #ff005d;
    color: white;
}

#noBtn {
    background: #333;
    color: white;
}

@font-face {
    font-family: "DancingScript";
    src: url("fonts/DancingScript-Regular.ttf")format("truetype");
}