:root {
  --gold: #d4a017;
  --silver: #c0c4cc;
  --cyan: #5fb3d6;
  --bg: #0a0f1c;
  --ink: #f5f5f7;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: radial-gradient(ellipse at center, #11182c 0%, var(--bg) 70%);
  color: var(--ink);
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.stage {
  width: 100%;
  max-width: 1820px;
  padding: clamp(12px, 3vw, 48px);
}

.banner {
  position: relative;
  margin: 0;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  aspect-ratio: 1774 / 887;
  background: linear-gradient(135deg, #1a2236 0%, #0a0f1c 100%);
}

.banner__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.banner__img--missing {
  visibility: hidden;
}

/* Bottom strip in the banner artwork holds the three game name plates.
   The plates are NOT equal thirds: the icon centers sit at 24/50/75%, so
   the visual dividers fall at 37% and 63%. Vertically there's a brief
   dark gap between the bottom of "RISE TO POWER" and the actual plate
   rectangles; the plate texture lights back up around y=75% of the
   banner. Anchor each hotspot to those edges so the hover bar sits on
   the plate itself, not in the gap above it. */
.hotspot {
  position: absolute;
  top: 73.5%;
  bottom: 0;
  text-decoration: none;
  color: var(--ink);
  cursor: default;
  transition: box-shadow 180ms ease, background-color 180ms ease;
  outline: none;
}

.hotspot--classic { left: 0;   width: 37%; }
.hotspot--neo     { left: 37%; width: 26%; }
.hotspot--sirius  { left: 63%; width: 37%; }

.hotspot--classic.hotspot--active { color: var(--gold); }
.hotspot--neo.hotspot--active     { color: var(--silver); }
.hotspot--sirius.hotspot--active  { color: var(--cyan); }

.hotspot--active {
  cursor: pointer;
}

.hotspot--active:hover,
.hotspot--active:focus-visible {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 3px 0 0 currentColor,
    inset 0 -90px 90px -50px color-mix(in srgb, currentColor 35%, transparent);
}

.hotspot--disabled {
  cursor: not-allowed;
  background-color: rgba(0, 0, 0, 0.55);
}

.hotspot__status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.55em 1.2em;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--ink);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  display: none;
}

.hotspot--disabled .hotspot__status {
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
