/* Splash Screen */
.splash-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #4caf50, #2196f3); */
    color: white;
    z-index: 10;
    text-align: center;
}

.logo-container img {
    width: 200px;
    animation: bounce 2s infinite;
    border-radius: 50%;
}

.game-title {
    font-size: 3rem;
    font-weight: bolder;
    margin: 20px 0 10px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    /* opacity: 0.8; */
    font-weight: bolder;
}

.play-btn {
    font-size: 25px;
}

.hidden {
    display: none;
}


/* Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* @keyframes bounce-btn {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
} */
