:root {
  --color-ink: #151127;
  --color-muted: #554b66;
  --color-purple: #7a238b;
  --color-purple-strong: #5d1474;
  --color-purple-dark: #210331;
  --color-pink: #c82cca;
  --color-orange: #f0652f;
  --color-yellow: #ffd34d;
  --color-mint: #18b98f;
  --color-cyan: #32c7e8;
  --color-soft: #f5eff8;
  --color-card: #fffafd;
  --color-white: #ffffff;
  --shadow-soft: 0 16px 34px rgba(67, 28, 89, 0.14);
  --shadow-card: 0 12px 28px rgba(63, 37, 77, 0.1);
  --shadow-hot: 0 12px 26px rgba(255, 168, 38, 0.28), 0 0 0 5px rgba(255, 211, 77, 0.1);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --font-body: "Sora", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-link {
  color: var(--color-purple);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #08745c;
}

:focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--color-yellow);
  color: #211100;
  font-weight: 900;
  box-shadow: var(--shadow-hot);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 40px, 980px);
}

.block {
  position: relative;
}

.section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--color-white);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.24);
}

.brand--image {
  width: 78px;
  height: 72px;
}

.brand--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.8rem;
  font-weight: 800;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  position: relative;
  opacity: 0.92;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--color-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"],
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--color-yellow);
  opacity: 1;
  transform: translateY(-1px);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  min-height: 680px;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 34%, rgba(255, 211, 77, 0.24), transparent 25%),
    radial-gradient(circle at 15% 79%, rgba(240, 101, 47, 0.68), transparent 32%),
    linear-gradient(145deg, #230331 0%, #421052 42%, #9f3464 72%, #f0652f 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange), var(--color-pink));
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 560px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: 100%;
  padding-top: clamp(82px, 11vh, 112px);
  padding-bottom: clamp(24px, 4vh, 44px);
}

.hero__copy {
  max-width: 680px;
}

.pill,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e05de4, #ff8648);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(199, 44, 202, 0.22);
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin-top: clamp(16px, 2.4vh, 24px);
  font-size: clamp(3.25rem, 6.35vw, 5rem);
  text-wrap: balance;
  text-shadow: 0 5px 0 rgba(20, 6, 38, 0.22), 0 20px 42px rgba(0, 0, 0, 0.22);
}

.hero__meta {
  margin: clamp(16px, 2.4vh, 24px) 0 clamp(18px, 2.6vh, 26px);
  max-width: 580px;
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.13rem);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin: clamp(14px, 2vh, 20px) 0 0;
  padding: 0;
  margin-top: 2rem;
  list-style: none;
}

.hero__highlights li {
  position: relative;
  overflow: hidden;
  min-height: 82px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero__highlights li::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 48px;
  height: 48px;
  border: 10px solid rgba(255, 211, 77, 0.13);
  border-radius: 50%;
}

.hero__highlights strong {
  display: block;
  color: var(--color-yellow);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.9;
}

.hero__highlights span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 36%, rgba(255, 255, 255, 0.2));
  transform: translateX(-115%);
  transition: transform 0.35s ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(115%);
}

.button--primary {
  background: linear-gradient(135deg, var(--color-yellow), #ff9e2f 68%, #ff7145);
  color: #211100;
  box-shadow: var(--shadow-hot);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 36px rgba(255, 168, 38, 0.38), 0 0 0 7px rgba(255, 211, 77, 0.14);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(255, 211, 77, 0.8);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-yellow);
}

.button--disabled,
.button--disabled:hover,
.button--disabled:focus-visible {
  cursor: not-allowed;
  transform: none;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.button--disabled::before {
  display: none;
}

.hero__poster {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(100%, 560px);
  margin: 0;
  transform: rotate(-5deg);
}

.hero__poster::before {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: -1;
  border: 2px solid rgba(255, 211, 77, 0.35);
  border-radius: 18px;
  transform: rotate(3deg);
}

.hero__poster img {
  width: 100%;
  height: auto;
  max-height: min(70vh, 710px);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  padding: 1rem;
}

.hero__glow {
  position: absolute;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  animation: orbitFloat 18s ease-in-out infinite alternate;
}

.hero__glow--one {
  top: 105px;
  left: 50%;
  width: 72px;
  height: 72px;
  --rotate: 22deg;
  --float-x: -18px;
  --float-y: 22px;
  transform: rotate(var(--rotate));
}

.hero__glow--two {
  right: 22%;
  bottom: 130px;
  width: 42px;
  height: 42px;
  --rotate: -18deg;
  --float-x: 22px;
  --float-y: -18px;
  transform: rotate(var(--rotate));
  animation-duration: 14s;
}

.event-chip {
  display: inline-flex;
  width: fit-content;
  margin-top: clamp(14px, 2vh, 20px);
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.page-hero {
  min-height: 520px;
  overflow: hidden;
  color: var(--color-white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 82% 28%, rgba(255, 211, 77, 0.18), transparent 26%),
    linear-gradient(145deg, #230331 0%, #5d1474 50%, #f0652f 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-orange), var(--color-pink));
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
  padding: 150px 0 92px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 5px 0 rgba(20, 6, 38, 0.22), 0 20px 42px rgba(0, 0, 0, 0.22);
}

.page-hero p:not(.pill) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 700;
}

.page-hero--night {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 36%, rgba(24, 185, 143, 0.28), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(240, 101, 47, 0.54), transparent 30%),
    linear-gradient(145deg, #160224 0%, #37104d 48%, #7a238b 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

.night-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: none;
}

.night-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.soldout-banner {
  display: grid;
  gap: 4px;
  width: min(100%, 620px);
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 211, 77, 0.34);
  border-left: 5px solid var(--color-yellow);
  border-radius: 8px;
  background: rgba(21, 17, 39, 0.32);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.soldout-banner strong {
  font-weight: 900;
  text-transform: uppercase;
}

.soldout-banner span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 700;
}

.night-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  transform: rotate(2deg);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.night-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.night-hero__media img {
  aspect-ratio: 1 / 1.03;
  object-fit: cover;
  object-position: top center;
}

.schedule-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.schedule-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.schedule-nav a:hover,
.schedule-nav a:focus-visible {
  transform: translateY(-2px);
  background: var(--color-yellow);
  color: #211100;
}

.game-orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.game-piece {
  position: absolute;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-weight: 900;
  transform: rotate(var(--rotate, 18deg));
  animation: orbitFloat 13s ease-in-out infinite alternate;
}

.game-piece svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.game-piece--die {
  top: 21%;
  left: 7%;
  --rotate: 18deg;
  --float-x: 18px;
  --float-y: 16px;
}

.game-piece--die svg circle {
  fill: currentColor;
  stroke: none;
}

.game-piece--meeple {
  right: 9%;
  top: 21%;
  --rotate: -12deg;
  --float-x: -20px;
  --float-y: 14px;
  animation-duration: 15s;
}

.game-piece--meeple svg {
  fill: currentColor;
  stroke: none;
}

.game-piece--card {
  right: 17%;
  bottom: 16%;
  --rotate: 8deg;
  --float-x: 16px;
  --float-y: -22px;
  animation-duration: 17s;
}

.game-piece--token {
  top: 12%;
  right: 34%;
  border-radius: 50%;
  --rotate: 0deg;
  --float-x: 18px;
  --float-y: -20px;
  animation-duration: 19s;
}

@keyframes orbitFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }

  to {
    transform: translate3d(var(--float-x, 18px), var(--float-y, -18px), 0) rotate(calc(var(--rotate, 0deg) + 34deg));
  }
}

.section {
  padding: clamp(78px, 9vw, 118px) 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.12;
}

.section-decor--meeple {
  top: 64px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: clamp(110px, 14vw, 190px);
  color: var(--color-purple);
  transform: rotate(10deg);
}

.section-decor--meeple svg {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

.section-decor--die {
  top: 88px;
  left: max(20px, calc((100vw - var(--container)) / 2));
  width: 96px;
  height: 96px;
  border: 2px solid var(--color-purple);
  border-radius: 16px;
  transform: rotate(-11deg);
}

.section-decor--die span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-purple);
  content: "";
}

.section-decor--die span {
  top: 20px;
  left: 20px;
  box-shadow: 44px 0 0 var(--color-purple), 22px 22px 0 var(--color-purple), 0 44px 0 var(--color-purple), 44px 44px 0 var(--color-purple);
}

.section-decor--tokens {
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 70px;
  width: 150px;
  height: 90px;
}

.section-decor--tokens span {
  position: absolute;
  display: block;
  width: 78px;
  height: 78px;
  border: 12px solid var(--color-orange);
  border-radius: 50%;
}

.section-decor--tokens span:nth-child(2) {
  right: 0;
  bottom: 0;
  border-color: var(--color-purple);
}

.section-decor--route {
  top: 80px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  width: min(36vw, 420px);
  height: 120px;
  border-top: 3px dashed rgba(122, 35, 139, 0.55);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.section-decor--route::before,
.section-decor--route::after {
  content: "";
  position: absolute;
  top: -9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-purple);
}

.section-decor--route::before {
  left: 0;
}

.section-decor--route::after {
  right: 0;
  background: var(--color-mint);
}

.section--tint {
  background:
    radial-gradient(circle at top left, rgba(200, 44, 202, 0.08), transparent 32%),
    linear-gradient(180deg, #fbf7fd 0%, var(--color-soft) 100%);
}

.section-heading {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading--left {
  max-width: 720px;
  margin-inline: 0;
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7f558c;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  text-wrap: balance;
}

.section-heading p:last-child {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-weight: 600;
}

.program-page {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 211, 77, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf7fd 0%, #f5eff8 100%);
}

.schedule-day {
  scroll-margin-top: 34px;
}

.schedule-day + .schedule-day {
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid rgba(93, 20, 116, 0.12);
}

.day-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 30%, rgba(255, 211, 77, 0.2), transparent 24%),
    linear-gradient(135deg, var(--color-purple), var(--color-pink) 56%, var(--color-orange));
  color: var(--color-white);
  box-shadow: var(--shadow-card);
}

.day-banner__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.day-banner__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.day-banner p {
  margin: 0 0 4px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.day-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.schedule-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(26px, 5vw, 46px) 0;
}

.schedule-card + .schedule-card {
  border-top: 1px solid rgba(93, 20, 116, 0.12);
}

.schedule-card__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 211, 77, 0.28), transparent 28%),
    rgba(122, 35, 139, 0.1);
  color: var(--color-purple);
  font-size: 2rem;
  font-weight: 900;
}

.schedule-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-card__icon--solid svg {
  fill: currentColor;
  stroke: none;
}

.schedule-card__body {
  max-width: 920px;
}

.schedule-time {
  margin: 0 0 8px;
  color: var(--color-pink);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
}

.schedule-card h3 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.schedule-card p {
  margin: 0 0 5px;
  color: var(--color-ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.schedule-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 24px;
  color: var(--color-ink);
  font-size: 1.03rem;
}

.schedule-card li::marker {
  color: var(--color-pink);
}

.location-tag {
  display: inline-flex;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--color-ink);
  color: #ffffff !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  text-transform: uppercase;
}

.schedule-card--media {
  grid-template-columns: 92px minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
}

.schedule-card__media {
  margin: 0;
}

.schedule-card__media img {
  height: auto;
  max-height: 420px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow-card);
}

.night-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(24, 185, 143, 0.12), transparent 26%),
    linear-gradient(180deg, #fbf7fd 0%, #f5eff8 100%);
}

.night-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.night-panel,
.night-facts article,
.night-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 20, 116, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.night-panel {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 211, 77, 0.18), transparent 24%),
    linear-gradient(145deg, #ffffff, #f6fff9);
}

.night-panel h2,
.night-card h3,
.night-facts h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.94;
  text-transform: uppercase;
}

.night-panel h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.night-panel p {
  max-width: 620px;
  margin: 0 0 26px;
  color: var(--color-muted);
  font-weight: 600;
}

.night-facts {
  display: grid;
  gap: 16px;
}

.night-facts article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 18px;
  align-content: center;
  min-height: 96px;
  padding: 18px 22px;
}

.night-facts article > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--color-purple);
  color: #ffffff;
  font-weight: 900;
}

.night-facts h3 {
  align-self: end;
  font-size: 1.7rem;
}

.night-facts p,
.night-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.night-facts p {
  align-self: start;
}

.night-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.night-card {
  min-height: 260px;
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.night-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 96px;
  height: 96px;
  border: 16px solid rgba(24, 185, 143, 0.08);
  border-radius: 50%;
}

.night-card:hover,
.night-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(63, 37, 77, 0.14);
}

.night-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.night-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.night-gallery img {
  height: 220px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.night-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 462px;
  object-position: top center;
}

.night-gallery img:nth-child(4) {
  grid-row: span 2;
  height: 462px;
}

.library-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 211, 77, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf7fd 0%, #f5eff8 100%);
}

.library-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 22px;
  align-items: end;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid rgba(93, 20, 116, 0.1);
  border-radius: 8px;
  background: rgba(255, 250, 253, 0.94);
  box-shadow: var(--shadow-card);
}

.library-toolbar label {
  grid-column: 1 / -1;
  color: #694475;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.library-search {
  position: relative;
}

.library-search svg {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 22px;
  height: 22px;
  color: var(--color-purple);
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
}

.library-search input {
  width: min(100%, 620px);
  min-height: 52px;
  padding: 0 18px 0 50px;
  border: 1px solid rgba(93, 20, 116, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-ink);
  font: inherit;
  font-weight: 700;
}

.library-search input::placeholder {
  color: #81758d;
}

.library-count {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.library-grid {
  display: grid;
  gap: 22px;
}

.library-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(93, 20, 116, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 211, 77, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
}

.library-card[hidden] {
  display: none;
}

.library-card header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
}

.library-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 211, 77, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(122, 35, 139, 0.16), rgba(50, 199, 232, 0.12));
  color: var(--color-purple);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.library-card header p {
  margin: 0 0 4px;
  color: #7f558c;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.library-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.library-card header strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-purple);
  color: #ffffff;
  font-size: 0.78rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-list li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(93, 20, 116, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.game-list li.is-match {
  border-color: rgba(255, 211, 77, 0.85);
  background: #fff7cf;
}

.game-list li.is-new {
  border-color: rgba(24, 185, 143, 0.62);
  background:
    radial-gradient(circle at 96% 10%, rgba(50, 199, 232, 0.22), transparent 32%),
    linear-gradient(135deg, #f2fffb, #dff9f2);
  box-shadow: inset 0 0 0 1px rgba(24, 185, 143, 0.12);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #08745c;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.6px;
  line-height: 1;
  text-transform: uppercase;
}

.game-list li.is-new.is-match {
  border-color: rgba(255, 211, 77, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 247, 207, 0.92), rgba(223, 249, 242, 0.96));
  box-shadow:
    inset 0 0 0 2px rgba(255, 211, 77, 0.55),
    0 0 0 3px rgba(24, 185, 143, 0.14);
}

.demos-page .library-card {
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 211, 77, 0.15), transparent 22%),
    radial-gradient(circle at 8% 84%, rgba(50, 199, 232, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.8);
}

.program-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
}

.tournament-highlight {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 211, 77, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fbf7fd 100%);
}

.tournament-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(93, 20, 116, 0.1);
  border-radius: 10px;
  background:
    radial-gradient(circle at 12% 82%, rgba(24, 185, 143, 0.1), transparent 28%),
    linear-gradient(135deg, #fffafd, #f7f0fb);
  box-shadow: var(--shadow-card);
}

.tournament-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 156px;
  height: 156px;
  border: 24px solid rgba(200, 44, 202, 0.07);
  border-radius: 50%;
}

.tournament-card__content {
  position: relative;
  z-index: 1;
}

.tournament-card h2 {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.tournament-card p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
  font-weight: 650;
}

.tournament-card p + p {
  margin-top: 12px;
}

.tournament-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tournament-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-purple);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tournament-card__meta span:last-child {
  background: #fff2bf;
  color: #422705;
}

.tournament-card__media {
  position: relative;
  z-index: 1;
  margin: 0;
}

.tournament-card__media img {
  max-height: 560px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 18px 44px rgba(63, 37, 77, 0.2);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(26px, 4vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(93, 20, 116, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 112px;
  height: 112px;
  border: 18px solid rgba(200, 44, 202, 0.08);
  border-radius: 50%;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(122, 35, 139, 0.2);
  box-shadow: 0 18px 38px rgba(63, 37, 77, 0.14);
}

.feature-card--wide {
  min-height: 342px;
}

.feature-card--solid {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 211, 77, 0.28), transparent 28%),
    linear-gradient(145deg, var(--color-purple), #9a2fad);
  color: var(--color-white);
}

.feature-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 239, 249, 0.9)),
    var(--color-soft);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 211, 77, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(200, 44, 202, 0.16), rgba(50, 199, 232, 0.12));
  color: #91139c;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(200, 44, 202, 0.18), 0 10px 20px rgba(63, 37, 77, 0.09);
}

.icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--meeple {
  color: #8c189a;
}

.icon--meeple svg {
  fill: currentColor;
  stroke: none;
}

.icon--workshop {
  color: #ffd34d;
}

.icon--family {
  color: #0f9f7d;
  background:
    radial-gradient(circle at 72% 24%, rgba(47, 211, 169, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(47, 211, 169, 0.15), rgba(200, 44, 202, 0.1));
}

.icon--expo {
  color: #9a1ba3;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 211, 77, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 122, 47, 0.15), rgba(200, 44, 202, 0.12));
}

.feature-card--solid .icon {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 28%),
    rgba(255, 211, 77, 0.16);
  color: var(--color-yellow);
  box-shadow: inset 0 0 0 1px rgba(255, 211, 77, 0.22), 0 10px 20px rgba(21, 17, 39, 0.14);
}

.feature-card h3,
.info-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card p,
.info-item p,
.site-footer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.feature-card p + p {
  margin-top: 1rem;
}

.feature-alert {
  display: grid;
  gap: 4px;
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(24, 185, 143, 0.3);
  border-left: 5px solid var(--color-mint);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 18%, rgba(50, 199, 232, 0.16), transparent 32%),
    linear-gradient(135deg, #f3fffb, #e3f9f4);
  color: var(--color-ink);
}

.feature-alert strong {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.feature-alert span {
  color: #25564c;
  font-size: 0.84rem;
  font-weight: 700;
}

.feature-alert a {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  min-height: 38px;
  margin-top: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #08745c;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.feature-alert a:hover,
.feature-alert a:focus-visible {
  transform: translateY(-2px);
  background: var(--color-purple);
  box-shadow: 0 10px 22px rgba(93, 20, 116, 0.18);
}

.feature-alert--soldout {
  border-color: rgba(240, 101, 47, 0.28);
  border-left-color: var(--color-orange);
  background:
    radial-gradient(circle at 96% 18%, rgba(255, 211, 77, 0.18), transparent 32%),
    linear-gradient(135deg, #fff7ed, #fff2f5);
}

.feature-alert--soldout span {
  color: #6b3226;
}

.feature-alert--soldout a {
  background: var(--color-purple);
}

.feature-alert--soldout a:hover,
.feature-alert--soldout a:focus-visible {
  background: #08745c;
}

.info-item p + p {
  margin-top: 0.35rem;
}

.feature-card--solid p {
  color: rgba(255, 255, 255, 0.92);
}

.feature-card img {
  height: 300px;
  margin-top: 24px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(21, 17, 39, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-grid img {
  height: 236px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-grid img:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 16px 38px rgba(63, 37, 77, 0.16);
}

.gallery-grid img:nth-child(4) {
  grid-column: span 3;
  height: clamp(300px, 30vw, 420px);
}

.sponsor-group {
  display: grid;
  gap: 20px;
  justify-items: center;
  margin-top: 38px;
}

.tag {
  min-height: 24px;
  padding: 5px 16px;
  font-size: 0.62rem;
}

.tag--outline {
  background: transparent;
  border: 1px solid #8d6a98;
  color: #664271;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
}

.sponsor-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid rgba(93, 20, 116, 0.08);
  background: linear-gradient(180deg, #ffffff, #fbf6fd);
  color: #53285f;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(50, 22, 66, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sponsor-row span:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 44, 202, 0.24);
  box-shadow: 0 14px 30px rgba(50, 22, 66, 0.1);
}

.sponsor-row--featured span {
  min-width: 190px;
  min-height: 82px;
  font-size: 1rem;
  text-transform: uppercase;
}

.sponsor-row--institutional span {
  min-height: 42px;
  color: #4d465c;
  font-size: 0.78rem;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.location-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.location-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(24, 12, 32, 0.42));
  pointer-events: none;
}

.location-media img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.location-media figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  z-index: 2;
  background: transparent;
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.location-media figcaption span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(24, 12, 32, 0.32);
}

.location-media figcaption svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 88px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(93, 20, 116, 0.08);
  background: linear-gradient(180deg, #fbf7fd, var(--color-soft));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 52px;
  height: 52px;
  border: 9px solid rgba(122, 35, 139, 0.06);
  border-radius: 50%;
}

.info-item:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(63, 37, 77, 0.12);
}

.info-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 211, 77, 0.24), transparent 28%),
    #68167d;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(104, 22, 125, 0.2);
}

.info-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-item--accent .info-icon {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.22), transparent 28%),
    #088565;
}

.site-footer {
  padding: 70px 0 30px;
  background:
    radial-gradient(circle at 80% 18%, rgba(200, 44, 202, 0.18), transparent 28%),
    linear-gradient(180deg, #2a063c, var(--color-purple-dark));
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: clamp(48px, 10vw, 150px);
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand--footer {
  display: inline-flex;
  margin-bottom: 20px;
}

.brand--footer.brand--image {
  width: 112px;
  height: 104px;
}

.site-footer p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer nav,
.site-footer nav a {
  display: grid;
  gap: 8px;
}

.site-footer nav p,
.site-footer > .container > div > p {
  margin-bottom: 12px;
  color: #ddabe9;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.site-footer nav a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--color-yellow);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 211, 77, 0.24);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 32px, var(--container));
  }

  .brand--image {
    width: 62px;
    height: 58px;
  }

  .nav-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--color-white);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: none;
    place-content: center;
    gap: 24px;
    background:
      radial-gradient(circle at 70% 18%, rgba(255, 211, 77, 0.14), transparent 26%),
      rgba(42, 7, 59, 0.97);
    font-size: 1.3rem;
  }

  .main-nav ul {
    display: grid;
    gap: 24px;
    justify-items: center;
  }

  .page-hero__inner {
    padding: 120px 0 72px;
  }

  .nav-open .main-nav {
    display: grid;
  }

  .hero,
  .hero__inner {
    height: auto;
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 100px 0 42px;
  }

  .hero__poster {
    display: none;
  }

  .game-orbit,
  .hero__glow {
    display: none;
  }

  .game-piece,
  .hero__glow,
  .game-orbit {
    animation: none;
  }

  .hero__highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-grid,
  .tournament-card,
  .location-layout,
  .night-hero__inner,
  .night-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .night-hero__media {
    max-width: 520px;
    transform: none;
  }

  .night-cards,
  .night-gallery {
    grid-template-columns: 1fr;
  }

  .night-gallery img,
  .night-gallery img:first-child,
  .night-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img:nth-child(4) {
    grid-column: span 2;
  }

  .section-decor {
    display: none;
  }

  .schedule-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .schedule-card--media {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .schedule-card__media {
    grid-column: 2;
  }

  .schedule-card__icon {
    width: 64px;
    height: 64px;
    font-size: 1.55rem;
  }

  .library-toolbar {
    position: static;
    grid-template-columns: 1fr;
  }

  .library-search input {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .container--narrow {
    width: min(100% - 28px, var(--container));
  }

  .hero__inner {
    padding-top: 88px;
    padding-bottom: 22px;
  }

  .page-hero__inner {
    padding-top: 104px;
    padding-bottom: 56px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .schedule-nav a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero h1 {
    max-width: 100%;
    margin-top: 12px;
    font-size: clamp(2.25rem, 11.6vw, 3.2rem);
    overflow-wrap: break-word;
  }

  .hero__meta {
    margin: 12px 0 14px;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero__actions,
  .hero__highlights {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 100%;
    min-height: 46px;
  }

  .night-hero__actions .button {
    flex: 1 1 100%;
  }

  .hero__highlights {
    grid-template-columns: 1fr;
  }

  .hero__highlights li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 11px 16px;
  }

  .hero__highlights strong {
    font-size: 1.75rem;
  }

  .hero__highlights span {
    margin-top: 0;
    text-align: right;
  }

  .event-chip {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    padding-block: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .day-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .day-banner__icon {
    width: 58px;
    height: 58px;
  }

  .schedule-day + .schedule-day {
    margin-top: 44px;
    padding-top: 44px;
  }

  .schedule-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 0;
  }

  .schedule-card--media {
    grid-template-columns: 1fr;
  }

  .schedule-card__media {
    grid-column: auto;
  }

  .schedule-card__media img {
    max-height: 420px;
  }

  .schedule-card h3 {
    margin-bottom: 18px;
  }

  .schedule-card p,
  .schedule-card ul {
    font-size: 0.96rem;
  }

  .location-tag {
    width: 100%;
  }

  .library-card header {
    grid-template-columns: 52px 1fr;
  }

  .library-mark {
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }

  .library-card header strong {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .game-list li {
    width: 100%;
  }

  .program-grid,
  .gallery-grid,
  .night-cards,
  .night-gallery {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide {
    min-height: 0;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(4),
  .night-gallery img,
  .night-gallery img:first-child,
  .night-gallery img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 220px;
  }

  .night-panel {
    min-height: 0;
  }

  .night-facts article {
    grid-template-columns: 1fr;
  }

  .sponsor-row--featured span,
  .sponsor-row span {
    width: 100%;
  }

  .location-media img {
    min-height: 260px;
  }

  .location-media figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .info-item {
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero__inner {
    padding-top: 76px;
    padding-bottom: 24px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(3.15rem, 5.55vw, 5.7rem);
  }

  .hero__meta {
    margin: 14px 0 16px;
    font-size: 1rem;
  }

  .button {
    min-height: 46px;
    padding-inline: 30px;
  }

  .event-chip {
    margin-top: 12px;
    padding-block: 8px;
  }

  .hero__highlights {
    margin-top: 12px;
  }

  .hero__highlights li {
    min-height: 72px;
    padding: 13px 16px;
  }

  .hero__highlights strong {
    font-size: 1.72rem;
  }

  .hero__poster img {
    max-height: min(73vh, 610px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover,
  .button:focus-visible,
  .feature-card:hover,
  .feature-card:focus-within,
  .gallery-grid img:hover,
  .sponsor-row span:hover,
  .info-item:hover,
  .socials a:hover,
  .socials a:focus-visible {
    transform: none;
  }

  .game-piece,
  .hero__glow,
  .game-orbit {
    animation: none;
  }
}
