/* ═══════════════════════════════════════════════
   PREMIUM VERIFICATION SYSTEM UI
   Designed for SohagGaming2.0 - AdSense Compliant
   Focus: Content-driven engagement, premium feel.
═══════════════════════════════════════════════ */

.verification-hub {
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.verification-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

/* Legal & Trust Footer */
.hub-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hub-footer a {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color var(--transition);
}

.hub-footer a:hover {
    color: var(--accent-bright);
}

.verification-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.verification-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-light);
    transform: translateY(-50%);
    z-index: 1;
}

.step-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    z-index: 2;
    transition: all 0.4s ease;
    color: var(--text-tertiary);
    position: relative;
}

.step-node.active {
    background: var(--accent);
    border-color: var(--accent-light);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
}

.step-node.completed {
    background: var(--cyan);
    border-color: var(--cyan-light);
    color: white;
    box-shadow: 0 0 15px var(--cyan-glow);
}

.step-label {
    position: absolute;
    top: 45px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    color: var(--text-tertiary);
}

.step-node.active .step-label {
    color: var(--accent-bright);
}

/* Verification Box */
.verification-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.verification-box h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.verification-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
@media (max-width: 600px) {
    .step-node {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .step-label {
        font-size: 0.6rem;
        top: 35px;
    }
    .verification-hub {
        padding: 1.5rem;
    }
    .verification-stepper {
        margin-bottom: 2rem;
    }
}

/* Progress Pulse Animation */
.pulse-loader {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    display: inline-block;
    position: relative;
    box-shadow: 0 0 0 0 var(--accent-glow);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(124, 58, 237, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

/* Proceed Button styling upgrade */
#btn-create-link, #btn-next-page, #lockerTopBtn, #lockerBottomBtn {
    background: var(--gradient-primary) !important;
    border: none !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 30px var(--accent-glow) !important;
}

#btn-create-link:hover, #btn-next-page:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px var(--accent-glow) !important;
}

/* Security Scan Bar */
.scan-container {
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    height: 8px;
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto;
    overflow: hidden;
    position: relative;
}

.scan-bar {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    transition: width 0.3s ease;
}

.scan-status {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8rem;
    color: var(--cyan-light);
    margin-top: 5px;
    text-transform: uppercase;
}
