/* Rumble Seat Games — night-drive palette.
   Deep navy sky, amber road paint, cream headlight text. */

:root {
  --sky: #14213d;
  --asphalt: #1b263b;
  --amber: #fca311;
  --cream: #f6f1e7;
  --dim: #a8b2c8;
}

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

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

body {
  background: linear-gradient(180deg, #0d1526 0%, var(--sky) 55%, #22345c 100%);
  color: var(--cream);
  font-family: 'Overpass', 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  justify-content: center;
  padding: 8vh 1.5rem 3rem;
  text-align: center;
}

main { max-width: 38rem; width: 100%; }

/* A little stretch of two-lane blacktop above the wordmark: an asphalt bar
   with a dashed amber center line, drawn with a repeating gradient. */
.road {
  height: 1.4rem;
  border-radius: 0.7rem;
  background: var(--asphalt);
  display: flex;
  align-items: center;
  margin: 0 auto 2.2rem;
  max-width: 22rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.road span {
  display: block;
  height: 3px;
  width: 100%;
  margin: 0 1rem;
  background: repeating-linear-gradient(
    90deg,
    var(--amber) 0 18px,
    transparent 18px 34px
  );
  border-radius: 2px;
}

h1 {
  font-family: 'Alfa Slab One', 'Overpass', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  line-height: 1.1;
  color: var(--amber);
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.subtitle {
  margin-top: 0.8rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.rule {
  margin: 2.2rem auto 0;
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dim);
}

.rule strong { color: var(--cream); white-space: nowrap; }

.coming {
  margin: 2.8rem auto 0;
  max-width: 30rem;
  border: 1px dashed rgba(252, 163, 17, 0.45);
  border-radius: 0.9rem;
  padding: 1.3rem 1.5rem 1.4rem;
  background: rgba(0, 0, 0, 0.18);
}

.coming h2 {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.55rem;
}

.coming p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--dim);
}

.site-foot {
  margin-top: 3.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.site-foot__item {
  font-size: 0.78rem;
  color: rgba(246, 241, 231, 0.45);
}
