:root {
  color-scheme: light dark;
  --bg: #0b0f19;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #60a5fa;
  --border: rgba(255,255,255,.08);
  --glow: rgba(96,165,250,.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at top, #172554 0%, var(--bg) 55%);
  color: var(--text);
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 640px;
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 28px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  position: relative;
}

.floaty {
  position: absolute;
  inset: auto;
  pointer-events: none;
  opacity: .9;
  filter: drop-shadow(0 0 18px var(--glow));
  animation: drift 6s ease-in-out infinite;
}

.planet {
  top: -18px;
  left: 24px;
  font-size: 2.2rem;
  animation-delay: .2s;
}

.ufo {
  top: 18px;
  right: 20px;
  font-size: 2rem;
  animation-delay: 1s;
}

.star {
  bottom: 18px;
  left: 30px;
  font-size: 1.3rem;
  animation-delay: .6s;
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

h1 {
  margin: 0 0 40px;
  font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.08em;
  text-shadow: 0 0 26px rgba(96,165,250,.25);
}

.straightline {
    margin: 0 0 3px;
}

p {
  margin: 0 auto 22px;
  max-width: 46ch;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}
a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #08111f;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(96,165,250,.25);
}
a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.joke {
  margin-top: 4px;
  font-size: .95rem;
color: var(--muted);
}
table {
  width: 80%; 
  margin: 0 auto;
  text-align: center;
  border-collapse: collapse;
  font-family: system-ui, sans-serif;
  color: #e5e7eb;
  background: #111827;
}
th, td {
  border: 1px solid rgba(255,255,255,.15);
  padding: 12px 14px;
  text-align: right;
}
th {
  background: #172554;
  color: #60a5fa;
  text-align: center;
}
.tiny {
  margin-top: 16px;
  font-size: .92rem;
  color: var(--muted);
}