.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(
        135deg,
        #0a0a0a 0%,
        #1a0a1a 30%,
        #2a0a2a 70%,
        #0a0a0a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    transform: scale(1);
    animation: splashFadeIn 1s ease-in-out;
}

.splash-logo {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #e7e7e7, var(--primary-color), #6600c5, #5300a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(127, 66, 167, 0.6);
    margin-bottom: 1rem;
}

.splash-loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.splash-text {
    font-size: 1.2rem;
    color: #b7b7b7;
    letter-spacing: 0.1rem;
}


@keyframes splashFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .splash-logo {
        font-size: 2.5rem;
    }
    .splash-text {
        font-size: 1rem;
    }
    .splash-loader {
        width: 40px;
        height: 40px;
    }
}
