@keyframes psychedelicLoadingGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes loadingTextGlow {
    0% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff, 0 0 30px #ff00ff; }
    33% { text-shadow: 0 0 15px #00ffff, 0 0 25px #ff00ff, 0 0 35px #0088ff; }
    66% { text-shadow: 0 0 20px #ff00ff, 0 0 30px #0088ff, 0 0 40px #00ffff; }
    100% { text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff, 0 0 30px #ff00ff; }
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #ff00ff, #00ffff, #ff00ff, #0088ff);
    background-size: 400% 400%;
    animation: psychedelicLoadingGradient 15s ease infinite;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.loading-text {
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    z-index: 1;
    animation: loadingTextGlow 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}
