.sakura-fall-container-f2afcb16 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998; /* Below toggle */
}
.sakura-fall-container-f2afcb16[data-interactive="true"] {
    /* Only allow pointer events on canvas to not block underneath completely */
    pointer-events: auto;
}
.sakura-canvas-f2afcb16 {
    display: block;
    width: 100%;
    height: 100%;
}
.sakura-toggle-f2afcb16 {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ffb7c5;
    box-shadow: 0 4px 12px rgba(255, 183, 197, 0.3);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto !important;
    opacity: 0.3; /* Partially transparent by default */
    transition: opacity 0.3s ease, transform 0.2s ease;
    z-index: 2147483647 !important; /* Highest possible to ensure visibility */
}
.sakura-toggle-f2afcb16:hover {
    opacity: 1 !important; /* Fully opaque on hover */
    transform: scale(1.05);
}
