/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #2b111e, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20000;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    margin-bottom: 30px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(255, 64, 129, 0.5);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(255, 64, 129, 0.8);
        transform: scale(1.05);
    }
}

/* Loading Dots */
.loading-dots {
    display: flex;
    gap: 10px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-gradient);
    animation: splash-bounce 1.4s infinite ease-in-out;
    will-change: transform, opacity;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.45s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.30s;
}

.loading-dots span:nth-child(3) {
    animation-delay: -0.15s;
}

.loading-dots span:nth-child(4) {
    animation-delay: 0s;
}

@keyframes splash-bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    40% {
        transform: translateY(-15px);
        opacity: 1;
    }
}