:root {
  --bg: #fffdf8;
  --bg-accent: #f6f3ff;
  --text: #1f1a17;
  --muted: #665c53;
  --panel: rgba(255, 255, 255, 0.92);
  --line: rgba(31, 26, 23, 0.1);
  --primary: #bf5b2c;
  --primary-dark: #8a3c16;
  --shadow: 0 24px 60px rgba(76, 49, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 91, 146, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(83, 202, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 194, 66, 0.18), transparent 26%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 100%);
  display: flex;
  flex-direction: column;
}

.page-shell {
  width: min(1080px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 4rem 0 2rem;
  flex: 1;
}

.hero,
.info-card {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 32px;
}

.eyebrow,
.card-label {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.5rem, 10vw, 7rem);
}

.rainbow-title {
  max-width: 100%;
  background: linear-gradient(
    90deg,
    #ff5b92 0%,
    #ff8a3d 18%,
    #f2c94c 36%,
    #57c785 54%,
    #56ccf2 72%,
    #9b6bff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.lead,
.info-card p {
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  margin: 1.5rem 0 0;
}

.status-note {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary-dark);
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--primary);
  color: #fffaf3;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--primary-dark);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
}

.info-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 28px;
}

.info-card p {
  margin: 0;
}

.game-banner {
  margin-top: 1.5rem;
}

.game-banner-link {
  display: block;
  cursor: pointer;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.game-banner-link:hover,
.game-banner-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(76, 49, 24, 0.18);
}

.game-banner-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer {
  width: min(1080px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  opacity: 0.68;
}

.site-footer a {
  color: inherit;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary-dark);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 1.5rem, 1080px);
    padding-top: 1.5rem;
  }

  .hero {
    border-radius: 24px;
  }

  .info-card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .game-banner-link {
    border-radius: 22px;
  }

  .site-footer {
    width: min(100% - 1.5rem, 1080px);
  }

  h1 {
    max-width: 100%;
  }

  .button {
    width: 100%;
  }
}
