.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff0000, #ff3333);
    animation: loading 2s ease-in-out infinite;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.loading-text {
    margin-top: 20px;
    color: #ff0000;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

@keyframes loading {
    0% {
        width: 0;
        left: 0;
    }
    50% {
        width: 100%;
        left: 0;
    }
    100% {
        width: 0;
        left: 100%;
    }
} 