/* ==========================================================================
   Panda-Network — Coming soon
   Quiet centred column, in the same family as pnpreview.de / maintenance.html
   ========================================================================== */

:root {
  --bg:         #0f1117;
  --fg:         #f8fafc;
  --muted:      #8b93a7;
  --accent:     #7c3aed;
  --line:       rgba(255, 255, 255, 0.08);
  --line-hover: rgba(255, 255, 255, 0.2);

  --font: 'IBM Plex Mono', ui-monospace, 'Courier New', monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}


/* --- Backdrop ------------------------------------------------------------ */

/* The clip sits far back — texture, not subject. Its `src` is attached by
   script only on wide, motion-friendly viewports. */
#myVideo {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 90% 70% at 50% 45%,
    transparent 0%,
    rgba(15, 17, 23, 0.75) 100%
  );
}


/* --- Column -------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 440px;
  text-align: center;
  animation: rise 520ms cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.lede {
  margin-bottom: 32px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}


/* --- Links --------------------------------------------------------------- */

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  transition: border-color 0.15s, color 0.15s;
}

.links a:hover,
.links a:focus-visible {
  border-color: var(--line-hover);
  color: var(--fg);
}

.links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.links .fab {
  font-size: 1.05em;
}


/* --- Footer -------------------------------------------------------------- */

.foot {
  margin-top: 40px;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0.75;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  margin-bottom: 8px;
}

.legal span {
  opacity: 0.45;
}

.foot a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}

.foot a:hover,
.foot a:focus-visible {
  color: var(--fg);
  border-bottom-color: var(--line-hover);
}

.foot a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* --- Reduced motion ------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .wrap {
    animation: none;
  }
}
