:root {
  --bg: #000000;
  --pink: #e83e8c;
  --magenta: #c026d3;
  --purple: #7c3aed;
  --silver: #e8e8f0;
  --muted: #a89bb8;
  --live: #eb0400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--silver);
}

body {
  font-family: "Cinzel", Georgia, serif;
  background: var(--bg);
  overflow-x: hidden;
}

.page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #000;
  border-bottom: 1px solid rgba(192, 38, 211, 0.25);
  animation: bannerIn 0.9s ease-out both;
}

.banner {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  aspect-ratio: 1000 / 200;
  object-fit: cover;
  object-position: center;
}

main {
  width: min(1000px, 100%);
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
  flex: 1;
}

.tagline {
  font-family: "Orbitron", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  animation: rise 0.8s ease-out 0.15s both;
}

.brand {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 10%, #f0abfc 40%, #c026d3 70%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(192, 38, 211, 0.25);
  animation: rise 0.9s ease-out 0.25s both;
}

.sub {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 0.35rem;
  margin-bottom: 1.75rem;
  opacity: 0.9;
  animation: rise 0.9s ease-out 0.35s both;
}

.sub::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0.85rem auto 0;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.lead {
  max-width: 34rem;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  animation: rise 0.9s ease-out 0.45s both;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  animation: rise 0.9s ease-out 0.55s both;
}

.btn {
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(232, 62, 140, 0.45);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(232, 62, 140, 0.2));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
  box-shadow: 0 0 24px rgba(192, 38, 211, 0.35);
}

.btn.twitch:hover {
  border-color: #bf94ff;
}

.btn.twitch.is-live {
  border-color: var(--live);
  background: linear-gradient(135deg, rgba(235, 4, 0, 0.45), rgba(124, 58, 237, 0.35));
  box-shadow: 0 0 22px rgba(235, 4, 0, 0.35);
}

.btn.tiktok:hover {
  border-color: #fe2c55;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
}

.btn.twitch.is-live .live-dot {
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
  animation: pulse 1.4s ease-in-out infinite;
}

.live-badge {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--live);
  padding: 0.15rem 0.4rem;
}

.btn.twitch.is-live .live-badge {
  display: inline-block;
}

footer {
  width: min(1000px, 100%);
  padding: 1rem 1.25rem 1.75rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(168, 155, 184, 0.55);
}

@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
