/* ── Offline overlay ── */
.offline-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  align-items: center;
  justify-content: center;
}
.offline-overlay.visible { display: flex; }

.offline-content {
  text-align: center;
  padding: 32px 24px;
}
.offline-icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.offline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.offline-msg {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.offline-retry-btn {
  padding: 12px 36px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--neon-dim), var(--neon));
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(200,85,255,0.4);
  transition: all 0.2s;
}
.offline-retry-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(200,85,255,0.55);
}
.offline-retry-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
