/* 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.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: bounceDrop 2s ease-out forwards, floatLogo 3s ease-in-out infinite;
    animation-delay: 2.5s, 4.5s;
    cursor: pointer !important;
    transform: translateY(-100vh);
}

@keyframes bounceDrop {
    0% {
        opacity: 0;
        transform: translateY(-100vh) scale(0.9);
    }

    /* First bounce - highest */
    35% {
        opacity: 1;
        transform: translateY(50px) scale(1.05);
    }

    /* First bounce up */
    50% {
        transform: translateY(-25px) scale(1);
    }

    /* Second bounce - medium height */
    65% {
        transform: translateY(20px) scale(1.02);
    }

    /* Second bounce up */
    75% {
        transform: translateY(-10px) scale(1);
    }

    /* Third bounce - smaller */
    85% {
        transform: translateY(8px) scale(1);
    }

    /* Third bounce up */
    92% {
        transform: translateY(-3px) scale(1);
    }

    /* Settle */
    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes floatLogo {

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

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

.splash-brand-text {
    position: relative;
    right: 90px;
    bottom: -8px;
    font-family: 'Courier', monospace;
    font-size: 1rem;
    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;
    cursor: pointer !important;
    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.8rem;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
}

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

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

