.loader-super {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(2, 12, 38, 0.42);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

.loader-super.loader-show {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.loader-super.loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader-content {
    position: relative;
    width: 320px;
    max-width: calc(100% - 32px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.loader-logo-area {
    position: relative;
    width: 200px;
    height: 200px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    position: relative;
    z-index: 2;

    width: 122px;
    max-height: 122px;
    object-fit: contain;

    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
    animation: logoFloat 2.2s ease-in-out infinite;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;

    border: 3px solid transparent;
    border-top-color: #d00212;
    border-right-color: #001f6b;

    animation: ringRotate 1.1s linear infinite;
}

.loader-ring::before {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 50%;

    border: 2px solid transparent;
    border-bottom-color: rgba(208, 2, 18, 0.8);
    border-left-color: rgba(0, 31, 107, 0.85);

    animation: ringRotateReverse 1.4s linear infinite;
}

.loader-info {
    margin-top: 18px;
}

.loader-info h3 {
    margin: 0 0 6px;

    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.4px;

    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.loader-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 400;
}

.loader-line {
    position: relative;
    width: 220px;
    height: 5px;

    margin-top: 24px;
    overflow: hidden;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
}

.loader-line span {
    position: absolute;
    top: 0;
    left: 0;

    width: 45%;
    height: 100%;

    border-radius: inherit;
    background: linear-gradient(90deg, #001f6b, #d00212, #ffffff);

    animation: lineMove 1.35s ease-in-out infinite;
}

html.loader-active,
body.loader-active {
    overflow: hidden;
    height: 100%;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes ringRotateReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes lineMove {
    0% { transform: translateX(-120%); }
    50% { transform: translateX(90%); }
    100% { transform: translateX(260%); }
}
