.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: #020202;
    transition: 2s;
}

.loader-content {
    text-align: center;
    transform: translateY(-20px);
}

.loader-title {
    font-size: 200%;
    font-weight: bold;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    color: white;
}

#loader-footer {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 93%;
    text-align: center;
    margin: auto;
    color: #7a7a7a;
    padding: 10px 0;
    white-space: nowrap;
    overflow: hidden;
    font-size: 16px;
}

.loader-progress {
    height: 3px;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 30px auto;
}

.loader-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1a73e8, #4a90e2);
    animation: progress 2.5s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0; margin-left: 0; }
    50% { width: 100%; margin-left: 0; }
    100% { width: 0; margin-left: 100%; }
}