:root {
  --bg: #090b12;
  --bg-soft: #111521;
  --paper: #f7f1e8;
  --paper-2: #fff9f0;
  --ink: #101018;
  --muted: #62606b;
  --line: rgba(255, 255, 255, 0.18);
  --cyan: #51d8df;
  --red: #f05f4f;
  --orange: #f2a444;
  --violet: #5b3aa8;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--bg);
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body.has-bike-cursor,
  body.has-bike-cursor a,
  body.has-bike-cursor button,
  body.has-bike-cursor summary,
  body.has-bike-cursor input,
  body.has-bike-cursor textarea,
  body.has-bike-cursor select,
  body.has-bike-cursor label {
    cursor: none;
  }
}

.bike-cursor {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 148px;
  height: 111px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0);
  transition: opacity 0.16s ease;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

.bike-cursor.is-visible {
  opacity: 1;
}

.bike-cursor-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

.bike-cursor .cursor-wheel {
  --wheel-size: 52px;
  position: absolute;
  width: var(--wheel-size);
  height: var(--wheel-size);
  margin: calc(var(--wheel-size) / -2) 0 0 calc(var(--wheel-size) / -2);
  border-radius: 50%;
  opacity: 0;
  transform-origin: center;
  background:
    radial-gradient(circle, transparent 0 17%, rgba(7, 9, 16, 0.7) 18% 23%, transparent 24%),
    conic-gradient(
      from 0deg,
      transparent 0 7deg,
      rgba(7, 9, 16, 0.82) 8deg 11deg,
      transparent 12deg 52deg,
      rgba(7, 9, 16, 0.82) 53deg 56deg,
      transparent 57deg 97deg,
      rgba(7, 9, 16, 0.82) 98deg 101deg,
      transparent 102deg 142deg,
      rgba(7, 9, 16, 0.82) 143deg 146deg,
      transparent 147deg 187deg,
      rgba(7, 9, 16, 0.82) 188deg 191deg,
      transparent 192deg 232deg,
      rgba(7, 9, 16, 0.82) 233deg 236deg,
      transparent 237deg 277deg,
      rgba(7, 9, 16, 0.82) 278deg 281deg,
      transparent 282deg 322deg,
      rgba(7, 9, 16, 0.82) 323deg 326deg,
      transparent 327deg 360deg
    );
}

.bike-cursor .cursor-wheel-back {
  left: 41px;
  top: 79px;
}

.bike-cursor .cursor-wheel-front {
  left: 114px;
  top: 74px;
}

.bike-cursor.is-clicking .cursor-wheel {
  opacity: 0.5;
  animation: bike-wheel-spin 0.42s linear 2;
}

.bike-cursor.is-clicking .bike-cursor-art {
  animation: bike-rider-bounce 0.22s ease 2;
}

@keyframes bike-wheel-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes bike-rider-bounce {
  50% {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .bike-cursor {
    display: none;
  }
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 30;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--ink);
  background: var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 34px;
  background: rgba(9, 11, 18, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch a {
  min-height: 32px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.language-switch a.is-active {
  color: var(--bg);
  background: var(--cyan);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.88), rgba(9, 11, 18, 0.48) 48%, rgba(9, 11, 18, 0.18)),
    linear-gradient(0deg, rgba(9, 11, 18, 0.94), rgba(9, 11, 18, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 70px;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 5rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.8rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

p {
  line-height: 1.65;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.hero-facts span,
.hero-facts a,
.tag,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts a {
  text-decoration: none;
}

.hero-facts a:hover,
.hero-facts a:focus-visible {
  color: var(--cyan);
  outline: none;
}

.site-audio {
  position: fixed;
  z-index: 22;
  right: 18px;
  bottom: 18px;
}

.audio-toggle {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: var(--shadow);
  font-weight: 900;
  cursor: pointer;
}

.audio-toggle.is-playing {
  background: var(--orange);
}

.audio-toggle.is-stopped {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  z-index: 21;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.16);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: var(--shadow);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.mushroom-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 38px;
}

.mushroom-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.22));
}

.mushroom-cap,
.mushroom-stem {
  fill: var(--paper);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 4;
}

.mushroom-cap {
  fill: #f8f2df;
}

.mushroom-stem {
  fill: #fff8ea;
}

.mushroom-gills {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--cyan);
  outline: none;
  transform: translateY(-50%) scale(1.06);
}

.hero-actions,
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--bg);
  background: var(--cyan);
}

.button.secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section {
  padding: 96px 0;
  background: var(--bg);
}

.section[id] {
  scroll-margin-top: 92px;
}

.section.light {
  color: var(--ink);
  background: var(--paper);
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.intro-section {
  background: linear-gradient(135deg, #101423, #141829 48%, #1d1820);
}

.intro-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

.info-grid,
.workshop-grid,
.artist-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.workshop-card,
.notice-panel,
.feature-list article,
.game-info-grid article {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card {
  min-height: 240px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(16, 16, 24, 0.08);
}

.info-card p,
.workshop-card p,
.notice-panel p,
.feature-list p,
.game-info-grid p {
  color: var(--muted);
}

.info-card a {
  font-weight: 800;
  color: var(--violet);
}

.detail-stack {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.detail-panel {
  padding: 26px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-panel h3 {
  font-size: 1.45rem;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
}

.detail-panel a {
  color: var(--violet);
  font-weight: 800;
}

.check-list,
.menu-list {
  display: grid;
  gap: 9px;
  padding-left: 1.2rem;
  margin: 14px 0 0;
}

.menu-list {
  margin-top: 12px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.contact-actions .button {
  color: var(--ink);
}

.tag {
  min-height: 28px;
  margin-bottom: 18px;
  color: var(--ink);
  border-color: rgba(16, 16, 24, 0.12);
  background: rgba(81, 216, 223, 0.18);
  font-size: 0.86rem;
}

.food-section {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.92), rgba(9, 11, 18, 0.66)),
    url("assets/img/lotos.png") center right / contain no-repeat,
    #101423;
}

.food-section p {
  color: rgba(255, 255, 255, 0.76);
}

.aftermovie-section {
  color: var(--paper);
  background: #070910;
}

.aftermovie-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #000;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.program-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.notice-panel {
  min-height: 210px;
  padding: 24px;
  color: var(--paper);
  background: #151827;
}

.notice-panel .status {
  color: var(--ink);
  border: 0;
  background: var(--orange);
}

.workshop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workshop-timetable {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.workshop-timetable div {
  padding: 18px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.3), rgba(242, 164, 68, 0.16)),
    var(--paper-2);
  box-shadow: var(--shadow);
}

.workshop-timetable span,
.workshop-timetable strong,
.workshop-timetable small {
  display: block;
}

.workshop-timetable span {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.workshop-timetable strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.workshop-timetable small {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.workshop-timetable p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.artist-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
}

.subsection-title {
  margin: 36px 0 18px;
  color: var(--ink);
  font-size: 1.45rem;
}

.workshop-card {
  min-height: 190px;
  padding: 22px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(16, 16, 24, 0.08);
}

.artist-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.artist-card > p:not(.artist-links) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.highlight-card {
  background: rgba(81, 216, 223, 0.18);
}

.artist-photo {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  border: 2px solid rgba(91, 58, 168, 0.34);
  border-radius: 8px;
  background: #101423;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-photo-placeholder {
  display: grid;
  place-items: center;
  min-height: 0;
  color: var(--ink);
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.24), rgba(242, 164, 68, 0.18)),
    var(--paper-2);
}

.artist-photo-placeholder span {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 249, 240, 0.74);
  font-weight: 900;
  text-transform: uppercase;
}

.artist-grid-soon {
  margin-top: -12px;
  margin-bottom: 34px;
}

.coming-soon-card {
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.12), rgba(242, 164, 68, 0.12)),
    var(--paper-2);
}

.coming-soon-simple {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coming-soon-simple .artist-photo {
  margin-bottom: 0;
}

.coming-stack-card {
  display: flex;
  min-height: auto;
  opacity: 0.72;
}

.coming-stack {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.coming-stack span {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 3;
  top: 15%;
  left: 6%;
  width: 88%;
  height: 32%;
  border: 2px dashed rgba(16, 16, 24, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.13), rgba(242, 164, 68, 0.11)),
    rgba(255, 249, 240, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.coming-stack span:nth-child(2) {
  z-index: 2;
  transform: translate(18px, -10px);
  background:
    linear-gradient(135deg, rgba(242, 164, 68, 0.13), rgba(91, 58, 168, 0.09)),
    rgba(255, 249, 240, 0.66);
}

.coming-stack span:nth-child(3) {
  z-index: 1;
  transform: translate(36px, -20px);
  background:
    linear-gradient(135deg, rgba(91, 58, 168, 0.11), rgba(81, 216, 223, 0.11)),
    rgba(255, 249, 240, 0.6);
}

.coming-stack strong {
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 249, 240, 0.8);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.coming-stack span:not(:first-child) strong {
  display: none;
}

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.artist-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.14);
  border-radius: 8px;
  background: rgba(81, 216, 223, 0.18);
  font-weight: 800;
  text-decoration: none;
}

.artist-full {
  max-height: 0;
  overflow: hidden;
  color: rgba(16, 16, 24, 0.76);
  transition: max-height 220ms ease;
}

.artist-full p {
  margin: 12px 0 0;
}

.artist-card:hover .artist-full,
.artist-card:focus-within .artist-full,
.artist-card.is-expanded .artist-full {
  max-height: 560px;
}

.artist-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  color: var(--ink);
  border-radius: 8px;
  background: rgba(81, 216, 223, 0.18);
  font-weight: 900;
  text-decoration: none;
}

.map-section {
  background:
    linear-gradient(90deg, rgba(9, 11, 18, 0.94), rgba(9, 11, 18, 0.68)),
    url("assets/img/hero-square.jpg") center / cover;
}

.map-section p {
  color: rgba(255, 255, 255, 0.78);
}

.map-tabs {
  display: inline-flex;
  gap: 6px;
  margin: 14px 0 16px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.map-tabs button {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--paper);
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.map-tabs button.is-active {
  color: var(--ink);
  background: var(--cyan);
}

.map-tab-panel {
  display: none;
}

.map-tab-panel.is-active {
  display: block;
}

.festival-map-panel {
  min-height: 260px;
  padding: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.map-actions {
  align-content: start;
  margin: 22px 0 0;
}

.trip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.trip-list a {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 58px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12px 13px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transform-origin: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.trip-list strong {
  display: block;
  font-weight: 900;
  line-height: 1.2;
}

.trip-list span {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0;
  transition:
    max-height 0.24s ease,
    opacity 0.18s ease,
    padding-top 0.18s ease;
}

.trip-list a:hover,
.trip-list a:focus-visible {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  outline: none;
  transform: translateY(-3px) scale(1.03);
  z-index: 2;
}

.trip-list a:hover span,
.trip-list a:focus-visible span {
  max-height: 120px;
  padding-top: 8px;
  opacity: 1;
}

.route-panel {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 11, 18, 0.68);
}

.route-panel h3 {
  color: var(--paper);
}

.route-groups {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.route-group {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.route-group h4 {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: 1.02rem;
}

.route-group p {
  margin-bottom: 12px;
}

.route-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.route-link-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(81, 216, 223, 0.16);
  color: var(--paper);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.route-link-grid a:hover,
.route-link-grid a:focus-visible {
  background: rgba(81, 216, 223, 0.28);
  outline: none;
}

.game-section {
  position: relative;
}

.game-heading {
  max-width: 920px;
}

.game-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}

.game-copy {
  padding: 22px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.game-copy p {
  color: var(--muted);
}

.game-feature-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(16, 16, 24, 0.1);
  border-radius: 8px;
  background: #111421;
  box-shadow: var(--shadow);
}

.game-feature-card figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.game-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 12px;
  margin-top: 12px;
  align-items: stretch;
}

.game-presale-card {
  padding: 20px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.game-presale-card span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.game-presale-card img {
  width: min(220px, 100%);
  margin-top: 12px;
  border: 8px solid #fff;
  border-radius: 8px;
}

.game-preview-button,
.game-passport-page {
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #070910;
  cursor: pointer;
}

.game-preview-button img,
.game-passport-page img {
  display: block;
  width: 100%;
  height: auto;
}

.game-map-card {
  display: flex;
  flex-direction: column;
}

.game-map-card .game-preview-button {
  display: grid;
  flex: 1 1 auto;
  min-height: 320px;
  aspect-ratio: 1272 / 900;
  place-items: center;
}

.game-map-card .game-preview-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.game-preview-button:focus-visible,
.game-passport-page:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.game-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.game-info-grid article {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid rgba(16, 16, 24, 0.08);
}

.game-info-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--bg);
  background: var(--cyan);
  border-radius: 50%;
  font-weight: 900;
}

.game-info-grid p {
  grid-column: 2;
}

.game-archive-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  color: var(--paper);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(241, 90, 29, 0.9), rgba(8, 13, 24, 0.94)),
    #111421;
  box-shadow: var(--shadow);
}

.game-archive-panel h3 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.game-archive-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.game-archive-panel .section-label {
  margin-bottom: 10px;
  color: var(--cyan);
}

.winner-years {
  display: grid;
  gap: 10px;
  min-width: 170px;
}

.winner-years a {
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  color: var(--bg);
  border-radius: 999px;
  background: var(--cyan);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.game-winners-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.game-winners-list article {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  color: var(--ink);
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  background: var(--paper-2);
}

.game-winners-list span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 68px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--paper);
  border-radius: 999px;
  background: var(--ink);
  font-weight: 900;
}

.game-passport-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.game-passport-grid-compact {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.gallery-section {
  background: #0b0f18;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--bg-soft);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.02);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.archive-section {
  background:
    linear-gradient(180deg, rgba(9, 11, 18, 0.98), rgba(17, 20, 33, 0.98)),
    #0b0f18;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.archive-card {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--bg-soft);
  cursor: pointer;
  text-align: left;
}

.archive-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 180ms ease;
}

.archive-card strong,
.archive-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.archive-card strong {
  bottom: 42px;
  font-size: 2rem;
}

.archive-card span {
  bottom: 16px;
  font-weight: 800;
}

.archive-card:hover img,
.archive-card:focus-visible img {
  transform: scale(1.04);
}

.archive-card.is-active {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.archive-browser {
  margin-top: 20px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(90, 236, 214, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.archive-browser[hidden] {
  display: none;
}

.archive-browser-header {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.archive-browser-header h3 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
}

.archive-browser-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.archive-browser-close {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  cursor: pointer;
}

.archive-browser-close:hover,
.archive-browser-close:focus-visible {
  background: var(--cyan);
  color: #061016;
}

.archive-thumbs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.archive-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 160ms ease;
}

.archive-thumb:hover img,
.archive-thumb:focus-visible img {
  transform: scale(1.04);
}

.archive-thumb:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.thanks-section {
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(7, 9, 16, 0.96), rgba(17, 20, 33, 0.98)),
    #0b0f18;
}

.thanks-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.thanks-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 245px;
  padding: 24px;
  color: var(--paper);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.1), rgba(242, 164, 68, 0.08)),
    #111421;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.thanks-message-card {
  cursor: default;
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.18), rgba(242, 164, 68, 0.12)),
    #101827;
}

.thanks-card:hover,
.thanks-card:focus-visible {
  border-color: rgba(81, 216, 223, 0.72);
  background:
    linear-gradient(135deg, rgba(81, 216, 223, 0.18), rgba(242, 164, 68, 0.13)),
    #121728;
  transform: translateY(-2px);
}

.thanks-card:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.thanks-card span {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thanks-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  max-width: 100%;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.thanks-card small {
  display: block;
  margin: -4px 0 12px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thanks-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.thanks-card::after {
  content: "Otevřít medailonek";
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

html[lang="en"] .thanks-card::after {
  content: "Open medallion";
}

.thanks-message-card::after {
  content: "";
  display: none;
}

.thanks-languages {
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 0.92rem;
}

.patrons-section {
  color: var(--ink);
  background: #f6f4ef;
}

.patrons-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.patron-callout,
.patron-year {
  padding: 24px;
  border: 1px solid rgba(16, 16, 24, 0.08);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.patron-callout h3,
.patron-year h3 {
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.patron-callout p,
.patron-year p {
  color: var(--muted);
}

.patron-callout .check-list {
  margin-top: 16px;
}

.bank-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--bg);
  border-radius: 8px;
  background: var(--cyan);
}

.bank-box span {
  font-weight: 800;
  text-transform: uppercase;
}

.bank-box strong {
  font-size: clamp(1.15rem, 3vw, 1.7rem);
}

.bank-box img {
  width: min(220px, 100%);
  margin-top: 12px;
  border: 8px solid #fff;
  border-radius: 8px;
}

.bank-box small {
  flex-basis: 100%;
  color: rgba(16, 16, 24, 0.72);
}

.patron-years {
  display: grid;
  gap: 14px;
}

.patron-highlight {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(241, 90, 29, 0.95), rgba(17, 20, 33, 0.96)),
    #111421;
}

.patron-highlight p {
  color: rgba(255, 255, 255, 0.76);
}

.patron-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.patron-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 16, 24, 0.1);
}

.patron-highlight .patron-list li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.patron-list li:last-child {
  border-bottom: 0;
}

.patron-list span {
  font-weight: 800;
}

.patron-list strong {
  white-space: nowrap;
  font-weight: 900;
}

.patron-year-total {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 16px;
  color: #101018;
  border: 2px solid rgba(16, 16, 24, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 164, 68, 0.92), rgba(81, 216, 223, 0.52)),
    var(--orange);
  box-shadow: 0 14px 32px rgba(242, 164, 68, 0.18);
}

.patron-year-total span {
  font-weight: 900;
}

.patron-year-total strong {
  white-space: nowrap;
  font-size: 1.15rem;
  font-weight: 950;
}

.patron-year-empty {
  border-style: dashed;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: rgba(255, 255, 255, 0.78);
  background: #070910;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 6px 0 0;
}

.site-footer p a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.site-footer p a:hover,
.site-footer p a:focus-visible {
  color: var(--cyan);
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  font-weight: 800;
  text-decoration: none;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.lightbox.lightbox-scroll {
  background: #000;
  border-radius: 8px;
  overflow: auto;
}

.lightbox.lightbox-scroll img {
  max-height: none;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(9, 11, 18, 0.88);
  cursor: pointer;
  font-size: 1.5rem;
}

@media (max-width: 920px) {
  .site-header {
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
    color: var(--bg);
    border-color: transparent;
    background: var(--cyan);
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(9, 11, 18, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .language-switch {
    width: 100%;
    margin: 4px 0 0;
  }

  .language-switch a {
    display: inline-flex;
    justify-content: center;
    width: 50%;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .split,
  .game-layout,
  .game-showcase,
  .info-grid,
  .workshop-grid,
  .workshop-timetable,
  .artist-grid,
  .program-layout,
  .gallery-grid,
  .archive-grid,
  .thanks-grid,
  .patrons-layout {
    grid-template-columns: 1fr;
  }

  .game-info-grid,
  .game-winners-list,
  .thanks-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-map-card .game-preview-button {
    min-height: 260px;
  }

  .game-archive-panel {
    grid-template-columns: 1fr;
  }

  .archive-browser-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .winner-years {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-passport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .archive-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero-content {
    padding: 108px 0 54px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section {
    padding: 70px 0;
  }

  .hero-facts,
  .hero-actions,
  .map-actions {
    flex-direction: column;
  }

  .button,
  .hero-facts span,
  .hero-facts a {
    width: 100%;
  }

  .game-info-grid,
  .game-winners-list,
  .thanks-directory,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .game-map-card .game-preview-button {
    min-height: 220px;
  }

  .game-map-card .game-preview-button img {
    height: auto;
    max-width: 100%;
  }

  .game-passport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .winner-years {
    grid-template-columns: 1fr;
  }

  .game-winners-list article,
  .patron-list li {
    align-items: flex-start;
    flex-direction: column;
  }

  .thanks-card {
    min-height: 220px;
    padding: 20px;
  }

  .route-link-grid {
    grid-template-columns: 1fr;
  }

  .trip-list {
    grid-template-columns: 1fr;
  }

  .trip-list span {
    max-height: none;
    padding-top: 8px;
    opacity: 1;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .site-audio {
    right: 14px;
    bottom: 14px;
  }

  .back-to-top {
    z-index: 24;
    top: auto;
    right: 14px;
    bottom: 86px;
    width: 52px;
    height: 52px;
    border-width: 2px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
    transform: none;
  }

  .back-to-top .mushroom-arrow {
    width: 38px;
    height: 42px;
  }

  .back-to-top:hover,
  .back-to-top:focus-visible {
    transform: scale(1.06);
  }
}
