:root {
  --blue-deep: #0a1f4d;
  --blue: #1652d8;
  --blue-glow: #3d8bff;
  --red-deep: #4a0808;
  --red: #d6230f;
  --red-glow: #ff5a2c;
  --gold: #ffc227;
  --gold-bright: #ffe066;
  --ink: #0a0a12;
  --paper: #fff7e6;
  --muted: rgba(255, 247, 230, 0.72);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 22%, rgba(61, 139, 255, 0.55), transparent 42%),
    radial-gradient(circle at 82% 28%, rgba(255, 90, 44, 0.55), transparent 42%),
    linear-gradient(160deg, var(--blue-deep) 0%, #120a2e 50%, var(--red-deep) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ---- electric backdrop ---- */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bolt {
  position: absolute;
  top: -20%;
  width: 60vmax;
  height: 140vmax;
  filter: blur(60px);
  opacity: 0.4;
  animation: pulse 6s ease-in-out infinite;
}
.bolt--blue {
  left: -25vmax;
  background: radial-gradient(ellipse at center, var(--blue-glow), transparent 60%);
}
.bolt--red {
  right: -25vmax;
  background: radial-gradient(ellipse at center, var(--red-glow), transparent 60%);
  animation-delay: 3s;
}
@keyframes pulse {
  0%, 100% { opacity: 0.28; transform: scale(1); }
  50%      { opacity: 0.5;  transform: scale(1.12); }
}

/* ---- hero ---- */
.hero {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

.hero__brand { display: flex; justify-content: center; }
.wordmark {
  width: min(420px, 78vw);
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}

.kicker {
  font-family: "Bangers", cursive;
  letter-spacing: 0.06em;
  font-size: clamp(1.1rem, 3.4vw, 1.6rem);
  color: var(--gold-bright);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  margin-top: 0.25rem;
}

.headline {
  font-family: "Bangers", cursive;
  font-weight: 400;
  line-height: 1.02;
  font-size: clamp(1.5rem, 6.4vw, 4rem);
  white-space: nowrap;       /* keep "Nobody gets a peaceful moment." on one line */
  letter-spacing: 0.01em;
  margin: 0.6rem auto 0;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.35), 0 14px 30px rgba(0, 0, 0, 0.45);
}
.hl {
  color: var(--gold);
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.25);
}

.subhead {
  max-width: 600px;
  margin: 1.1rem auto 0;
  font-size: clamp(1rem, 2.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--muted);
}
.subhead strong { color: var(--paper); }

.promise {
  font-family: "Bangers", cursive;
  letter-spacing: 0.04em;
  font-size: clamp(1.3rem, 4.2vw, 1.9rem);
  color: var(--gold-bright);
  margin: 1rem auto 0;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}

/* ---- notify ---- */
.notify {
  margin: 2.2rem auto 0;
  max-width: 540px;
  background: rgba(8, 10, 28, 0.55);
  border: 1px solid rgba(255, 194, 39, 0.35);
  border-radius: 18px;
  padding: 1.6rem 1.4rem 1.3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.notify__title {
  font-family: "Bangers", cursive;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 2rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
}
.notify__form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.notify__input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.notify__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 194, 39, 0.3);
}
.notify__btn {
  flex: 0 0 auto;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: "Bangers", cursive;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 5px 0 #b07d00, 0 12px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.notify__btn:hover { transform: translateY(-1px); }
.notify__btn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 #b07d00, 0 6px 12px rgba(0, 0, 0, 0.35);
}
.notify__btn:disabled { opacity: 0.6; cursor: default; transform: none; }

.notify__msg {
  min-height: 1.2em;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.notify__msg.is-error   { color: var(--red-glow); }
.notify__msg.is-success { color: var(--gold-bright); }

.notify__fineprint {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: rgba(255, 247, 230, 0.5);
}

/* ---- beats ---- */
.beats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2.6rem auto 0;
  text-align: left;
}
.beat {
  background: rgba(8, 10, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1.3rem;
}
.beat__num {
  font-family: "Bangers", cursive;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.beat h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.beat p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---- meet the mascot ---- */
.meet {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 1.5rem auto 0;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.meet__badge {
  width: min(240px, 58vw);
  height: auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 194, 39, 0.6);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  animation: float 5s ease-in-out infinite;
}
.meet__copy {
  flex: 1 1 320px;
  text-align: left;
}
.meet__eyebrow {
  font-family: "Bangers", cursive;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--gold-bright);
}
.meet__title {
  font-family: "Bangers", cursive;
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.02em;
  margin: 0.2rem 0 0.6rem;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}
.meet__body {
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 620px) {
  .meet__copy { text-align: center; }
}

/* ---- gameplay peek ---- */
.peek {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem 1rem;
}
.peek__frame {
  max-width: 320px;
  margin: 0;
  text-align: center;
}
.peek__frame img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 3px solid rgba(255, 194, 39, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}
.peek__frame figcaption {
  margin-top: 0.85rem;
  font-family: "Bangers", cursive;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--gold-bright);
}

/* ---- footer ---- */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1.5rem 3rem;
  color: rgba(255, 247, 230, 0.55);
  font-size: 0.88rem;
}
.footer__badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .wordmark, .bolt { animation: none; }
}
