body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Helvetica Neue", sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.content--canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.container:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Rest of your existing styles... */

.activity-container {
    display: none;
}

h1 {
    color: #2d2d2d;
    font-weight: 300;
    margin-bottom: 2rem;
}

img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.button-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#yesBtn {
    background-color: #ff5a5f;
    color: white;
}

#noBtn {
    background-color: #e0e0e0;
    color: #2d2d2d;
    transition: transform 0.1s ease;
}

.activity-btn {
    background-color: #4caf50;
    color: white;
    margin: 0.5rem;
}

.sakura {
    position: fixed;
    pointer-events: none;
    width: 8px;
    height: 8px;
    background-color: #ffb7c5;
    border-radius: 50%;
}

audio {
    display: none;
}

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}
