/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.preloader-title {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #ff9500;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(255, 149, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 30px rgba(255, 149, 0, 0.5);
    }

    50% {
        opacity: 0.8;
        text-shadow: 0 0 50px rgba(255, 149, 0, 0.5), 0 0 80px rgba(255, 149, 0, 0.5);
    }
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 149, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9500, #ffcc00);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

.loading-text {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}