:root {
  --bg1: #0f0c29;
  --bg2: #302b63;
  --bg3: #24243e;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
  --text: #f5f3ff;
  --muted: rgba(245, 243, 255, 0.78);
  --accent: #ffb4a2;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.12), transparent 35%),
    linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
}

body {
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: 100%;
  max-width: 760px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,180,162,0.18), transparent 45%);
  transform: translate(30%, -10%);
  pointer-events: none;
}

.badge {
  margin-top: 20px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  width: 128px;
  height: 128px;
  margin: 28px auto 18px;
  display: block;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subtitle {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.divider {
  width: 120px;
  height: 1px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.coming-soon {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.note {
  margin: 10px 0 0;
  color: var(--muted);
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #1a1322;
  font-weight: 700;
  background: linear-gradient(135deg, #ffd6c9, #ffb4a2);
  box-shadow: 0 10px 30px rgba(255, 180, 162, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 180, 162, 0.34);
}

@media (max-width: 600px) {
  .card {
    padding: 36px 22px;
    border-radius: 22px;
  }
}
