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

html, body {
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b1020;
  color: #e5e7eb;
  overflow-x: hidden;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(99, 102, 241, 0.10), transparent 60%),
    radial-gradient(700px 500px at 80% 30%, rgba(34, 197, 94, 0.10), transparent 55%),
    radial-gradient(900px 700px at 60% 90%, rgba(56, 189, 248, 0.08), transparent 60%);
}

#background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 2;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-right a {
  margin-left: 24px;
  text-decoration: none;
  color: #e5e7eb;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  position: relative;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(99,102,241,0.0), rgba(99,102,241,0.9), rgba(34,197,94,0.9), rgba(99,102,241,0.0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  opacity: 0.8;
}

.nav-right a:hover {
  opacity: 1;
}

.nav-right a:hover::after {
  transform: scaleX(1);
}

.content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 64px;
  z-index: 1;
  position: relative;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
}

.subtitle {
  margin-top: 12px;
  opacity: 0.7;
}

.status-card {
  margin-top: 32px;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.status-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.075);
}

.sep {
  opacity: 0.35;
}

.meta {
  opacity: 0.75;
  font-size: 0.95em;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.35); filter: brightness(1.15); }
}

.actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
}

.btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background: rgba(255,255,255,0.02);
}

footer {
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
