@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #0c0f0a;
  --bg-accent: #12170f;
  --card: rgba(13, 16, 12, 0.86);
  --border: rgba(178, 255, 80, 0.2);
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.68);
  --neon: #b2ff50;
  --neon-soft: rgba(178, 255, 80, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, rgba(178, 255, 80, 0.12), transparent 45%),
    linear-gradient(140deg, #0c0f0a, #10140d 55%, #0b0e09);
  color: var(--text);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background-image: linear-gradient(transparent 95%, rgba(178, 255, 80, 0.08) 95%),
    linear-gradient(90deg, transparent 95%, rgba(178, 255, 80, 0.08) 95%);
  background-size: 48px 48px;
}

.card {
  width: min(520px, 100%);
  padding: 32px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo {
  width: 64px;
  height: 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.36em;
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.title {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  color: var(--neon);
}

.description {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  background: rgba(18, 23, 15, 0.75);
  border-radius: 16px;
  border: 1px solid rgba(178, 255, 80, 0.16);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--muted);
}

.actions {
  display: grid;
  gap: 12px;
}

.button {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.primary {
  background: var(--neon);
  color: #0b0e09;
  box-shadow: 0 10px 24px rgba(178, 255, 80, 0.2);
}

.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(244, 244, 241, 0.2);
}

.button:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.footnote {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.home {
  color: var(--neon);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.home:hover {
  text-decoration: underline;
}

.noscript {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

@media (min-width: 640px) {
  .actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
