body {
    margin: 0;
}

#loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    font-family: Arial, sans-serif;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to right, #4E3B7D, #6F0BFF);
}


.logo-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* ✨ Efecto brillante */
.logo-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);
    animation: shine 2s infinite;
}

/* 💫 Animación del reflejo */
@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

.logo {
    width: 80px;
    height: 80px;
    display: block;
}

#progress-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.progress-bar {
    width: 150px;
    height: 4px;
    background: #ccc;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #ff66ff;
    transition: width 0.2s;
}