:root {
  --bg-top: #0b1220;
  --bg-mid: #0f0f12;
  --bg-bottom: #09090b;

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);

  --blue-core: #0074c7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(
    180deg,
    var(--bg-top) 0%,
    var(--bg-mid) 60%,
    var(--bg-bottom) 100%
  );
}

/* Layout */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

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

/* Logo */
.logo {
  display: block;
  width: min(280px, 70%);
  height: auto;
  margin: 0 auto 28px;
}

/* Header-style title (match your app) */
h1 {
  margin: 0 0 12px;
  font-family: 'Rubik Dirt', cursive;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--blue-core);
}

/* Subtitle */
.tagline {
  margin-top: 16px;
  font-size: 1.2rem;
  color: rgba(0, 182, 255, 0.6);
  letter-spacing: 0.08em;
}