/* style.css */
:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.10);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --gold: #d5aa4b;
  --navy: #1a2332;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(
      1200px 600px at 20% 10%,
      rgba(213, 170, 75, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 85% 30%,
      rgba(90, 140, 255, 0.10),
      transparent 55%
    ),
    var(--bg);
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 18px;
}

.header {
  width: min(920px, 100%);
  display: flex;
  justify-content: center;
}

.header h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.88);
}

.content {
  width: min(920px, 100%);
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}

.content h1 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
}

.content p {
  margin: 0;
  max-width: 62ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.content p + p {
  margin-top: 10px;
}

.subtext {
  margin-top: 10px;
}

.status {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(213, 170, 75, 0.35);
  background: rgba(213, 170, 75, 0.10);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(213, 170, 75, 0.18);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.85;
  }
}

.logo {
  margin-top: 6px;
  opacity: 0.9;
}

.logo img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.footer {
  width: min(920px, 100%);
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}

.footer small {
  font-size: 12px;
}
