#iaPreloaderContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 10, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    backdrop-filter: blur(15px);
}

#iaPreloaderContainer.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.ia-preloader {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.ia-preloader-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.ia-preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ia-preloader-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.ia-preloader-orb {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(10px);
    opacity: 0.7;
    animation: orbFloat 3s ease-in-out infinite;
}

.ia-preloader-orb:nth-child(1) {
    background: var(--primary);
    animation-delay: 0s;
    left: 10px;
    top: 40px;
}

.ia-preloader-orb:nth-child(2) {
    background: var(--accent);
    animation-delay: 0.5s;
    right: 10px;
    top: 40px;
}

.ia-preloader-orb:nth-child(3) {
    background: #ff00ff;
    animation-delay: 1s;
    left: 40px;
    bottom: 10px;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.ia-preloader-message {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.ia-preloader-submessage {
    color: rgba(224, 224, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
    max-width: 300px;
    line-height: 1.4;
}

.ia-preloader-steps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.ia-preloader-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.ia-preloader-step.active {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.2);
}

.ia-preloader-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--light);
}

.ia-preloader-step.active .ia-preloader-step-icon {
    background: var(--primary);
    color: var(--dark);
}

.ia-preloader-step-text {
    flex: 1;
    font-size: 0.85rem;
    color: var(--light);
}

.ia-preloader-step.active .ia-preloader-step-text {
    color: var(--primary);
    font-weight: 400;
}

.ia-preloader-step-check {
    font-size: 0.9rem;
    opacity: 0;
}

.ia-preloader-step.completed .ia-preloader-step-check {
    opacity: 1;
    color: var(--accent);
}

.ia-preloader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.ia-preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    width: 0%;
    transition: width 0.5s ease;
    border-radius: 2px;
}

.ia-preloader-timer {
    color: rgba(224, 224, 255, 0.4);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    font-weight: 300;
}