<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo span {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #4361ee;;
    animation: bounce 0.8s infinite alternate;
}

.loader-logo span:nth-child(2) { animation-delay: 0.1s; }
.loader-logo span:nth-child(3) { animation-delay: 0.2s; }
.loader-logo span:nth-child(4) { animation-delay: 0.3s; }
.loader-logo span:nth-child(5) { animation-delay: 0.4s; }

@keyframes bounce {
    to { transform: translateY(-20px); opacity: 0.5; }
}

.loading-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text);
    position: relative;
    text-align: center;
}

.loading-text::after {
    content: '...';
    position: absolute;
    animation: dots 1.5s infinite steps(4);
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}</pre></body></html>