:root {
  /* palette */
  --color-bg: #000;
  --color-surface: #fff;
  --color-ink: #1a1a1a;
  --color-link: #00b7ff;
  --color-accent: #e8b73b;
  --color-accent-hover: #ffce4a;

  /* typography */
  --font-base: 14px Helvetica, Arial, sans-serif;

  /* shape */
  --radius-sm: 6px;
  --radius-pill: 28px;
  --shadow-cta: 0 6px 20px rgb(0 0 0 / 0.45);

  /* motion */
  --transition-base: 0.2s ease-out;
}

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

body {
  margin: 0;
  font: var(--font-base);
}

a {
  color: var(--color-link);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Utilities */
.alignCenter {
  text-align: center;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
}

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

/* Scroll reveal — enabled only when JS is present (progressive enhancement) */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero image — fade only, no movement */
.js .reveal-hero {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.js .reveal-hero.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-hero {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero */
header {
  position: relative;
}

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

/* Press release */
.pressrelease {
  padding: 100px 15%;
  background-color: var(--color-bg);
  color: var(--color-surface);
  font-size: 24px;
}

/* Ticket buttons — shared base */
.buy-ticket-button-long a,
.buy-ticket-button-simple a {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

/* Hero CTA (overlaid on banner) */
.buy-ticket-button-long {
  position: absolute;
  inset-block-start: 10vh;
  inset-inline: 0;
  z-index: 2;
  text-align: center;
}

.buy-ticket-button-long a {
  padding: 16px 34px;
  background: var(--color-accent);
  color: var(--color-ink);
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-cta);
  transition: background var(--transition-base), transform var(--transition-base);
}

.buy-ticket-button-long a:hover,
.buy-ticket-button-long a:focus-visible {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* Inline CTA (within press release) */
.buy-ticket-button-simple {
  width: 100%;
  margin: 0 auto 60px;
  text-align: center;
}

.buy-ticket-button-simple a {
  padding: 12px 21px;
  background: var(--color-bg);
  color: var(--color-surface);
  font-size: 14px;
  border: 4px solid var(--color-surface);
  border-radius: var(--radius-pill);
}

/* Media blocks */
.videos {
  width: 80%;
  margin: 30px auto;
}

.socialLink {
  height: 40px;
  margin: 4px;
}

.map {
  margin-top: 50px;
}

/* Pages */
.content-page {
  padding: 16pt;
}

.legal-note {
  padding: 0 5pt;
  font-size: 6pt;
  text-align: right;
}

.order-status {
  width: 100%;
  padding: 80px 16px;
  text-align: center;
  font-size: 16pt;
  color: #000;
  background: #fff;
}

.ticket-widget {
  height: 79vh;
  padding: 5%;
}

@media (max-width: 640px) {
  .pressrelease {
    padding: 16px;
    font-size: 16px;
  }

  .buy-ticket-button-simple {
    margin-block: 8px 40px;
  }

  .buy-ticket-button-simple a {
    padding: 8px 14px;
    border-width: 3px;
  }

  .buy-ticket-button-long {
    display: none;
  }
}
