:root {
  color-scheme: dark;
  --bg: #161310;
  --ink: #f1e6cf;
  --muted: #b8aa92;
  --ring: rgba(255, 244, 219, .92);
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: radial-gradient(circle at 50% 0%, #2b241e 0, var(--bg) 58%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

.page {
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 24px 18px 40px;
}

.intro {
  max-width: 920px;
  margin: 0 auto 20px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: #c9b697;
  font-size: .85rem;
  letter-spacing: .16em;
}

h1 {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.next-release {
  margin-top: 10px !important;
  color: #e2d3b9 !important;
  font-style: italic;
}

.calendar-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background: #0d0c0b;
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.calendar-stage {
  position: relative;
  width: 100%;
  line-height: 0;
}

.calendar-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 2.55%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: auto;
}

.hotspot > a,
.hotspot > span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0;
}

.hotspot.available > a {
  cursor: pointer;
  outline: 2px solid transparent;
  background: rgba(122, 33, 25, .04);
  transition: background .16s ease, outline-color .16s ease, transform .16s ease;
}

.hotspot.available > a:hover,
.hotspot.available > a:focus-visible {
  background: rgba(122, 33, 25, .24);
  outline-color: var(--ring);
  transform: scale(1.13);
}

.hotspot.waiting > span { cursor: default; }
.hotspot.missing-url > span { cursor: help; }

.status {
  min-height: 1.4em;
  margin: 14px auto 0;
  max-width: 1000px;
  text-align: center;
  color: var(--muted);
}

.footer {
  margin-top: 18px;
  text-align: center;
  color: #8f8371;
  font-size: .9rem;
}

@media (max-width: 720px) {
  .page { padding-inline: 8px; }
  .hotspot { width: 3.5%; }
  .intro { padding-inline: 8px; }
}