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

body {
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at center, #0b1a33 0%, #081226 100%);
  color: white;
  height: 100vh;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.card {
  background: rgba(17, 24, 39, 0.85);
  border: 1px solid rgba(30, 41, 59, 0.6);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 420px;
  text-align: center;

  backdrop-filter: blur(10px);

  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(34, 197, 94, 0.05);
}

h1 {
  color: #22c55e;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.launch {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 28px;
}

.links {
  font-size: 0.85rem;
  color: #64748b;
}

.links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.links a:hover {
  color: white;
}

.links span {
  margin: 0 8px;
}
