body.regen-login-splash-active {
    overflow: hidden;
}

.regen-login-splash {
    position: fixed;
    inset: 0;
    z-index: 10100;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #FF8C00 0%, #FFD700 25%, #20B2AA 75%, #008B8B 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.regen-login-splash.is-visible {
    display: flex;
    opacity: 1;
}

.regen-login-splash::before,
.regen-login-splash::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.regen-login-splash::before {
    top: 18%;
    left: 16%;
    width: 220px;
    height: 220px;
    animation: regenSplashFloat1 14s ease-in-out infinite;
}

.regen-login-splash::after {
    bottom: 12%;
    right: 12%;
    width: 160px;
    height: 160px;
    animation: regenSplashFloat2 18s ease-in-out infinite;
}

.regen-login-splash__panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 48px 56px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
    animation: regenSplashPanelIn 0.55s ease;
}

.regen-login-splash__logo-wrap {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff8ef, #ffffff);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.25);
    animation: regenSplashLogoPulse 1.8s ease-in-out infinite;
}

.regen-login-splash__logo {
    width: 72px;
    height: auto;
    display: block;
}

.regen-login-splash__brand {
    margin: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1a1a;
}

.regen-login-splash__tagline {
    margin: -10px 0 0;
    font-size: 0.95rem;
    color: #666;
}

.regen-login-splash__status {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #008B8B;
    animation: regenSplashTextPulse 1.4s ease-in-out infinite;
}

.regen-login-splash__dots {
    display: inline-flex;
    gap: 6px;
    margin-left: 4px;
}

.regen-login-splash__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FF8C00;
    animation: regenSplashDot 1.2s ease-in-out infinite;
}

.regen-login-splash__dots span:nth-child(2) { animation-delay: 0.15s; }
.regen-login-splash__dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes regenSplashPanelIn {
    from { opacity: 0; transform: scale(0.92) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes regenSplashLogoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes regenSplashTextPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

@keyframes regenSplashDot {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
    40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes regenSplashFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-18px, -14px); }
}

@keyframes regenSplashFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(14px, 10px); }
}
