#aiad-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

#aiad-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.aiad-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.aiad-loading-bar {
    width: 200px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.aiad-loading-progress {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #F6A104, #ECC275);
    transition: width 0.3s ease;
}

.aiad-tagline p {
    margin-top: 15px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}
