.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5fb4c1, #00cec9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    animation: pulse 1.5s ease-in-out infinite;
}

.logo i {
    font-size: 32px;
    color: white;
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.loading-bar-container {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loading-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #5fb4c1, #00cec9);
    border-radius: 2px;
    transition: width 0.2s ease-out;
}

.loading-percentage {
    font-size: 14px;
    color: #5fb4c1;
    font-family: 'Courier New', monospace;
    margin-bottom: 5px;
}

.status-message {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    min-height: 15px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .logo {
        width: 60px;
        height: 60px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .loading-bar-container {
        width: 250px;
    }
}