#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000080;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-text {
    font-family: monospace;
    font-size: 50px;
    color: #00ff00;
    text-shadow: 2px 2px 0 #ff00ff;
    animation: blink 1s step-end infinite;
    margin-bottom: 20px;
}

.loading-info {
    font-family: monospace;
    font-size: 16px;
    color: #ffff00; /* Giallo */
    text-align: center;
    margin-bottom: 20px;
    min-height: 20px; /* Spazio fisso per evitare salti */
}

.loading-bar {
    width: 400px; /* Barra più grande */
    height: 30px;
    border: 2px solid #ffff00;
    background: #000040;
    overflow: hidden;
    position: relative;
}

.loading-bar::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: #00ffff;
    animation: load 2s linear infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

@keyframes load {
    0% { left: -50%; }
    100% { left: 100%; }
}