.fp-tg-auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.fp-tg-auth-overlay[hidden] {
  display: none;
}

.fp-tg-auth-overlay__panel {
  width: min(92vw, 28rem);
  border: 1px solid rgba(0, 255, 136, 0.35);
  background: rgba(6, 14, 10, 0.95);
  padding: 1.5rem;
  text-align: center;
}

.fp-tg-auth-overlay__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #eafff3;
  margin-bottom: 0.75rem;
}

.fp-tg-auth-overlay__hint {
  font-size: 0.875rem;
  color: #9fdcb8;
  margin-bottom: 1rem;
}

.fp-tg-auth-overlay__countdown {
  margin-top: 0.75rem;
  color: #d9ffe8;
  font-size: 0.875rem;
}

.fp-tg-auth-overlay__countdown[hidden] {
  display: none;
}

body.fp-tg-auth-active .fp-page-layer {
  filter: blur(2px);
}

.admin-shell__main--loading {
  position: relative;
  min-height: 12rem;
}

.admin-shell__main--loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.2);
  animation: adminPulse 1s ease-in-out infinite alternate;
}

@keyframes adminPulse {
  from { opacity: 0.35; }
  to { opacity: 0.75; }
}

