body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fce4ec; /* Light pink background */
    font-family: 'Arial', sans-serif;
    overflow: hidden; /* Prevents scrollbars when things move around */
}

/* --- SCENE 1 STYLES --- */
#proposal-container {
    text-align: center;
    z-index: 10;
}

.photos-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.heart {
    font-size: 50px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); filter: drop-shadow(0 0 10px red); }
    100% { transform: scale(1); }
}

button {
    padding: 15px 30px;
    font-size: 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 10px;
    transition: transform 0.2s;
}

#yes-btn { background-color: #4CAF50; color: white; }
#no-btn { background-color: #f44336; color: white; position: relative; }

/* --- SCENE 2 STYLES (Celebration) --- */
.hidden { display: none !important; }

#celebration-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dancing-cat {
    width: 300px;
}

#floating-photo {
    position: absolute;
    width: 200px;
    border-radius: 10px;
    animation: floatAround 5s infinite linear;
}

@keyframes floatAround {
    0% { top: 10%; left: 10%; transform: rotate(0deg); }
    25% { top: 70%; left: 80%; transform: rotate(20deg); }
    50% { top: 80%; left: 20%; transform: rotate(-10deg); }
    75% { top: 20%; left: 60%; transform: rotate(10deg); }
    100% { top: 10%; left: 10%; transform: rotate(0deg); }
}

/* --- SCENE 3 STYLES (Kurt) --- */
#kurt-container {
    position: absolute;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

#kurt-face {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures the face fills the screen dramatically */
}