.verification-gate {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: orbMove 10s infinite alternate ease-in-out;
}

@keyframes orbMove {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(10%, 10%); }
}

.verify-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    z-index: 2;
}

.logo-container {
    perspective: 1000px;
    margin-bottom: 60px;
}

.verify-logo {
    height: 280px;
    width: auto;
    animation: logoEvolve 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
}

@keyframes logoEvolve {
    0%, 100% { transform: translateY(0) rotateY(0deg) scale(1); filter: drop-shadow(0 0 30px rgba(255,255,255,0.2)); }
    50% { transform: translateY(-20px) rotateY(10deg) scale(1.05); filter: drop-shadow(0 0 60px rgba(255,255,255,0.4)); }
}

.status-wrapper {
    min-height: 40px;
    margin-bottom: 40px;
}

.verify-status-text {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: all 0.5s ease;
}

.text-reveal {
    animation: textFlash 1.2s ease-in-out;
}

.welcome-reveal {
    color: #fff !important;
    font-size: 2.2rem !important;
    letter-spacing: 12px !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: welcomeGlitch 0.3s infinite alternate;
}

@keyframes textFlash {
    0% { opacity: 0; transform: translateY(10px); filter: blur(10px); }
    50% { opacity: 1; transform: translateY(0); filter: blur(0px); }
    100% { opacity: 0.8; }
}

@keyframes welcomeGlitch {
    0% { transform: translate(0); }
    100% { transform: translate(2px, -2px); }
}

.verify-progress-container {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 450px;
    justify-content: center;
}

.verify-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.verify-bar.active {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: scaleY(2);
}

.verify-bar.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    filter: blur(10px);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .verify-logo {
        height: 180px;
    }
    .verify-status-text {
        font-size: 1rem;
    }
    .welcome-reveal {
        font-size: 1.5rem !important;
    }
}