/* /Components/Bebsverse/SplashScreen.razor.rz.scp.css */
.splash[b-iuw0q2g176] {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: linear-gradient(160deg, #fce4ec 0%, #f8bbd0 25%, #e1bee7 60%, #ce93d8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 32px;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.splash--hide[b-iuw0q2g176] {
    opacity: 0;
    transform: scale(1.04);
    pointer-events: none;
}

.splash__hearts[b-iuw0q2g176] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.splash__star[b-iuw0q2g176] {
    font-size: 48px;
    margin-bottom: 16px;
    animation: starPop-b-iuw0q2g176 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.splash__title[b-iuw0q2g176] {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 500;
    color: #3d2c3e;
    line-height: 1.1;
    margin-bottom: 12px;
    animation: fadeUp-b-iuw0q2g176 0.7s 0.2s both;
}

    .splash__title em[b-iuw0q2g176] {
        font-style: italic;
        color: #9c27b0;
    }

.splash__sub[b-iuw0q2g176] {
    font-size: 15px;
    color: #7b5e7b;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeUp-b-iuw0q2g176 0.7s 0.35s both;
}

.splash__btn[b-iuw0q2g176] {
    background: white;
    color: #9c27b0;
    border: none;
    border-radius: 100px;
    padding: 14px 36px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    animation: fadeUp-b-iuw0q2g176 0.7s 0.5s both;
    transition: transform 0.15s;
}

    .splash__btn:active[b-iuw0q2g176] {
        transform: scale(0.96);
    }

@keyframes starPop-b-iuw0q2g176 {
    from {
        transform: scale(0) rotate(-20deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeUp-b-iuw0q2g176 {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatHeart-b-iuw0q2g176 {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.2);
    }
}
