/* Basic, clean coming soon styling */
:root {
  --bg: #0b1220;
  --card: #101827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #60a5fa;
}
* { box-sizing: border-box }
html, body { height: 100% }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% -10%, #1f2937 0%, transparent 60%),
              radial-gradient(1200px 800px at 80% 110%, #1d4ed8 0%, transparent 60%),
              var(--bg);
  display: grid;
  place-items: center;
}
.container {
  max-width: 800px;
  width: 100%;
  padding: 48px 24px;
  text-align: center;
}
.hero .logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.9;
}
.hero h1 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}
.tagline {
  margin: 0 0 32px;
  color: var(--muted);
}
.countdown {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 22px;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.unit { min-width: 88px }
.num {
  font-variant-numeric: tabular-nums;
  font-size: 40px;
  font-weight: 800;
}
.label {
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.sep { opacity: 0.35; font-size: 28px; }

.status {
  margin: 20px 0 0;
  color: var(--accent);
  min-height: 1.5em;
}

.footer {
  margin-top: 36px;
}
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.2s ease;
}
.social a:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06) }
.social svg { width: 18px; height: 18px; fill: currentColor }
.rights {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 420px) {
  .unit { min-width: 64px }
  .num { font-size: 32px }
}