/* Background animation canvas */
.bg-anim {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', cursive, sans-serif;
    background: linear-gradient(135deg, #ffb6c1 0%, #fff0f5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
#helloText {
    font-size: 3rem;
    color: #e75480;
    text-shadow: 2px 2px 8px #fff, 0 0 20px #e75480;
    animation: pop 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
}
@keyframes pop {
    0% { transform: scale(1); }
    100% { transform: scale(1.08) rotate(-2deg); }
}
#confetti {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh; pointer-events: none;
    z-index: 10;
}
.hidden { display: none; }
#questionnaire {
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(231,84,128,0.2);
    padding: 2rem;
    margin: 2rem auto;
    max-width: 400px;
    text-align: center;
}
#questionBox h2 {
    color: #e75480;
    margin-bottom: 1.5rem;
}
#answers button {
    background: #e75480;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
#answers button:hover {
    background: #ff69b4;
    transform: scale(1.08);
}
#memoriesPrompt {
    text-align: center;
    margin-top: 3rem;
}
#memoriesPrompt button {
    background: #e75480;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 1.5rem;
    box-shadow: 0 4px 16px rgba(231,84,128,0.15);
    transition: background 0.2s, transform 0.2s;
}
#memoriesPrompt button:hover {
    background: #ff69b4;
    transform: scale(1.08);
}
