/* Fullscreen overlay */
#redirect-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    #background: linear-gradient(145deg, #e0f7ff, #cdeffd) !important;
    #background: linear-gradient(145deg, #ffffff, #f0f0f0) !important;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-in-out forwards;
    font-family: 'Poppins', sans-serif;
}

/* Content styling */
.redirect-wrapper {
    text-align: center;
    animation: scaleUp 1.2s ease-out;
}

.redirect-wrapper img {
    max-width: 570px;
    width: 100%;
    margin-bottom: 30px;
    animation: zoomIn 1.2s ease-in-out;
}


.redirect-wrapper h1 {
    font-size: 2em;
    color: #222;
    margin-bottom: 15px;
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

.redirect-wrapper p {
    font-size: 1.5em;
    color: #fff;
    animation: fadeUp 1s ease 1s forwards;
    opacity: 0;
}

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

@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

@keyframes fadeUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
}

.redirect-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    animation: scaleUp 1.2s ease-out;
    color: #ffffff;
}
