﻿body {
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.loader-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 35%, rgba(42, 116, 237, 0.12), transparent 34%), #fafafa;
    font-family: 'Roboto', sans-serif;
    color: #1f1f1f;
    overflow: hidden;
}

.logo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 34px 42px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px);
    text-align: center;
    animation: fadeIn 700ms ease-out both;
}

    .logo-card::after {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: inherit;
        background: transparent;
        opacity: 0;
        pointer-events: none;
    }

.logo {
    width: 200px;
    height: auto;
    display: block;
}

.loader-title,
.loader-text,
.loading-meta {
    position: relative;
    z-index: 1;
}

.loader-title {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #1f1f1f;
}

.loader-text {
    max-width: 320px;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #666;
}

.loading-meta {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 6px;
}

.mud-progress-circular {
    display: inline-flex;
    width: 44px;
    height: 44px;
    color: #2A74ED;
    animation: mud-progress-circular-rotate 1.4s linear infinite;
}

    .mud-progress-circular svg {
        display: block;
        width: 100%;
        height: 100%;
    }

    .mud-progress-circular circle {
        fill: none;
        stroke: #2A74ED;
        stroke-width: 3.6;
        stroke-linecap: round;
        stroke-dasharray: 80px, 200px;
        stroke-dashoffset: 0;
        transform-origin: center;
        animation: mud-progress-circular-dash 1.4s ease-in-out infinite;
    }

@keyframes mud-progress-circular-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes mud-progress-circular-dash {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 100px, 200px;
        stroke-dashoffset: -15px;
    }

    100% {
        stroke-dasharray: 100px, 200px;
        stroke-dashoffset: -125px;
    }
}

@keyframes softGlow {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}