/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: transform 0.8s ease-out;
    cursor: pointer !important;
}

.splash-screen * {
    cursor: pointer !important;
}

.splash-screen.slide-up {
    transform: translateY(-100%);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.splash-logo {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    opacity: 0;
    animation: fadeInScale 1.5s ease-out forwards, floatLogo 3s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
    transform: scale(0.3);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatLogo {

    0%,
    100% {
        transform: scale(1) translateY(0px);
    }

    50% {
        transform: scale(1) translateY(-20px);
    }
}

.splash-brand-text {
    position: relative;
    right: 50px;
    bottom: -8px;
    font-family: 'Courier', monospace;
    font-size: 0.65rem !important;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInBrandText 1s ease-out forwards;
    animation-delay: 0s;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes fadeInBrandText {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .splash-logo {
        max-width: 200px;
        max-height: 200px;
    }

    .splash-brand-text {
        font-size: 0.6rem !important;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        max-width: 120px;
        max-height: 120px;
    }

    .splash-brand-text {
        font-size: 0.55rem !important;
        margin-bottom: 6px;
        letter-spacing: 1.5px;
    }
}

