:root {
  --bg: #070607;
  --bg-soft: #0f0b12;
  --ink: #f7efe4;
  --muted: rgba(247, 239, 228, 0.68);
  --faint: rgba(247, 239, 228, 0.42);
  --line: rgba(247, 239, 228, 0.14);
  --gold: #d7ad65;
  --violet: #7f3fe0;
  --paper: #f7efe4;
  --paper-ink: #120d16;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --button-primary-bg: #d7ad65;
  --button-secondary-bg: #17131a;
  --button-primary-text: #15100b;
  --button-secondary-text: #f7efe4;
  --button-hover-bg: #f0cb85;
  --button-border: #6f6252;
  --button-general-bg: #d7ad65;
  --button-general-text: #080808;
  --button-ticket-bg: #d7ad65;
  --button-ticket-text: #080808;
  --site-accent: #d7ad65;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.auth-links {
  display: grid;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.auth-links a { color: var(--gold); }
.auth-links .auth-create-button { color: var(--ink); text-align: center; }

.auth-language { width: 82px; margin-left: auto; }

.privacy-note a,
.privacy-page a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

[role="status"][data-state="error"] { color: #ff8f8f; }
[role="status"][data-state="success"] { color: #8fe3ad; }

.privacy-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.privacy-page > header { margin-bottom: 56px; }
.privacy-page h1 { margin: 8px 0 16px; font-size: clamp(2.4rem, 7vw, 5rem); letter-spacing: 0; }
.privacy-page section { padding: 28px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.privacy-page h2 { margin: 0 0 12px; font-size: 1.35rem; letter-spacing: 0; }
.privacy-page p,
.privacy-page li { color: var(--muted); line-height: 1.75; }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(247, 239, 228, 0.12);
  background: #030304;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.brand,
.nav-links,
.actions,
.header-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-links,
.footer-links {
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.header-ticket-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 7px;
  color: #06110a;
  background: #16a34a;
  font-weight: 950;
}

.header-actions {
  gap: 10px;
}

.language-select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 10px;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.08);
  font-weight: 950;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.hero,
.ticket-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 94vh;
  overflow: hidden;
}

.ticket-hero {
  min-height: 66vh;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 34%, rgba(127, 63, 224, 0.24), transparent 30%),
    linear-gradient(90deg, rgba(7, 6, 7, 0.94), rgba(7, 6, 7, 0.62) 48%, rgba(7, 6, 7, 0.22)),
    linear-gradient(0deg, rgba(7, 6, 7, 0.94), rgba(7, 6, 7, 0.08) 56%);
}

.hero-inner,
.ticket-hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  padding: 140px clamp(20px, 6vw, 76px) 86px;
}

.ticket-hero-content {
  width: min(860px, 100%);
  padding-bottom: 70px;
}

.hero-mark-wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 22px;
  animation: markEntrance 900ms ease both;
}

.hero-mark {
  position: relative;
  z-index: 1;
  width: clamp(118px, 18vw, 220px);
  filter: drop-shadow(0 0 22px rgba(215, 173, 101, 0.24));
  animation: markFloat 5200ms ease-in-out infinite;
}

.mark-ring {
  position: absolute;
  inset: -18%;
  border: 1px solid rgba(215, 173, 101, 0.24);
  border-radius: 50%;
  opacity: 0.75;
  animation: markPulse 3600ms ease-in-out infinite;
}

.eyebrow,
.section-kicker,
.ticket-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 9vw, 8.2rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.lead,
.text-stack p,
.ticket-focus p,
.crowdfunding p,
.ticket-hero-content p,
.claim-summary p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(215, 173, 101, 0.14);
}

.button.primary {
  background: var(--gold);
  color: #15100b;
}

.button.secondary,
.button.secondary-dark,
.button.ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(247, 239, 228, 0.06);
}

.large-button {
  min-height: 58px;
  padding-inline: 28px;
}

.top-actions {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.top-action {
  min-height: clamp(150px, 18vw, 230px);
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(26px, 5vw, 58px);
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 173, 101, 0.2), transparent 34%),
    #0b080c;
  transition: transform 180ms ease, background 180ms ease;
}

.top-action:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 82% 14%, rgba(215, 173, 101, 0.3), transparent 34%),
    #100b12;
}

.top-action span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.top-action strong {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 5.3rem);
  font-weight: 500;
  line-height: 0.95;
}

.about-action strong {
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b080c;
}

.info-strip div {
  min-height: 112px;
  padding: 26px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.info-strip span,
dt {
  display: block;
  margin-bottom: 8px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip strong,
dd {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  font-weight: 900;
}

.countdown-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 6vw, 74px) clamp(20px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background: #050405;
}

.countdown-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.countdown div {
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  background: rgba(247, 239, 228, 0.045);
}

.countdown strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.countdown span {
  margin-top: 8px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(68px, 9vw, 122px) clamp(20px, 6vw, 76px);
}

.split,
.updates,
.ticket-claim {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.intro-world,
.about-section {
  background: var(--bg-soft);
}

.intro-world,
.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.intro-world {
  padding-top: clamp(52px, 7vw, 88px);
  padding-bottom: clamp(52px, 7vw, 88px);
}

.intro-world-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  line-height: 1.12;
}

.intro-world-copy {
  max-width: 680px;
  gap: 14px;
}

.intro-world-copy > p:not(.intro-slogan) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  color: var(--gold);
  font-weight: 950;
  border-bottom: 1px solid rgba(215, 173, 101, 0.5);
}

.event-row {
  display: grid;
  grid-template-columns: 110px minmax(280px, 1fr) auto;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.045);
}

.dynamic-home-event {
  grid-template-columns: 160px 110px minmax(260px, 1fr) auto;
}

.event-row-image {
  width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.event-access-status {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
}

.event-date {
  display: grid;
  justify-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.event-date span {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.event-date strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
}

.event-row h3 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.event-row p {
  margin-bottom: 6px;
  color: var(--muted);
}

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

.public-event-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.045);
}

.public-event-card .text-link {
  justify-self: end;
}

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

.gallery-grid article {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #09070a;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.gallery-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--ink);
  font-weight: 900;
}

.public-event-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}

.event-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #9dffb3;
  background: rgba(22, 163, 74, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-status.is-cancelled {
  color: #ffb4a8;
  background: rgba(220, 38, 38, 0.16);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.cards-section,
.upcoming-section,
.ticket-claim {
  background:
    radial-gradient(circle at 90% 0%, rgba(127, 63, 224, 0.14), transparent 34%),
    #09070a;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.clean-cards,
.claim-facts {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.clean-cards {
  grid-template-columns: repeat(3, 1fr);
}

.clean-cards article,
.claim-facts div {
  background: rgba(247, 239, 228, 0.045);
}

.clean-cards article {
  min-height: 250px;
  padding: clamp(24px, 3vw, 34px);
  transition: transform 180ms ease, background 180ms ease;
}

.clean-cards article:hover {
  transform: translateY(-4px);
  background: rgba(247, 239, 228, 0.07);
}

.clean-cards span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
}

.clean-cards p {
  color: var(--muted);
}

.ticket-focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #0f0b12;
}

.ticket-focus > div {
  max-width: 760px;
}

.crowdfunding {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(300px, 760px);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  background: var(--paper);
  color: var(--paper-ink);
}

.crowdfunding .section-kicker {
  color: var(--violet);
}

.crowdfunding p {
  color: rgba(18, 13, 22, 0.72);
}

.crowdfunding img {
  border-radius: 8px;
  background: #111;
  box-shadow: 0 20px 60px rgba(18, 13, 22, 0.16);
}

.simple-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.simple-list li {
  position: relative;
  padding-left: 24px;
  color: var(--paper-ink);
  font-weight: 850;
}

.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}

.kvk {
  margin-bottom: 28px;
  color: rgba(18, 13, 22, 0.58) !important;
  font-size: 0.95rem !important;
  font-weight: 850;
}

.updates,
.account-section {
  background: #070607;
}

.account-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.account-section p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.signup-form,
.account-form,
.claim-form {
  display: grid;
  gap: 16px;
}

.account-form,
.claim-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.055);
  box-shadow: var(--shadow);
}

.signup-form {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  align-items: end;
}

.signup-form label,
.account-form label,
.claim-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}

.signup-form input,
.account-form input,
.claim-form input,
.claim-form select {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.08);
  font: inherit;
}

.signup-form input:focus,
.account-form input:focus,
.claim-form input:focus,
.claim-form select:focus {
  outline: 3px solid rgba(215, 173, 101, 0.22);
  border-color: var(--gold);
}

.checkbox-line {
  grid-template-columns: auto 1fr !important;
  align-items: center;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
}

.form-status,
.account-status,
.claim-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 850;
}

.claim-facts {
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0;
}

.claim-facts div {
  padding: 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050405;
}

.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes markEntrance {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes markFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes markPulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

.about-page [data-about-language="en"] { display: none; }
html[lang="en"] .about-page [data-about-language="nl"] { display: none; }
html[lang="en"] .about-page [data-about-language="en"] { display: block; }
[data-content-language="en"] { display: none; }
html[lang="en"] [data-content-language="nl"] { display: none; }
html[lang="en"] [data-content-language="en"] { display: block; }

.lineup-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 84px auto 80px;
  display: grid;
  gap: 22px;
}
.lineup-empty {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid rgba(215, 173, 101, .28);
  background: rgba(255, 255, 255, .035);
  text-align: center;
}
.lineup-empty h1,.lineup-empty h2 { font-size: clamp(1.25rem, 3.8vw, 1.8rem); }
.lineup-event-hero {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  border: 1px solid rgba(215,173,101,.28);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
  padding: clamp(16px, 4vw, 28px);
  box-shadow: 0 22px 80px rgba(0,0,0,.22);
}
.lineup-event-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.lineup-event-hero h1 {
  margin: 0;
  font-size: clamp(1.45rem, 3.4vw, 2.15rem);
  line-height: 1.12;
}
.lineup-event-hero p {
  max-width: 680px;
  font-size: .95rem;
  line-height: 1.62;
}
.lineup-event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.lineup-event-facts span {
  border: 1px solid rgba(215,173,101,.22);
  color: var(--muted);
  padding: 7px 10px;
  background: rgba(0,0,0,.22);
  font-weight: 800;
}
.lineup-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 10px;
  width: min(100%, 360px);
  margin: 24px 0 4px;
  padding: 5px;
  border: 1px solid rgba(215,173,101,.22);
  border-radius: 8px;
  background: rgba(0,0,0,.28);
}
.lineup-tabs button {
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 900;
  cursor: pointer;
}
.lineup-tabs button:hover,
.lineup-tabs button:focus-visible {
  color: var(--gold);
  border-color: rgba(215,173,101,.4);
  outline: none;
}
.lineup-tabs button.is-active {
  background: linear-gradient(180deg, #e2bd75, var(--gold));
  border-color: rgba(215,173,101,.72);
  color: #15100b;
  box-shadow: 0 0 22px rgba(215,173,101,.12);
}
.lineup-tab-panel { display: grid; gap: 22px; }
.lineup-tab-panel.is-hidden { display: none; }
.lineup-day,.timetable-day {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2.4vw, 22px);
  border: 1px solid rgba(215, 173, 101, .22);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.lineup-day header,.timetable-day h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 14px;
}
.lineup-page .compact-hero h1 { font-size: clamp(1.75rem, 4vw, 2.7rem); }
.lineup-page .compact-hero p:not(.section-kicker) {
  max-width: 620px;
  font-size: .98rem;
  line-height: 1.65;
}
.lineup-day h2,.timetable-day h2 { margin: 0; font-size: clamp(1rem, 2.2vw, 1.3rem); }
.lineup-day time,.timetable-day time { color: var(--gold); font-weight: 900; }
.lineup-event-meta { display: grid; gap: 5px; justify-items: end; color: var(--muted); font-weight: 800; }
.lineup-items { display: grid; gap: 14px; }
.lineup-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(0,0,0,.22);
}
.lineup-card img {
  width: 116px;
  aspect-ratio: 1;
  object-fit: cover;
  background: rgba(255,255,255,.035);
}
.lineup-time { color: var(--gold); font-size: .88rem; font-weight: 950; letter-spacing: .04em; }
.lineup-card h3 { margin: 5px 0; font-size: 1.02rem; }
.lineup-meta { margin: 0 0 7px; color: var(--muted); font-size: .9rem; font-weight: 800; }
.timetable-table { display: grid; border-top: 1px solid rgba(215,173,101,.18); }
.timetable-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 150px;
  gap: 16px;
  padding: 14px 2px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: center;
}
.timetable-row:last-child { border-bottom: 0; }
.timetable-row strong { color: var(--gold); font-size: .9rem; }
.timetable-row span { color: var(--text); font-size: .95rem; font-weight: 850; }
.timetable-row small { color: var(--muted); font-size: .86rem; font-weight: 800; }

.ticket-success-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(215, 173, 101, .12), transparent 34rem), #070707;
}
.ticket-success-shell {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 10vw, 110px) 0;
}
.ticket-success-card {
  border: 1px solid rgba(215, 173, 101, .32);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  padding: clamp(20px, 4vw, 36px);
  text-align: center;
}
.ticket-success-logo {
  width: min(92px, 26vw);
  margin: 0 auto 16px;
  display: block;
}
.ticket-success-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 6vw, 2.65rem);
}
.ticket-success-card p {
  max-width: 640px;
  margin: 12px auto;
  color: var(--muted);
  line-height: 1.7;
}
.ticket-success-code {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px !important;
  padding: 10px 14px;
  border: 1px solid rgba(215, 173, 101, .3);
  color: var(--ink) !important;
  background: rgba(215, 173, 101, .08);
}
.ticket-success-note {
  margin: 28px auto;
  max-width: 650px;
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(0,0,0,.24);
  text-align: left;
}
.ticket-success-details {
  margin: 18px 0;
  text-align: left;
  border: 1px solid rgba(215,173,101,.18);
  background: rgba(0,0,0,.18);
  padding: 16px;
}
.ticket-success-details h2 { margin: 0 0 12px; font-size: 1rem; color: var(--gold); }
.ticket-success-details dl { margin: 0; display: grid; gap: 10px; }
.ticket-success-details dl div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 8px; }
.ticket-success-details dl div:last-child { border-bottom: 0; padding-bottom: 0; }
.ticket-success-details dt { color: var(--muted); font-weight: 800; }
.ticket-success-details dd { margin: 0; color: var(--text); font-weight: 900; text-align: right; }
.ticket-success-note h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.ticket-success-slogan {
  color: var(--gold) !important;
  font-family: Georgia, serif;
  font-size: 1.15rem;
}
.ticket-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 620px) {
  .lineup-shell { width: min(100% - 24px, 1120px); margin-top: 74px; }
  .lineup-event-hero { grid-template-columns: 1fr; }
  .lineup-event-hero img { max-height: 220px; }
  .lineup-tabs { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .lineup-day header { display: grid; align-items: start; }
  .lineup-event-meta { justify-items: start; }
  .lineup-card { grid-template-columns: 1fr; padding: 12px; }
  .lineup-card img { width: 100%; max-height: 220px; aspect-ratio: 16 / 10; }
  .timetable-table { gap: 10px; border-top: 0; }
  .timetable-row { grid-template-columns: 1fr; gap: 5px; padding: 14px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
  .ticket-success-details dl div { display: grid; gap: 4px; }
  .ticket-success-details dd { text-align: left; }
  .ticket-success-actions { display: grid; }
}

.maintenance-page {
  min-height: 100dvh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #000000;
  color: #f7efe4;
  font-family: var(--font-body, Arial, sans-serif);
  overflow: hidden;
}
.maintenance-shell {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
}
.maintenance-shell::before {
  content: "";
  position: absolute;
  width: min(220px, 48vw);
  height: 1px;
  top: calc(50% + 2.15rem);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(215, 173, 101, 0.72), rgba(144, 93, 196, 0.42), transparent);
  box-shadow: 0 0 18px rgba(215, 173, 101, 0.12);
}
.maintenance-shell p {
  position: relative;
  margin: 0;
  color: #f8f5ef;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
.maintenance-footer {
  display: flex;
  justify-content: center;
  padding: 1.25rem 1rem 1.4rem;
}
.maintenance-footer a {
  color: rgba(247, 239, 228, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.maintenance-footer a:hover,
.maintenance-footer a:focus-visible {
  color: #e2bb70;
  text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.site-footer p {
  margin: 0 0 4px;
  color: var(--faint);
  font-size: 0.92rem;
}

/* Homepage event experience */
.home-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: clamp(16px, 3vw, 38px);
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(16px);
}

.home-header .nav-links {
  justify-self: start;
}

.home-header .premium-brand {
  justify-self: end;
  transform-origin: center;
  transition: transform 260ms ease, filter 260ms ease;
}

.premium-brand:hover {
  transform: scale(1.045);
  filter: drop-shadow(0 0 14px rgba(215, 173, 101, 0.48));
}

.premium-brand.is-activated {
  animation: premiumBrandClick 520ms ease;
}

.home-header .header-ticket-button {
  min-width: 150px;
  min-height: 52px;
  padding-inline: 30px;
  color: #08040c;
  background: #d7ad65;
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 8px 28px rgba(215,173,101,.28);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-header .header-ticket-button:hover {
  transform: translateY(-2px);
  background: #f0cb85;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 12px 38px rgba(215,173,101,.42);
}

.hero {
  min-height: 92svh;
  max-height: 980px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  animation: heroPlaceholder 16s ease-in-out infinite alternate;
}

.hero .hero-shade {
  background:
    linear-gradient(90deg, rgba(5,4,7,.92), rgba(5,4,7,.55) 48%, rgba(5,4,7,.24)),
    linear-gradient(0deg, rgba(5,4,7,.98), transparent 54%, rgba(5,4,7,.28));
}

.hero .hero-inner {
  max-width: 820px;
  padding-bottom: clamp(54px, 8vh, 94px);
}

.hero .lead {
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.footer-socials {
  display: grid;
  gap: 10px;
}

.footer-socials > strong {
  color: var(--ink);
  font-size: .78rem;
  text-transform: uppercase;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 800;
}

.footer-socials a:hover {
  color: var(--ink);
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 239, 228, 0.2);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.05);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-icon-instagram svg {
  fill: none;
}

.social-icon .social-icon-cutout {
  fill: var(--bg);
  stroke: var(--bg);
}

@keyframes premiumBrandClick {
  0%, 100% { transform: scale(1); filter: none; }
  45% { transform: scale(.96); filter: drop-shadow(0 0 20px rgba(215,173,101,.72)); }
}

@keyframes heroPlaceholder {
  from { transform: scale(1.01); }
  to { transform: scale(1.075); }
}

@media (max-width: 760px) {
  .home-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .home-header .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .home-header .header-actions {
    grid-column: 1;
    grid-row: 1;
  }

  .home-header .premium-brand {
    grid-column: 2;
    grid-row: 1;
  }

  .home-header .header-ticket-button {
    min-width: 122px;
    min-height: 42px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 89svh;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .footer-links {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

/* Program page */
.program-content {
  min-height: 100vh;
  padding: clamp(126px, 15vw, 170px) clamp(18px, 6vw, 76px) clamp(72px, 9vw, 112px);
  background: radial-gradient(circle at 82% 5%, rgba(127, 63, 224, 0.14), transparent 30%), var(--bg);
}

.program-heading {
  width: min(700px, 100%);
  margin-bottom: clamp(32px, 5vw, 54px);
}

.program-heading h1 {
  margin: 8px 0 12px;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: 0;
}

.program-heading > p:last-child {
  color: var(--muted);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 20px;
}

.program-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.045);
  transition: transform 220ms ease, border-color 220ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 173, 101, 0.42);
}

.program-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.program-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.program-card-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card-status strong {
  color: var(--gold);
}

.program-card h2 {
  margin: 8px 0 4px;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  letter-spacing: 0;
}

.program-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.program-info-button {
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid rgba(215, 173, 101, 0.55);
  border-radius: 6px;
  color: var(--gold);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.program-info-button:hover {
  color: #120d16;
  background: var(--gold);
}

.program-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
}

.program-card-actions .program-info-button,
.program-card-actions .button {
  flex: 1 1 130px;
  min-height: 46px;
  margin: 0;
}

.program-card-actions .is-disabled {
  pointer-events: none;
  opacity: 0.62;
}

.program-card.is-cancelled {
  opacity: 0.68;
}

.program-dialog {
  width: min(850px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border: 1px solid rgba(247, 239, 228, 0.18);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #0b090c;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.72);
}

.program-dialog::backdrop {
  background: rgba(2, 2, 3, 0.82);
  backdrop-filter: blur(7px);
}

.program-dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
}

.program-dialog-inner > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.program-dialog-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 5vw, 48px);
}

.program-dialog-copy h2 {
  margin: 8px 0 18px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

.program-dialog-facts {
  display: grid;
  gap: 7px;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 800;
}

.program-dialog-copy > p:not(.section-kicker) {
  flex: 1;
  color: var(--muted);
  line-height: 1.75;
}

.program-dialog-copy .button {
  margin-top: 24px;
}

.program-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(7, 6, 7, 0.8);
  font-size: 1.7rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .program-content {
    padding: 104px 14px 70px;
  }

  .program-heading h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

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

  .program-dialog-inner {
    grid-template-columns: 1fr;
  }

  .program-dialog-inner > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .program-dialog-copy {
    padding: 24px 18px;
  }
}

/* Shared public navigation */
.site-header.public-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 3vw, 40px);
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(3, 3, 4, 0.9);
  backdrop-filter: blur(16px);
}

.public-header .brand {
  min-width: 0;
  justify-self: start;
  transform-origin: left center;
  transition: transform 260ms ease, filter 260ms ease;
}

.public-header .premium-brand:hover {
  transform: scale(1.045);
  filter: drop-shadow(0 0 14px rgba(215, 173, 101, 0.48));
}

.public-header .premium-brand.is-activated {
  animation: premiumBrandClick 520ms ease;
}

.public-primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 22px);
}

.public-primary-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 200ms ease, text-shadow 200ms ease;
}

.public-primary-nav a:hover {
  color: var(--ink);
  text-shadow: 0 0 16px rgba(215, 173, 101, 0.42);
}

.public-header-action {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.public-menu-toggle {
  display: none;
}

.public-header .header-ticket-button {
  min-width: 156px;
  min-height: 52px;
  padding: 0 30px;
  color: #08040c;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14), 0 8px 30px rgba(215, 173, 101, 0.3);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.public-header .header-ticket-button:hover {
  transform: translateY(-2px) scale(1.025);
  background: #f0cb85;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 14px 40px rgba(215, 173, 101, 0.45);
}

.login-page .unified-login {
  padding-top: 118px;
}

@media (max-width: 820px) {
  .site-header.public-header {
    grid-template-columns: auto minmax(42px, 1fr) auto;
    gap: 8px;
    min-height: 66px;
    padding: 9px 10px;
  }

  .public-header .brand span {
    display: none;
  }

  .public-header .brand img {
    width: 44px;
    height: 44px;
  }

  .public-menu-toggle {
    grid-column: 2;
    justify-self: center;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: rgba(247, 239, 228, 0.06);
    cursor: pointer;
  }

  .public-menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .public-header.menu-open .public-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .public-header.menu-open .public-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .public-header.menu-open .public-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .public-primary-nav {
    position: absolute;
    inset: 100% 10px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(7, 6, 7, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  }

  .public-header.menu-open .public-primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .public-primary-nav a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
  }

  .public-primary-nav a:last-child {
    border-bottom: 0;
  }

  .public-header-action {
    grid-column: 3;
    gap: 6px;
  }

  .public-header .language-select {
    width: 54px;
    min-height: 42px;
    padding-inline: 7px;
  }

  .public-header .header-ticket-button {
    min-width: 92px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .login-page .unified-login {
    padding: 90px 16px 24px;
  }
}

@media (max-width: 360px) {
  .site-header.public-header {
    grid-template-columns: 44px minmax(36px, 1fr) auto;
    gap: 5px;
  }

  .public-header .header-ticket-button {
    min-width: 76px;
    padding-inline: 8px;
    font-size: 0.72rem;
  }

  .public-header .language-select {
    width: 48px;
    padding-inline: 5px;
    font-size: 0.74rem;
  }
}

/* Simplified ticket marketplace */
.ticket-marketplace {
  min-height: 100vh;
  padding: clamp(126px, 15vw, 170px) clamp(18px, 6vw, 76px) clamp(72px, 9vw, 112px);
  background:
    radial-gradient(circle at 75% 5%, rgba(127, 63, 224, 0.15), transparent 30%),
    #070607;
}

.ticket-marketplace-head {
  width: min(680px, 100%);
  margin-bottom: clamp(32px, 5vw, 54px);
}

.ticket-marketplace-head h1 {
  margin: 8px 0 12px;
  font-size: clamp(3rem, 7vw, 6.3rem);
  letter-spacing: 0;
}

.ticket-marketplace-head > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.ticket-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.ticket-event-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(247, 239, 228, 0.16);
  border-radius: 8px;
  background: rgba(247, 239, 228, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.ticket-event-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 173, 101, 0.45);
  background: rgba(247, 239, 228, 0.065);
}

.ticket-event-card.is-unavailable {
  opacity: 0.72;
}

.ticket-card-statuses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 30px;
}

.ticket-status,
.ticket-price-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.ticket-status {
  color: #a7f3bd;
  background: rgba(22, 163, 74, 0.16);
}

.ticket-status.is-cancelled {
  color: #ffb2b2;
  background: rgba(220, 38, 38, 0.16);
}

.ticket-price-badge {
  color: #150d04;
  background: var(--gold);
}

.ticket-card-body {
  flex: 1;
}

.ticket-card-body h2 {
  margin: 0 0 24px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: 0;
}

.ticket-card-facts {
  display: grid;
  gap: 13px;
  margin: 0;
}

.ticket-card-facts div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
}

.ticket-card-facts dt {
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-card-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.ticket-card-description {
  display: -webkit-box;
  margin: 24px 0 28px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ticket-card-button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  padding: 0 20px;
  color: #100a04;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(215, 173, 101, 0.24);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.ticket-card-button:hover {
  transform: translateY(-2px);
  background: #f0cb85;
  box-shadow: 0 14px 34px rgba(215, 173, 101, 0.38);
}

.ticket-card-button.is-disabled {
  color: var(--ink);
  background: rgba(247, 239, 228, 0.12);
  box-shadow: none;
}

.ticket-empty-state {
  grid-column: 1 / -1;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.ticket-dialog {
  width: min(520px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  border: 1px solid rgba(247, 239, 228, 0.18);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #0b090c;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7);
}

.ticket-dialog::backdrop {
  background: rgba(2, 2, 3, 0.82);
  backdrop-filter: blur(7px);
}

.ticket-dialog-inner {
  position: relative;
  padding: clamp(24px, 5vw, 38px);
}

.ticket-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.06);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.ticket-dialog-heading {
  padding-right: 42px;
}

.ticket-dialog-heading h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  letter-spacing: 0;
}

.ticket-dialog-heading > p:last-child {
  color: var(--muted);
}

.ticket-dialog-form {
  margin-top: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:has(.ticket-dialog[open]) {
  overflow: hidden;
}

@media (max-width: 620px) {
  .ticket-marketplace {
    padding: 104px 14px 70px;
  }

  .ticket-marketplace-head h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .ticket-event-grid {
    grid-template-columns: 1fr;
  }

  .ticket-event-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .ticket-card-statuses {
    margin-bottom: 22px;
  }

  .ticket-card-button {
    min-height: 58px;
  }

  .ticket-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }

  .ticket-dialog-inner {
    padding: 26px 18px 22px;
  }
}

/* Refined public typography and account layouts */
.hero h1,
.ticket-marketplace-head h1,
.about-content h1,
.privacy-page h1,
.ticket-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.98;
}

.about-content h2,
.ticket-event-card h2,
.ticket-dialog h2 {
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.login-panel h1 {
  font-size: clamp(1.65rem, 4vw, 2.15rem);
}

.login-panel,
.unified-login-form,
.registration-form,
.forgot-form,
.reset-form {
  min-width: 0;
}

.unified-login-form label,
.registration-form label,
.forgot-form label,
.reset-form label {
  width: 100%;
  display: grid;
  gap: 9px;
}

.unified-login-form input,
.registration-form input,
.forgot-form input,
.reset-form input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
}

.forgot-form .button,
.reset-form .button {
  width: 100%;
  min-height: 52px;
}

.ticket-dialog-heading h2 {
  margin-top: 0;
}

.ticket-dialog-availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(247, 239, 228, 0.045);
}

.ticket-dialog-availability span {
  color: #8fe3ad;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-dialog-availability strong {
  color: var(--muted);
  font-size: 0.78rem;
}

.ticket-quantity-label {
  grid-template-columns: 1fr auto !important;
  align-items: center;
}

.ticket-stepper {
  display: grid;
  grid-template-columns: 42px 48px 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.ticket-stepper button,
.ticket-stepper output {
  width: 100%;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.055);
  font: inherit;
  font-weight: 900;
}

.ticket-stepper button {
  cursor: pointer;
}

.ticket-stepper button:hover {
  background: rgba(215, 173, 101, 0.2);
}

.ticket-stepper output {
  border-inline: 1px solid var(--line);
  background: rgba(247, 239, 228, 0.09);
}

.ticket-quantity-select {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* About page structure */
.about-content {
  padding-top: 78px;
}

.about-intro,
.about-story-row,
.about-team-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-intro {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(62px, 9vw, 110px) 0;
}

.about-intro > div > p:last-child,
.about-story-copy p,
.about-team-heading p {
  color: var(--muted);
  line-height: 1.75;
}

.about-intro img,
.about-story-row img,
.about-team-section img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
}

.about-story-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
}

.about-story-row.is-reversed .about-story-copy {
  grid-column: 2;
}

.about-story-row.is-reversed img {
  grid-column: 1;
  grid-row: 1;
}

.about-team-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
  padding: clamp(70px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
}

.about-crowdfunding {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 130px) 0;
  border-top: 1px solid var(--line);
}

.about-crowdfunding-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 6vw, 70px);
}

.about-crowdfunding-heading > p:last-child,
.about-crowdfunding-details p {
  color: var(--muted);
  line-height: 1.75;
}

.about-crowdfunding-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-crowdfunding-details article {
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
  background: var(--bg-soft);
}

.crowdfunding-use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.crowdfunding-use-list li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.about-crowdfunding-details .button {
  margin-top: 22px;
}

@media (max-width: 760px) {
  .hero h1,
  .ticket-marketplace-head h1,
  .about-content h1,
  .ticket-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .privacy-page { width: min(100% - 28px, 920px); padding-top: 104px; }
  .privacy-page > header { margin-bottom: 34px; }
  .privacy-page h1 { max-width: 100%; margin: 6px 0 12px; font-size: 1.75rem; line-height: 1.08; overflow-wrap: normal; }
  .privacy-page header > p:not(.section-kicker) { line-height: 1.55; }

  .about-content {
    padding-top: 66px;
  }

  .about-intro,
  .about-story-row,
  .about-team-section,
  .about-crowdfunding {
    width: min(100% - 28px, 620px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 0;
  }

  .about-crowdfunding-details {
    grid-template-columns: 1fr;
  }

  .about-story-row.is-reversed .about-story-copy,
  .about-story-row.is-reversed img {
    grid-column: auto;
    grid-row: auto;
  }

  .about-intro img,
  .about-story-row img,
  .about-team-section img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .ticket-quantity-label {
    grid-template-columns: 1fr auto !important;
  }
}

.about-story-page {
  padding-top: 86px;
}

.about-page-hero {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0 clamp(42px, 6vw, 72px);
  text-align: center;
}

.about-page-hero h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.about-page-hero p:last-child {
  max-width: 690px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.75;
}

.about-story-sections {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.about-narrative-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.about-narrative-section.is-reversed {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 0.92fr);
}

.about-narrative-section.is-reversed .about-narrative-copy {
  grid-column: 2;
}

.about-narrative-section.is-reversed .about-narrative-media {
  grid-column: 1;
  grid-row: 1;
}

.about-narrative-copy {
  max-width: 720px;
}

.about-section-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-narrative-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.14;
}

.about-narrative-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.82;
}

.about-narrative-copy p:last-child {
  margin-bottom: 0;
}

.about-narrative-media {
  margin: 0;
  min-width: 0;
}

.about-narrative-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.about-inline-list {
  display: grid;
  gap: 8px;
  margin: 6px 0 22px;
  padding: 0;
  list-style: none;
}

.about-inline-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(247, 239, 228, 0.045);
  font-size: 0.9rem;
  font-weight: 750;
}

.about-narrative-section.is-crowdfunding-story {
  margin-bottom: clamp(36px, 7vw, 82px);
  padding: clamp(56px, 8vw, 96px);
  border: 1px solid rgba(215, 173, 101, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(215, 173, 101, 0.09), rgba(247, 239, 228, 0.03));
}

@media (max-width: 760px) {
  .about-story-page {
    padding-top: 66px;
  }

  .about-page-hero,
  .about-story-sections {
    width: min(100% - 28px, 620px);
  }

  .about-page-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-narrative-section,
  .about-narrative-section.is-reversed {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  .about-narrative-section.is-reversed .about-narrative-copy,
  .about-narrative-section.is-reversed .about-narrative-media {
    grid-column: auto;
    grid-row: auto;
  }

  .about-narrative-media img {
    aspect-ratio: 16 / 10;
  }

  .about-narrative-section.is-crowdfunding-story {
    padding: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-placeholder,
  .premium-brand.is-activated {
    animation: none;
  }
}

.mobile-ticket-cta {
  display: none;
}

.login-page {
  min-height: 100vh;
  background: #070607 url("assets/illusionary-theme.jpeg") center / cover fixed;
}

.login-page::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  content: "";
  background: rgba(7, 6, 7, 0.82);
}

.unified-login {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.login-panel {
  width: min(500px, 100%);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(10, 8, 12, 0.96);
  box-shadow: var(--shadow);
}

.account-back-button {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -8px 0 20px -8px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.account-back-button span:first-child {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.account-back-button:hover {
  color: var(--ink);
  background: rgba(247, 239, 228, 0.06);
  transform: translateX(-2px);
}

.account-back-button:hover span:first-child {
  transform: translateX(-2px);
}

.account-back-button:focus-visible {
  outline: 2px solid rgba(215, 173, 101, 0.6);
  outline-offset: 2px;
}

.auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.auth-brand img {
  width: 54px;
  height: 54px;
  margin: 0;
  object-fit: contain;
}

.auth-form-head {
  padding-top: 28px;
}

.auth-form-head .section-kicker {
  margin-bottom: 8px;
}

.login-panel p {
  color: var(--muted);
}

.login-panel h1 {
  max-width: 100%;
  margin: 0 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: none;
}

.unified-login-form,
.registration-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.unified-login-form label,
.registration-form label {
  gap: 9px;
  font-size: 0.9rem;
}

.unified-login-form input,
.registration-form input {
  min-height: 52px;
  border-color: rgba(247, 239, 228, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

.unified-login-form input:focus,
.registration-form input:focus {
  outline: 2px solid rgba(215, 173, 101, 0.48);
  outline-offset: 2px;
  border-color: var(--gold);
}

.unified-login-form .button,
.registration-form .button {
  width: 100%;
  min-height: 52px;
  display: grid;
  place-items: center;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: var(--faint);
  font-size: 0.78rem;
  text-align: center;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  content: "";
  background: var(--line);
}

.organization-login-note {
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--violet);
  background: rgba(127, 63, 224, 0.1);
  font-size: 0.82rem;
  line-height: 1.55;
}

.unified-login-status:not(:empty),
.registration-status:not(:empty),
.login-panel .form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 0.88rem;
}

.forgot-form,
.reset-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.forgot-link {
  width: fit-content;
  color: var(--gold);
  font-weight: 900;
}

/* Keep all public account flows readable on the dark Illusionary surface. */
.login-page,
.login-page .login-panel,
.login-page .auth-form-head,
.login-page form {
  color: var(--ink);
}

.login-page .auth-form-head h1,
.login-page form label,
.login-page form label > span,
.login-page .auth-divider span {
  color: var(--ink);
}

.login-page .auth-form-head > p:not(.section-kicker),
.login-page .privacy-note,
.login-page .organization-login-note {
  color: var(--muted);
}

.login-page .section-kicker,
.login-page .forgot-link,
.login-page .privacy-note a,
.login-page form a:not(.button) {
  color: var(--gold);
}

.login-page input,
.login-page textarea,
.login-page select {
  color: var(--ink);
  caret-color: var(--gold);
}

.login-page input::placeholder,
.login-page textarea::placeholder {
  color: var(--faint);
  opacity: 1;
}

.login-page input:-webkit-autofill,
.login-page input:-webkit-autofill:hover,
.login-page input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px #17131a inset;
  caret-color: var(--gold);
  transition: background-color 9999s ease-out 0s;
}

.login-page [role="status"]:not(:empty),
.login-page .form-status:not(:empty) {
  background: rgba(7, 6, 7, 0.72);
}

.login-page [role="status"][data-state="error"] {
  color: #ff9d9d;
}

.login-page [role="status"][data-state="success"],
.login-page .form-status[data-state="success"] {
  color: #9ce8b6;
}

/* Privacy is a long-form dark page: set every text level explicitly. */
.privacy-page,
.privacy-page header,
.privacy-page section,
.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
  color: var(--ink);
}

.privacy-page header > p:not(.section-kicker),
.privacy-page section p,
.privacy-page section li {
  color: var(--muted);
}

.privacy-page .section-kicker,
.privacy-page a {
  color: var(--gold);
}

.privacy-page a:hover,
.privacy-page a:focus-visible {
  color: #f0cb85;
}

/* FAQ and cancellation communication */
[data-program-dialog-cancellation][hidden],
.event-cancel-notice[hidden] {
  display: none !important;
}
.faq-section {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.faq-category {
  scroll-margin-top: 110px;
}

.faq-category-heading {
  margin-bottom: 18px;
}

.faq-category-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.faq-category details {
  border-top: 1px solid var(--line);
}

.faq-category details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-category summary {
  position: relative;
  padding: 18px 42px 18px 0;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-category summary::-webkit-details-marker { display: none; }

.faq-category summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  content: "+";
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-category details[open] summary::after { content: "−"; }

.faq-category details p,
.faq-contact {
  max-width: 760px;
  margin: 0;
  padding: 0 42px 20px 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-contact {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(215, 173, 101, 0.07);
}

.faq-contact a { color: var(--gold); text-decoration: underline; }

.event-cancel-notice {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 112, 112, 0.42);
  border-left: 4px solid #ef6b6b;
  border-radius: 6px;
  color: var(--ink);
  background: rgba(139, 31, 47, 0.14);
}

.event-cancel-notice strong {
  color: #ffaaaa;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.event-cancel-notice h3,
.event-cancel-notice p {
  margin: 0;
}

.event-cancel-notice h3 { font-size: 1rem; }
.event-cancel-notice p,
.event-cancel-notice span { color: var(--muted); line-height: 1.55; }

.event-cancel-notice.compact {
  gap: 4px;
  margin: 14px 0 0;
  padding: 11px 12px;
}

.program-dialog-copy .button.is-disabled,
.ticket-card-button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.65;
}

/* Quiet fullscreen homepage opening: video first, next event second. */
.hero {
  min-height: 100svh;
  max-height: none;
  align-items: end;
}

.hero-placeholder {
  animation: none;
}

.hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.42) 0%, rgba(3, 3, 4, 0.12) 40%, rgba(3, 3, 4, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 3, 4, 0.42), transparent 55%);
}

.hero-event-focus {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 130px 0 clamp(34px, 6vh, 64px);
  text-align: center;
}

.hero-event-label {
  margin: 0 0 9px;
  color: rgba(247, 239, 228, 0.62);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-event-focus h1 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3.1vw, 2.75rem);
  font-weight: 850;
  line-height: 1.08;
  text-transform: none;
}

.hero-event-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 18px;
  color: rgba(247, 239, 228, 0.58);
  font-size: 0.78rem;
}

.hero-slogan,
.intro-slogan {
  margin: 16px 0 0;
  color: rgba(247, 239, 228, 0.68);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-slogan {
  width: fit-content;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(215, 173, 101, 0.34);
  color: rgba(215, 173, 101, 0.86);
}

.hero-countdown {
  width: fit-content;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(66px, 88px));
  gap: 0;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(247, 239, 228, 0.2);
  border-radius: 0;
  background: transparent;
}

.hero-countdown div {
  min-height: auto;
  padding: 12px 8px 0;
  background: transparent;
}

.hero-countdown strong {
  color: rgba(247, 239, 228, 0.9);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
}

.hero-countdown span {
  margin-top: 5px;
  color: rgba(247, 239, 228, 0.48);
  font-size: 0.6rem;
  font-weight: 750;
}

.hero-event-fallback {
  margin: 0;
  color: rgba(247, 239, 228, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

@media (max-width: 560px) {
  .hero-event-focus {
    width: calc(100% - 28px);
    padding-top: 112px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero-event-focus h1 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .hero-event-meta {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .hero-countdown {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-countdown div {
    min-height: auto;
    padding-inline: 3px;
  }
}

/* Magician Kaythor: public-only knowledge assistant */
.magician-assistant {
  position: fixed;
  z-index: 120;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
}

.magician-launcher {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 173, 101, 0.66);
  border-radius: 50%;
  color: #f7efe4;
  background: rgba(10, 8, 12, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5), 0 0 22px rgba(215, 173, 101, 0.16);
  animation: magicianFloat 4.8s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.magician-launcher:hover,
.magician-launcher:focus-visible {
  transform: scale(1.07);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.55), 0 0 28px rgba(215, 173, 101, 0.34);
}

.magician-avatar {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  filter: contrast(1.05) saturate(0.9);
}

.magician-hat {
  position: relative;
  width: 34px;
  height: 30px;
  display: block;
}

.magician-hat::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 9px;
  width: 18px;
  height: 24px;
  border: 2px solid currentColor;
  border-bottom: 0;
  transform: skew(-11deg) rotate(2deg);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: linear-gradient(150deg, rgba(215, 173, 101, 0.34), rgba(85, 37, 119, 0.5));
}

.magician-hat::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 32px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #171019;
}

.magician-hat i {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px var(--gold);
}

.magician-sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0;
  animation: magicianSparkle 4s ease-in-out infinite;
}

.sparkle-one { top: 3px; right: 5px; }
.sparkle-two { bottom: 7px; left: 4px; animation-delay: 1.8s; }

.magician-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 28px));
  height: min(570px, calc(100vh - 120px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border: 1px solid rgba(215, 173, 101, 0.34);
  border-radius: 8px;
  overflow: hidden;
  color: #f7efe4;
  background: rgba(10, 8, 12, 0.97);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.magician-assistant.is-open .magician-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.magician-panel > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(247, 239, 228, 0.1);
}

.magician-panel header div { display: grid; gap: 3px; }
.magician-panel header strong { color: #fff; font-family: Georgia, serif; font-size: 1.05rem; }
.magician-panel header span { color: rgba(247, 239, 228, 0.58); font-size: 0.68rem; }
.magician-panel header button { width: 36px; height: 36px; border: 0; background: transparent; color: #fff; font-size: 1.4rem; }

.magician-messages {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  overflow-y: auto;
}

.magician-message {
  max-width: 86%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.magician-message.is-bot { align-self: flex-start; border: 1px solid rgba(215, 173, 101, 0.2); background: rgba(247, 239, 228, 0.06); }
.magician-message.is-user { align-self: flex-end; color: #120f0b; background: var(--gold); }
.magician-actions { grid-column: 2; display: flex; flex-wrap: wrap; gap: 7px; margin-top: -3px; }
.magician-actions a { min-height: 36px; display: inline-flex; align-items: center; padding: 7px 11px; border: 1px solid rgba(215, 173, 101, 0.48); border-radius: 5px; color: #f7efe4; background: rgba(215, 173, 101, 0.1); font-size: 0.72rem; font-weight: 850; text-decoration: none; transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.magician-actions a:hover, .magician-actions a:focus-visible { transform: translateY(-1px); background: rgba(215, 173, 101, 0.18); box-shadow: 0 0 15px rgba(215, 173, 101, 0.16); }
.magician-message-row {
  width: 100%;
  display: flex;
  gap: 9px;
  align-items: flex-end;
}

.magician-message-row.is-bot {
  align-self: flex-start;
  animation: kaythorMessageEntrance 360ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.magician-message-row .magician-message {
  max-width: calc(86% - 45px);
}

.magician-message-row.has-no-avatar {
  padding-left: 47px;
}

.magician-message-row.has-no-avatar .magician-message {
  max-width: 86%;
}

.magician-message-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 46px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45));
  transform-origin: center bottom;
}
.magician-message-row.is-typing .magician-message-avatar { width: 54px; height: 70px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(215, 173, 101, 0.24)); }
.magician-message-row[data-kaythor-visual="broom"] .magician-message-avatar { width: 66px; height: 58px; object-fit: contain; animation: kaythorBroomDrift 2.2s ease-in-out infinite; }
.magician-message-row[data-kaythor-visual="wave"] .magician-message-avatar { width: 48px; height: 60px; object-fit: contain; }

.magician-message-row.is-typing .magician-message-avatar,
.magician-message-row.is-answering .magician-message-avatar {
  animation: kaythorAvatarWriting 2.2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 8px rgba(215, 173, 101, 0.3));
}
@keyframes kaythorBroomDrift { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-4px) rotate(1deg); } }

.magician-typing-bubble {
  position: relative;
  min-width: 88px;
  min-height: 48px;
  display: grid;
  place-items: center;
  overflow: visible;
  box-shadow: 0 0 18px rgba(215, 173, 101, 0.08), inset 0 0 16px rgba(215, 173, 101, 0.04);
}

.magician-typing-bubble::before,
.magician-typing-bubble::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(247, 239, 228, 0.07);
  border: 1px solid rgba(215, 173, 101, 0.18);
}

.magician-typing-bubble::before { width: 10px; height: 10px; left: -7px; bottom: 5px; }
.magician-typing-bubble::after { width: 5px; height: 5px; left: -12px; bottom: 0; }

.typing-cloud {
  position: relative;
  min-width: 62px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.typing-cloud i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5dba9;
  box-shadow: 0 0 8px rgba(215, 173, 101, 0.65);
  animation: kaythorTypingDot 1.25s ease-in-out infinite;
}

.typing-cloud i:nth-child(2) { animation-delay: 140ms; }
.typing-cloud i:nth-child(3) { animation-delay: 280ms; }
.typing-cloud b {
  position: absolute;
  top: -10px;
  right: -3px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  animation: kaythorTypingSpark 1.8s ease-in-out infinite;
}

.magician-privacy { margin: 0; padding: 8px 16px; color: rgba(247, 239, 228, 0.48); font-size: 0.64rem; line-height: 1.45; }

.magician-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(247, 239, 228, 0.1);
}

.magician-form input { min-width: 0; height: 44px; padding: 0 12px; border: 1px solid rgba(247, 239, 228, 0.17); border-radius: 5px; color: #fff; background: rgba(255, 255, 255, 0.055); }
.magician-form button { width: 44px; height: 44px; border: 1px solid var(--gold); border-radius: 5px; color: #120f0b; background: var(--gold); font-size: 1.2rem; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

@keyframes magicianFloat { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
@keyframes magicianSparkle { 0%, 72%, 100% { opacity: 0; transform: scale(0.5) rotate(0); } 82% { opacity: 1; transform: scale(1) rotate(35deg); } }
@keyframes kaythorMessageEntrance {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes kaythorAvatarWriting {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  45% { transform: translateY(-4px) rotate(1.5deg); }
  70% { transform: translateY(-2px) rotate(0); }
}
@keyframes kaythorTypingDot {
  0%, 70%, 100% { opacity: 0.35; transform: translateY(2px) scale(0.82); }
  35% { opacity: 1; transform: translateY(-4px) scale(1); }
}
@keyframes kaythorTypingSpark {
  0%, 100% { opacity: 0; transform: scale(0.55) rotate(0); }
  45% { opacity: 1; transform: scale(1) rotate(45deg); text-shadow: 0 0 9px var(--gold); }
}

@media (max-width: 560px) {
  .magician-assistant { right: 12px; bottom: 12px; }
  .magician-launcher { width: 54px; height: 54px; }
  .magician-panel { position: fixed; right: 8px; bottom: 76px; left: 8px; width: auto; height: min(620px, calc(100dvh - 92px)); transform-origin: bottom center; }
  .magician-message-avatar { width: 34px; height: 42px; }
  .magician-message-row .magician-message { max-width: calc(90% - 40px); }
}

@media (prefers-reduced-motion: reduce) {
  .magician-launcher, .magician-sparkle { animation: none; }
  .magician-panel { transition: none; }
  .magician-message-row,
  .magician-message-row.is-typing .magician-message-avatar,
  .magician-message-row.is-answering .magician-message-avatar,
  .typing-cloud i,
  .typing-cloud b { animation: none; }
}

.button.primary,
.program-info-button {
  border-color: color-mix(in srgb, var(--button-general-bg) 58%, transparent);
  color: var(--button-general-text);
  background: var(--button-general-bg);
}

.ticket-card-button:not(.is-disabled),
.ticket-page .button.primary,
[data-program-dialog-ticket],
.mobile-ticket-cta {
  border-color: color-mix(in srgb, var(--button-ticket-bg) 62%, transparent);
  color: var(--button-ticket-text);
  background: var(--button-ticket-bg);
}

.button:hover,
.program-info-button:hover,
.ticket-card-button:not(.is-disabled):hover,
.mobile-ticket-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--site-accent) 22%, transparent);
}

.text-link,
.auth-links a,
.contact-direct a,
.faq-contact a {
  color: var(--site-accent);
}

.countdown-frame {
  width: min(610px, 100%);
  padding: 17px 20px;
  border-color: color-mix(in srgb, var(--site-accent) 48%, transparent);
  background: linear-gradient(135deg, rgba(8, 7, 10, 0.66), rgba(8, 7, 10, 0.34));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 0 35px color-mix(in srgb, var(--site-accent) 5%, transparent);
}

.hero-countdown {
  grid-template-columns: repeat(4, minmax(66px, 82px));
  gap: 6px;
  perspective: 700px;
}

.hero-countdown div {
  padding: 8px 10px;
  transition: transform 220ms ease, background 220ms ease;
}

.hero-countdown div:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--site-accent) 6%, transparent);
}

.hero-countdown strong {
  display: block;
  min-width: 2ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  transform-origin: center bottom;
}

.hero-countdown strong.is-ticking {
  animation: premiumNumberChange 480ms cubic-bezier(.2,.8,.2,1);
}

.hero-countdown span {
  margin-top: 8px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
}

@keyframes premiumNumberChange {
  0% { opacity: 0.3; transform: rotateX(-35deg) translateY(-3px); filter: blur(2px); }
  55% { opacity: 1; transform: rotateX(4deg) translateY(1px); filter: blur(0); }
  100% { transform: rotateX(0) translateY(0); }
}

@media (max-width: 480px) {
  .countdown-frame {
    grid-template-columns: 8px minmax(0, 1fr) 8px;
    padding: 12px 7px;
  }

  .hero-countdown {
    grid-template-columns: repeat(2, minmax(82px, 1fr));
    gap: 2px;
  }

  .hero-countdown div:nth-child(3)::before {
    display: none;
  }

  .hero-countdown strong {
    font-size: 1.45rem;
  }

}

@media (max-width: 560px) {
  .unified-login { padding: 16px; }
  .login-panel { padding: 22px 18px; }
  .auth-header { padding-bottom: 18px; }
  .auth-brand span { display: none; }
  .auth-form-head { padding-top: 22px; }
  .account-back-button { margin-bottom: 14px; }
}

.extra-hero h1 span {
  color: var(--gold);
}

@media (max-width: 900px) {
  .info-strip,
  .top-actions,
  .countdown-band,
  .countdown,
  .event-row,
  .clean-cards,
  .intro-world,
  .about-section,
  .updates,
  .account-section,
  .crowdfunding,
  .ticket-claim,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .ticket-focus,
  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-cards article {
    min-height: auto;
  }

  .event-date {
    justify-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .event-row-image { width: 100%; max-height: 240px; aspect-ratio: 16 / 9; }

  .intro-world-heading h2 { max-width: none; }
}

/* Contact */
.contact-content { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 150px 0 90px; }
.contact-intro { max-width: 760px; margin-bottom: 48px; }
.contact-intro h1 { margin-bottom: 18px; font-size: clamp(2.3rem, 5vw, 4.6rem); }
.contact-intro > p:last-child { color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.2rem); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.7fr); gap: clamp(28px, 6vw, 76px); align-items: start; }
.contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: clamp(22px, 4vw, 36px); border: 1px solid var(--line); border-radius: 8px; background: rgba(247, 239, 228, 0.035); }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: 0.88rem; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-width: 0; border: 1px solid rgba(247, 239, 228, 0.18); border-radius: 6px; color: var(--ink); background: rgba(255, 255, 255, 0.055); }
.contact-form input, .contact-form select { min-height: 52px; padding: 0 14px; }
.contact-form textarea { min-height: 170px; padding: 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid rgba(215, 173, 101, 0.45); outline-offset: 2px; border-color: var(--gold); }
.contact-message-field, .contact-form .button, .contact-status, .contact-form .privacy-note { grid-column: 1 / -1; }
.contact-status:not(:empty) { margin: 0; padding: 12px 14px; border: 1px solid currentColor; border-radius: 6px; }
.contact-direct { padding-top: 12px; }
.contact-direct h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.contact-direct p:not(.section-kicker) { color: var(--muted); line-height: 1.7; }
.contact-direct a { color: var(--gold); font-weight: 900; text-decoration: underline; text-underline-offset: 0.22em; overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .contact-content { width: calc(100% - 28px); padding: 112px 0 64px; }
  .contact-layout, .contact-form { grid-template-columns: 1fr; }
  .contact-message-field, .contact-form .button, .contact-status, .contact-form .privacy-note { grid-column: auto; }
  .contact-form .button { width: 100%; }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: fixed;
    min-height: auto;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(7, 6, 7, 0.9);
    backdrop-filter: blur(14px);
  }

  .brand {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-ticket-button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .language-select {
    min-height: 36px;
    max-width: 64px;
    font-size: 0.82rem;
  }

  .nav-links {
    display: flex;
    flex: 1;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(247, 239, 228, 0.06);
    color: var(--ink);
    font-size: 0.82rem;
  }

  .public-event-card {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: 92svh;
  }

  .ticket-hero {
    min-height: 76svh;
  }

  .hero-inner,
  .ticket-hero-content {
    padding: 118px 18px 54px;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.6rem);
  }

  .section {
    padding: 58px 18px;
  }

  .actions,
  .actions .button,
  .ticket-focus .button,
  .section-title-row .button {
    width: 100%;
  }

  .top-action {
    min-height: 136px;
    padding: 24px 18px;
  }

  .top-action strong {
    font-size: clamp(2rem, 12vw, 3.8rem);
  }

  .info-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .countdown div {
    min-height: 108px;
  }

  .event-row {
    padding: 22px 18px;
  }

  .clean-cards span {
    margin-bottom: 22px;
  }

  .button,
  .signup-form input,
  .account-form input,
  .claim-form input,
  .claim-form select {
    min-height: 52px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 96px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-ticket-cta {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 8px;
    background: var(--gold);
    color: #15100b;
    font-weight: 950;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  }
}

/* Final mobile safeguards for the fullscreen homepage hero. */
@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero .hero-countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero .hero-countdown div {
    min-height: auto;
  }
}

/* Central public button theme, managed from the organization dashboard. */
.button.primary,
.header-ticket-button,
.public-header .header-ticket-button,
.ticket-card-button:not(.is-disabled),
.program-info-button,
.mobile-ticket-cta {
  border-color: var(--button-border);
  color: var(--button-primary-text);
  background: var(--button-primary-bg);
}

.button.secondary,
.button.secondary-dark,
.button.ghost,
.public-primary-nav a,
.public-menu-toggle,
.ticket-stepper button,
.ticket-dialog-close,
.program-dialog-close,
.account-back-button {
  border-color: var(--button-border);
  color: var(--button-secondary-text);
  background: var(--button-secondary-bg);
}

.button.primary:hover,
.header-ticket-button:hover,
.public-header .header-ticket-button:hover,
.ticket-card-button:not(.is-disabled):hover,
.program-info-button:hover,
.mobile-ticket-cta:hover,
.button.secondary:hover,
.button.secondary-dark:hover,
.button.ghost:hover,
.public-primary-nav a:hover,
.public-menu-toggle:hover,
.ticket-stepper button:hover,
.ticket-dialog-close:hover,
.program-dialog-close:hover,
.account-back-button:hover {
  color: var(--button-primary-text);
  background: var(--button-hover-bg);
}

/* Refined public navigation, homepage countdown and footer. */
.public-primary-nav {
  gap: clamp(4px, 1vw, 14px);
}

.public-primary-nav a {
  min-width: 104px;
  padding-inline: 15px;
}

.hero-event-focus {
  width: min(720px, calc(100% - 40px));
  animation: countdownEntrance 900ms ease 180ms both;
}

.hero-event-label {
  letter-spacing: 0.16em;
}

.hero-event-focus h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.48);
}

.hero-event-meta {
  margin-bottom: 14px;
  color: rgba(247, 239, 228, 0.72);
  letter-spacing: 0.08em;
}

.countdown-frame {
  position: relative;
  isolation: isolate;
  width: min(520px, 100%);
  display: grid;
  grid-template-columns: minmax(26px, 1fr) auto minmax(26px, 1fr);
  gap: 14px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(215, 173, 101, 0.34);
  border-radius: 6px;
  background: rgba(7, 6, 7, 0.38);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(215, 173, 101, 0.035);
  backdrop-filter: blur(13px);
  animation: countdownPulse 7s ease-in-out infinite;
  overflow: hidden;
}

.countdown-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 36%;
  background: linear-gradient(100deg, transparent, rgba(255, 233, 190, 0.09), transparent);
  transform: translateX(-180%) skewX(-18deg);
  animation: countdownShimmer 8s ease-in-out 1.4s infinite;
}

.countdown-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 101, 0.78));
}

.countdown-line:last-child {
  background: linear-gradient(90deg, rgba(215, 173, 101, 0.78), transparent);
}

.hero-countdown {
  width: auto;
  grid-template-columns: repeat(4, minmax(54px, 66px));
  border: 0;
}

.hero-countdown div {
  position: relative;
  padding: 4px 6px;
}

.hero-countdown div + div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(215, 173, 101, 0.24);
}

.hero-countdown strong {
  color: #fff8e9;
  text-shadow: 0 0 16px rgba(215, 173, 101, 0.46);
  font-variant-numeric: tabular-nums;
}

.hero-countdown strong.is-ticking {
  animation: countdownNumber 360ms ease;
}

.hero-countdown span {
  letter-spacing: 0.08em;
}

.public-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding-block: 38px;
}

.footer-information {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.public-footer .footer-links {
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.82rem;
}

.public-footer .footer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.public-footer .footer-socials > strong {
  margin: 0;
  color: var(--faint);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.public-footer .footer-social-list {
  gap: 7px;
}

.public-footer .footer-social-list a {
  width: 30px;
  height: 30px;
}

.public-footer .social-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.public-footer .footer-social-list a:hover .social-icon {
  color: var(--gold);
  border-color: rgba(215, 173, 101, 0.5);
  transform: translateY(-2px);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.footer-legal p {
  font-size: 0.72rem;
}

.footer-brand-mark {
  min-width: 150px;
  display: grid;
  justify-items: center;
  gap: 7px;
  transition: transform 220ms ease, filter 220ms ease;
}

.footer-brand-mark img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.footer-brand-mark span {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.footer-brand-mark:hover {
  transform: scale(1.025);
  filter: drop-shadow(0 0 14px rgba(215, 173, 101, 0.24));
}

@keyframes countdownEntrance {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes countdownPulse {
  0%, 100% { border-color: rgba(215, 173, 101, 0.28); box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28), inset 0 0 24px rgba(215, 173, 101, 0.025); }
  50% { border-color: rgba(215, 173, 101, 0.46); box-shadow: 0 16px 52px rgba(0, 0, 0, 0.34), 0 0 24px rgba(215, 173, 101, 0.07); }
}

@keyframes countdownShimmer {
  0%, 64% { transform: translateX(-180%) skewX(-18deg); }
  82%, 100% { transform: translateX(430%) skewX(-18deg); }
}

@keyframes countdownNumber {
  from { opacity: 0.35; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
  .public-primary-nav a {
    min-width: 0;
  }

  .public-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

@media (max-width: 560px) {
  .countdown-frame {
    grid-template-columns: 12px minmax(0, 1fr) 12px;
    gap: 7px;
    padding: 9px 7px;
  }

  .hero-countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-countdown strong {
    font-size: 1rem;
  }

  .hero-countdown span {
    font-size: 0.52rem;
  }

  .public-footer {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .public-footer .footer-links {
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-brand-mark {
    justify-self: end;
    min-width: 120px;
  }

  .footer-brand-mark img {
    width: 88px;
    height: 88px;
  }
}

/* Public header links and footer alignment */
.public-header .public-primary-nav a,
.public-header .public-primary-nav a:last-child {
  position: relative;
  min-width: 0;
  padding: 8px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.public-header .public-primary-nav a::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  left: 2px;
  height: 1px;
  background: var(--site-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.public-header .public-primary-nav a:hover,
.public-header .public-primary-nav a:focus-visible {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  transform: none;
}

.public-header .public-primary-nav a:hover::after,
.public-header .public-primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.public-footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.public-footer .footer-socials-right {
  justify-self: end;
}

.public-footer .footer-information {
  justify-items: start;
}

.public-footer .footer-information .footer-links,
.public-footer .footer-information .footer-legal {
  justify-content: flex-start;
  text-align: left;
}

@media (max-width: 820px) {
  .public-header .public-primary-nav a,
  .public-header .public-primary-nav a:last-child {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    text-align: left;
  }

  .public-header .public-primary-nav a::after {
    right: 14px;
    bottom: 7px;
    left: 14px;
    transform-origin: left;
  }

  .public-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .public-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .public-footer .footer-information {
    justify-items: start;
  }

  .public-footer .footer-information .footer-links,
  .public-footer .footer-information .footer-legal {
    justify-content: flex-start;
    text-align: left;
  }

  .public-footer .footer-socials-right {
    justify-self: end;
  }
}
/* Side Projects */
.side-projects-page {
  min-height: 100dvh;
  color: var(--ink, #f7efe4);
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 173, 101, 0.15), transparent 32rem),
    radial-gradient(circle at 85% 12%, rgba(127, 63, 224, 0.18), transparent 30rem),
    #070607;
}

.side-projects-intro {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) 0 34px;
}

.side-projects-intro h1,
.workshop-landing-hero h1,
.music-cube-hero-platform h1 {
  margin: 0.2rem 0 1rem;
  letter-spacing: 0;
  line-height: 0.98;
}

.side-projects-intro h1 {
  font-size: clamp(2.2rem, 7vw, 6rem);
  text-transform: uppercase;
}

.side-projects-intro p {
  max-width: 720px;
  color: rgba(247, 239, 228, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.side-project-showcase {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 5rem;
  display: grid;
  gap: 1.25rem;
}

.side-project-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(215, 173, 101, 0.24);
  border-radius: 8px;
  background: rgba(12, 10, 13, 0.84);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.side-project-panel:nth-child(even) {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
}

.side-project-panel:nth-child(even) .side-project-panel-media {
  order: 2;
}

.side-project-panel-media {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  background: #050405;
}

.side-project-panel-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
}

.side-project-panel-media img,
.workshop-hero-media img,
.workshop-visual-stack img,
.workshop-detail-card > img,
.music-cube-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #151515;
}

.side-project-panel-media span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.side-project-panel-copy {
  display: grid;
  align-content: center;
  padding: clamp(12px, 2vw, 22px);
}

.side-project-panel-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.85rem, 4vw, 3.8rem);
  line-height: 1;
}

.side-project-panel-copy p {
  max-width: 520px;
  color: rgba(247, 239, 228, 0.74);
}

.side-project-arrow {
  width: fit-content;
  margin-top: 1rem;
  color: var(--gold, #d7ad65);
  font-weight: 950;
  text-decoration: none;
}

.side-project-arrow:hover,
.side-project-arrow:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.workshop-page {
  background:
    radial-gradient(circle at top left, rgba(215, 173, 101, 0.16), transparent 34rem),
    linear-gradient(180deg, #100d12, #070607 45%);
}

.workshop-landing-hero,
.workshop-info-strip,
.workshop-story-section,
.workshop-learning-section,
.workshop-audience-guide,
.workshop-layout,
.workshop-other-list,
.music-cube-latest,
.music-cube-all,
.music-video-more {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.workshop-landing-hero {
  min-height: clamp(540px, 78svh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(46px, 7vw, 92px) 0 38px;
}

.workshop-landing-hero h1 {
  font-size: clamp(2.15rem, 5vw, 5.4rem);
}

.workshop-landing-hero p {
  max-width: 620px;
  color: rgba(247, 239, 228, 0.78);
}

.workshop-hero-media {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 101, 0.22);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.workshop-status-pill {
  width: fit-content;
  display: inline-flex;
  margin-top: 1rem;
  padding: 11px 14px;
  border: 1px solid rgba(215, 173, 101, 0.36);
  border-radius: 999px;
  color: var(--gold, #d7ad65);
  font-weight: 900;
}

.workshop-info-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 4rem;
  overflow: hidden;
  border: 1px solid rgba(215, 173, 101, 0.2);
  border-radius: 8px;
  background: rgba(215, 173, 101, 0.16);
}

.workshop-info-strip span,
.side-project-facts span {
  display: grid;
  gap: 0.22rem;
  padding: 16px;
  color: rgba(247, 239, 228, 0.76);
  background: rgba(10, 8, 12, 0.9);
}

.workshop-info-strip b,
.side-project-facts b {
  color: var(--gold, #d7ad65);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.workshop-story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  margin-bottom: 4rem;
}

.workshop-story-section h2,
.workshop-learning-section h2,
.workshop-audience-guide h2,
.workshop-detail-card h2,
.workshop-signup-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.workshop-story-section p,
.workshop-audience-guide p,
.workshop-detail-card p {
  color: rgba(247, 239, 228, 0.74);
}

.workshop-visual-stack {
  display: grid;
  gap: 0.8rem;
}

.workshop-visual-stack img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
}

.workshop-visual-stack div,
.workshop-audience-guide article,
.workshop-steps article,
.workshop-detail-card,
.workshop-signup-card,
.side-project-empty {
  border: 1px solid rgba(215, 173, 101, 0.22);
  border-radius: 8px;
  background: rgba(15, 13, 17, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.workshop-visual-stack div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 16px;
}

.workshop-learning-section {
  margin-bottom: 4rem;
}

.section-heading-compact {
  margin-bottom: 1.2rem;
}

.section-heading-compact h2 {
  margin: 0;
}

.workshop-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workshop-steps article {
  padding: 20px;
}

.workshop-steps span {
  color: var(--gold, #d7ad65);
  font-size: 0.78rem;
  font-weight: 950;
}

.workshop-steps h3 {
  margin: 0.45rem 0;
}

.workshop-steps p {
  color: rgba(247, 239, 228, 0.68);
}

.workshop-audience-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.workshop-audience-guide article {
  padding: clamp(18px, 3vw, 28px);
}

.workshop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.workshop-detail-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  padding: 1rem;
}

.workshop-detail-card > img {
  min-height: 280px;
  border-radius: 6px;
}

.workshop-detail-card > div,
.workshop-signup-card {
  padding: 0.6rem;
}

.side-project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.workshop-signup-card {
  align-self: start;
  padding: 1.2rem;
}

.workshop-signup-form {
  display: grid;
  gap: 0.8rem;
}

.workshop-signup-form label {
  display: grid;
  gap: 0.35rem;
}

.workshop-signup-form input,
.workshop-signup-form textarea {
  width: 100%;
  border: 1px solid rgba(215, 173, 101, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink, #f7efe4);
  padding: 0.75rem;
}

.side-project-mini-grid {
  display: grid;
  gap: 0.7rem;
}

.side-project-mini-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(215, 173, 101, 0.2);
  border-radius: 6px;
  padding: 0.85rem;
}

.music-cube-page,
.music-video-page {
  background:
    radial-gradient(circle at 80% 0%, rgba(88, 173, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #020304, #070607 42%, #030304);
}

.music-cube-hero-platform {
  position: relative;
  min-height: clamp(560px, 82svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(70px, 11vw, 124px) max(1rem, calc((100vw - 1160px) / 2)) clamp(38px, 6vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.48) 50%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(3, 3, 4, 1), transparent 48%),
    var(--cube-hero-image, url("assets/illusionary-theme.jpeg")) center / cover;
}

.music-cube-brand {
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 7vw, 6.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.music-cube-series-label,
.music-cube-hero-type {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold, #d7ad65);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.music-cube-hero-platform h1 {
  max-width: 780px;
  font-size: clamp(2rem, 5vw, 5.2rem);
}

.music-cube-watch-button {
  min-height: 48px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.7rem;
  padding: 12px 16px;
  border: 1px solid rgba(215, 173, 101, 0.5);
  border-radius: 999px;
  color: #080607;
  background: var(--gold, #d7ad65);
  font-weight: 950;
  text-decoration: none;
}

.music-cube-subnav {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  overflow-x: auto;
  padding: 12px max(1rem, calc((100vw - 1160px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(12px);
}

.music-cube-subnav strong,
.music-cube-subnav a {
  white-space: nowrap;
  color: rgba(247, 239, 228, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

.music-cube-subnav strong,
.music-cube-subnav a:hover {
  color: var(--gold, #d7ad65);
}

.music-cube-latest,
.music-cube-all {
  padding-top: 4rem;
}

.music-cube-latest-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 45%);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.9rem;
  scroll-snap-type: x proximity;
}

.music-cube-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}

.music-cube-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: rgba(12, 12, 13, 0.9);
  scroll-snap-align: start;
}

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

.music-cube-card img {
  display: block;
  aspect-ratio: 16 / 9;
}

.music-cube-card div {
  padding: 0.95rem;
}

.music-cube-card span,
.music-cube-card small,
.music-cube-meta {
  color: var(--gold, #d7ad65);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.music-cube-card h3 {
  margin: 0.35rem 0 0.2rem;
  font-size: 1.1rem;
}

.music-cube-card p {
  margin: 0;
  color: rgba(247, 239, 228, 0.68);
}

.music-cube-card time {
  display: block;
  margin-top: 0.5rem;
  color: rgba(247, 239, 228, 0.44);
  font-size: 0.72rem;
}

.music-cube-browse-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.1rem;
}

.music-cube-browse-head h2 {
  margin: 0;
}

.music-cube-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.music-cube-filters button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(215, 173, 101, 0.28);
  border-radius: 999px;
  color: rgba(247, 239, 228, 0.82);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 900;
}

.music-cube-filters button.is-active {
  color: #080607;
  background: var(--gold, #d7ad65);
}

.music-video-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 3rem auto 3rem;
  border: 1px solid rgba(215, 173, 101, 0.18);
  border-radius: 8px;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(7, 7, 8, 0.9);
}

.music-video-player {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.music-video-player iframe,
.music-video-player video,
.music-video-player img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.music-video-info {
  padding: clamp(1rem, 3vw, 1.8rem) 0 0;
}

.music-video-info h1 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 4.5rem);
  line-height: 1;
}

.music-video-info h2 {
  margin: 0.55rem 0;
  color: rgba(247, 239, 228, 0.78);
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold, #d7ad65);
}

@media (max-width: 900px) {
  .side-project-panel,
  .side-project-panel:nth-child(even),
  .workshop-landing-hero,
  .workshop-story-section,
  .workshop-audience-guide,
  .workshop-layout,
  .workshop-detail-card {
    grid-template-columns: 1fr;
  }

  .side-project-panel:nth-child(even) .side-project-panel-media {
    order: 0;
  }

  .workshop-info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workshop-steps,
  .music-cube-grid {
    grid-template-columns: 1fr 1fr;
  }

  .music-cube-latest-strip {
    grid-auto-columns: minmax(280px, 78%);
  }
}

@media (max-width: 620px) {
  .side-projects-intro {
    padding-top: 44px;
  }

  .side-project-panel,
  .workshop-detail-card,
  .workshop-signup-card,
  .music-video-shell {
    padding: 0.8rem;
  }

  .side-project-panel-media,
  .workshop-hero-media {
    min-height: 260px;
  }

  .workshop-info-strip,
  .side-project-facts,
  .workshop-steps,
  .music-cube-grid {
    grid-template-columns: 1fr;
  }

  .music-cube-brand {
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 0.92;
  }

  .music-cube-browse-head {
    display: grid;
  }

  .music-cube-filters {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }
}
/* Side Projects: distinct public identities */
.workshop-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(130, 85, 255, .22), transparent 34rem),
    linear-gradient(180deg, #f7f2ea 0%, #efe5d5 54%, #171119 100%);
  color: #1a1420;
}

.workshop-page .section-kicker {
  color: #7d55d8;
}

.workshop-page .workshop-landing-hero {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(126, 85, 216, .22);
  box-shadow: 0 24px 80px rgba(43, 25, 75, .16);
}

.workshop-page .workshop-landing-hero h1 {
  color: #18101f;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  max-width: 11ch;
}

.workshop-age-line {
  display: inline-flex;
  margin: .25rem 0 1rem;
  color: #5f3cb6;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.workshop-page .workshop-landing-hero p,
.workshop-page .workshop-story-section p,
.workshop-page .workshop-audience-guide p,
.workshop-page .workshop-detail-card p,
.workshop-page .workshop-steps p {
  color: rgba(26, 20, 32, .78);
}

.workshop-page .workshop-info-strip,
.workshop-page .workshop-story-section,
.workshop-page .workshop-audience-guide,
.workshop-page .workshop-detail-card,
.workshop-page .workshop-signup-card,
.workshop-page .workshop-steps article {
  background: rgba(255, 255, 255, .82);
  border-color: rgba(126, 85, 216, .2);
  color: #1a1420;
}

.workshop-page .workshop-info-strip b,
.workshop-page .side-project-facts b,
.workshop-page .workshop-steps span {
  color: #7d55d8;
}

.workshop-page .workshop-steps h3,
.workshop-page .workshop-story-section h2,
.workshop-page .workshop-learning-section h2,
.workshop-page .workshop-audience-guide h2,
.workshop-page .workshop-detail-card h2,
.workshop-page .workshop-signup-card h2 {
  color: #171119;
}

.workshop-page .workshop-signup-form input,
.workshop-page .workshop-signup-form textarea {
  background: #fff;
  color: #171119;
  border-color: rgba(126, 85, 216, .24);
}

.music-cube-streaming-page {
  min-height: 100vh;
  padding: 0 0 5rem;
  background: #030303;
  color: #fff;
}

.music-cube-banner {
  width: min(1500px, calc(100% - 3rem));
  min-height: clamp(180px, 29vw, 360px);
  margin: 2rem auto 2.75rem;
  display: flex;
  align-items: flex-end;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .34)),
    var(--cube-banner-image) center / cover no-repeat,
    linear-gradient(135deg, #12091d, #020202);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.music-cube-banner div {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.music-cube-banner p {
  margin: 0 0 .25rem;
  color: #d7ad65;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.music-cube-banner h1 {
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 5.6rem);
  line-height: .9;
  text-transform: uppercase;
}

.music-cube-season {
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto 3rem;
}

.music-cube-season-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.music-cube-season-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
}

.music-cube-season-head span {
  color: rgba(255, 255, 255, .54);
  font-size: .9rem;
}

.music-cube-episode-list {
  display: grid;
  gap: 1rem;
}

.music-cube-streaming-page .music-cube-card {
  display: grid;
  grid-template-columns: 4rem minmax(220px, 34vw) 1fr;
  align-items: center;
  gap: 1rem;
  padding: .85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
}

.music-cube-episode-number {
  color: rgba(255, 255, 255, .38);
  font-size: clamp(1.6rem, 4vw, 3rem);
  text-align: center;
}

.music-cube-streaming-page .music-cube-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.music-cube-streaming-page .music-cube-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.music-video-page {
  background: #030303;
}

.music-video-page .music-video-shell {
  width: min(1240px, calc(100% - 2rem));
}

.music-video-page .music-video-info h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

@media (max-width: 760px) {
  .music-cube-banner,
  .music-cube-season {
    width: min(100% - 1rem, 720px);
  }

  .music-cube-streaming-page .music-cube-card {
    grid-template-columns: 3rem 1fr;
  }

  .music-cube-streaming-page .music-cube-card img,
  .music-cube-streaming-page .music-cube-card div {
    grid-column: 2;
  }

  .music-cube-episode-number {
    grid-row: 1 / span 2;
  }

  .music-cube-season-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Side Projects refinement: theme-aware overview and MusicCube player UX */
.side-project-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.side-project-panel,
.side-project-panel:nth-child(even) {
  min-height: 0;
  grid-template-columns: 1fr;
}

.side-project-panel:nth-child(even) .side-project-panel-media {
  order: 0;
}

.side-project-panel-media {
  min-height: 260px;
  aspect-ratio: 16 / 10;
}

.side-project-panel-copy h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
}

.music-cube-title-row {
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto 1.5rem;
  display: grid;
  gap: .9rem;
}

.music-cube-title-row h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.music-cube-season-tabs {
  display: flex;
  gap: .6rem;
  overflow-x: auto;
  padding-bottom: .25rem;
}

.music-cube-season-tabs button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .78);
  font-weight: 850;
  cursor: pointer;
}

.music-cube-season-tabs button:hover,
.music-cube-season-tabs button:focus-visible {
  border-color: rgba(157, 103, 255, .78);
  outline: none;
}

.music-cube-season-tabs button.is-active {
  background: #7d55d8;
  border-color: #a98cff;
  color: #fff;
}

.music-cube-season[hidden] {
  display: none;
}

.music-cube-streaming-page .music-cube-card:hover,
.music-cube-streaming-page .music-cube-card:focus-visible {
  background: rgba(125, 85, 216, .14);
  border-color: rgba(169, 140, 255, .5);
  outline: none;
}

.musiccube-resume-note {
  color: #d7ad65;
  font-weight: 800;
}

@media (prefers-color-scheme: light) {
  .side-projects-page {
    background:
      radial-gradient(circle at 15% 0%, rgba(125, 85, 216, .14), transparent 32rem),
      linear-gradient(180deg, #f8f8fb, #ece8f4);
    color: #161219;
  }

  .side-projects-intro p,
  .side-project-panel-copy p {
    color: rgba(22, 18, 25, .72);
  }

  .side-project-panel {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(125, 85, 216, .22);
    box-shadow: 0 28px 80px rgba(39, 27, 70, .12);
  }

  .side-project-panel-copy h2 {
    color: #161219;
  }

  .music-cube-streaming-page,
  .music-video-page {
    background: #08070a;
    color: #fff;
  }
}

@media (max-width: 820px) {
  .side-project-showcase {
    grid-template-columns: 1fr;
  }
}
