:root {
  color-scheme: dark;
  --bg: #090713;
  --blue: #0099ff;
  --blue-light: #55c7ff;
  --blue-deep: #005eff;
  --text: #f8f7ff;
  --muted: #aaa7bd;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 153, 255, .18), transparent 31rem),
    radial-gradient(circle at 87% 78%, rgba(0, 94, 255, .16), transparent 34rem),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(rgba(0, 153, 255, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 153, 255, .25) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.page-shell {
  width: 100%;
  min-height: calc(100vh - 66px);
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem 2rem;
}

.hero {
  position: relative;
  width: min(760px, 100%);
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 8%;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(0, 94, 255, .12), rgba(0, 153, 255, .15), rgba(85, 199, 255, .1));
  filter: blur(42px);
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .32em;
}

.eyebrow span {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-light));
}

.eyebrow span:last-child {
  background: linear-gradient(90deg, var(--blue-deep), transparent);
}

h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 1.25rem auto .65rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(5rem, 18vw, 10.5rem);
  font-weight: 900;
  line-height: .84;
  letter-spacing: -.035em;
}

.logo-main {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--text);
  -webkit-text-stroke: 2px rgba(255, 255, 255, .92);
  text-shadow:
    -5px 0 0 rgba(85, 199, 255, .95),
    5px 0 0 rgba(0, 94, 255, .9),
    0 0 28px rgba(0, 153, 255, .7);
}

.logo-shadow {
  position: absolute;
  inset: 8px 0 auto;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue-deep);
  opacity: .48;
  filter: blur(1px);
}

.coming-soon {
  margin: 1.55rem 0 .85rem;
  color: var(--blue);
  font-family: "Courier New", monospace;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  font-weight: 800;
  letter-spacing: .22em;
  text-shadow: 0 0 16px rgba(0, 153, 255, .65);
}

.blink { animation: blink 1.05s steps(1) infinite; }

.description {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  line-height: 1.7;
}

.twitch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .72rem;
  min-height: 52px;
  padding: .85rem 1.2rem;
  border: 1px solid rgba(0, 153, 255, .72);
  border-radius: 9px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(85, 199, 255, .14), rgba(0, 153, 255, .2), rgba(0, 94, 255, .18));
  box-shadow: 0 0 24px rgba(0, 153, 255, .15), inset 0 0 20px rgba(255, 255, 255, .035);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.twitch-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.twitch-button:hover,
.twitch-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--blue-light);
  box-shadow: 0 0 30px rgba(0, 153, 255, .32), inset 0 0 20px rgba(255, 255, 255, .06);
  outline: none;
}

footer {
  padding: 1rem 1.25rem 1.5rem;
  color: #777386;
  font-size: .8rem;
  text-align: center;
  letter-spacing: .04em;
}

@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 520px) {
  .page-shell { padding-top: 2rem; }
  .eyebrow { font-size: .7rem; letter-spacing: .22em; }
  .eyebrow span { width: 24px; }
  .logo-main { -webkit-text-stroke-width: 1px; }
  .coming-soon { letter-spacing: .12em; }
  .description { max-width: 19rem; }
  footer { line-height: 1.5; }
}

@media (prefers-reduced-motion: reduce) {
  .blink { animation: none; }
  .twitch-button { transition: none; }
}
