#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    color: #fff;
    font-family: 'Press Start 2P', cursive;
    flex-direction: column;
    display: none; 
    opacity: 1; 
    transition: opacity 0.3s ease-in-out; 
}
#loading-screen.visible {
    display: flex; 
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(0, 191, 255, 0.2);
    border-top-color: #00bfff; 
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
    box-shadow: 0 0 15px #00bfff, 0 0 30px #00bfff;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-size: 24px;
    text-shadow: 0 0 10px #00bfff;
}