/* ── Auth Fullscreen Overlay (Verification / Onboarding over Feed with blur) ── */
.auth-fullscreen-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px) saturate(0.8);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Verification Screen ── */
.verify-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 24px;
}

.verify-card {
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 24px;
  background: rgba(18, 18, 23, 0.95);
  border: 1px solid var(--glass-border);
  text-align: center;
}

.verify-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
  border: 2px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: verify-pulse 2s ease-in-out infinite;
}

.verify-icon-ring i {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

@keyframes verify-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.2); }
  50% { box-shadow: 0 0 0 12px rgba(124, 58, 237, 0); }
}

.verify-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
  text-align: center;
}

.verify-subtitle {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 6px;
  line-height: 1.5;
  text-align: center;
}

.verify-email {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  text-align: center;
}

.verify-digits {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.verify-digit {
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  caret-color: var(--accent);
}

.verify-digit:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
  background: rgba(124, 58, 237, 0.05);
}

.verify-digit:not(:placeholder-shown) {
  border-color: rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.05);
}

.verify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  margin-top: 4px;
}

.verify-btn i {
  width: 18px;
  height: 18px;
}

.verify-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.verify-footer p {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.verify-resend-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.verify-resend-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.verify-resend-status {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  min-height: 18px;
}

.verify-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: left;
  line-height: 1.4;
}

.verify-hint i {
  flex-shrink: 0;
  color: var(--accent);
}
