/* Landing Loader Styles - Modern loading screen with progress steps */

/* Landing Page Style Loader */
.landing-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: 0;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: visible;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #eff2f5;
}

/* Background Circles */
.landing-loader .background-circles {
    position: absolute;
    overflow: hidden;
    opacity: 0.1;
}

.landing-loader .circle {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(60px);
    animation: landing-loader-pulse 2s ease-in-out infinite;
}

.landing-loader .circle-1 {
    top: 25%;
    left: 25%;
    background-color: #93c5fd;
}

.landing-loader .circle-2 {
    bottom: 25%;
    right: 25%;
    background-color: #d8b4fe;
    animation-delay: 1s;
}

@keyframes landing-loader-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Landing Content */
.landing-loader .landing-content {
    position: relative;
    z-index: 10;
    max-width: 672px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Icon Container */
.landing-loader .icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.landing-loader .icon-wrapper {
    position: relative;
}

.landing-loader .icon-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #34d399, #2dd4bf);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: landing-loader-pulse 2s ease-in-out infinite;
}

.landing-loader .icon-bg {
    position: relative;
    background: white;
    border-radius: 50%;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.landing-loader .icon {
    width: 64px;
    height: 64px;
    animation: landing-loader-bounce 1s ease-in-out infinite;
}

@keyframes landing-loader-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Landing Content Text */
.landing-loader .landing-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.landing-loader .landing-content p.subtitle {
    font-size: 1.75rem;
    color: #4b5563;
    margin-bottom: 48px;
}

/* Progress Steps */
.landing-loader .progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    color: #374151;
}

.landing-loader .step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-loader .step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background-color: #e5e7eb;
}

.landing-loader .step-circle.completed {
    background-color: #22c55e;
}

.landing-loader .step-circle svg {
    display: none;
}

.landing-loader .step-circle.completed svg {
    display: block;
}

.landing-loader .step-text {
    font-size: 1.15rem;
}

/* Progress Bar */
.landing-loader .progress-bar-container {
    width: 100%;
    max-width: 448px;
    margin: 0 auto;
    height: 8px;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
}

.landing-loader .progress-bar {
    height: 100%;
    background: linear-gradient(to right, #34d399, #2dd4bf);
    border-radius: 9999px;
    transition: width 0.3s ease-out;
    width: 0%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-loader .landing-content h1 {
        font-size: 2rem;
    }

    .landing-loader .landing-content p.subtitle {
        font-size: 1rem;
    }

    .landing-loader.progress-steps {
        flex-direction: column;
        gap: 16px;
    }
}
