.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0d0f14;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
}

.loader-logo {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeIn 0.4s ease forwards;
}

.loader-text {
    font-family: 'Inter', sans-serif;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.2s forwards;
}

.progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.4s forwards;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4f8cff, #8b5cf6);
    border-radius: 4px;
    animation: progress 2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}