/* verification.css — clean minimal loading */
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.verification-container {
    width: 100%;
    position: relative;
}

.verification-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.status-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.status-phase {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.status-phase.active {
    display: flex;
}

/* Three-dot bouncing spinner */
.spinner-dots {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.spinner-dots .dot {
    width: 10px;
    height: 10px;
    background: #999;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.spinner-dots .dot:nth-child(1) { animation-delay: 0s; }
.spinner-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.spinner-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.4;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-message {
    font-size: 15px;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Scrollable space for behavior detection */
.scroll-content {
    height: 150vh;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .spinner-dots .dot {
        width: 8px;
        height: 8px;
    }
    .status-message {
        font-size: 14px;
    }
}