:root {
  --bg: #050b14;
  --panel: rgba(12, 22, 39, 0.9);
  --line: rgba(145, 203, 255, 0.18);
  --text: #f7fbff;
  --muted: rgba(226, 238, 255, 0.72);
  --blue: #00d2ff;
  --gold: #ffd98b;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 210, 255, 0.18) 0%, rgba(0, 210, 255, 0) 30%),
    radial-gradient(circle at 84% 14%, rgba(255, 217, 139, 0.14) 0%, rgba(255, 217, 139, 0) 28%),
    linear-gradient(135deg, #08111f 0%, #050b14 56%, #071322 100%);
}

.page {
  width: min(980px, calc(100% - 28px));
}

.topbar,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(5, 11, 20, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.nav a,
.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(145, 203, 255, 0.22);
  background: rgba(18, 33, 58, 0.84);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.panel {
  padding: 28px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 62ch;
}

.status {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 255, 0.18);
  background: linear-gradient(180deg, rgba(19, 36, 58, 0.88) 0%, rgba(11, 22, 39, 0.92) 100%);
}

.status strong {
  display: block;
  margin-bottom: 6px;
  color: #f7fbff;
  font-size: 1rem;
}

.status span {
  color: var(--muted);
}

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

.actions a.primary {
  color: #08111f;
  border-color: rgba(255, 217, 139, 0.48);
  background: linear-gradient(180deg, #ffd98b 0%, #f2c35d 100%);
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel {
    padding: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .actions a {
    width: 100%;
  }
}
