:root {
  --theme-font-body: Arial, sans-serif;
  --theme-font-display: Arial, sans-serif;
  --theme-font-hero: var(--theme-font-display);
  --theme-text: #fff;
  --theme-text-muted: rgba(255, 255, 255, 0.8);
  --theme-heading: #fff;
  --theme-accent: #00f0ff;
  --theme-accent-strong: #dfb708;
  --theme-accent-contrast: #111;
  --theme-link: var(--theme-accent);
  --theme-border: rgba(255, 255, 255, 0.16);
  --theme-panel: rgba(0, 0, 0, 0.72);
  --theme-panel-strong: rgba(0, 0, 0, 0.82);
  --theme-panel-soft: rgba(255, 255, 255, 0.05);
  --theme-overlay: rgba(0, 0, 0, 0.88);
  --theme-glow: 0 0 20px rgba(0, 240, 255, 0.35);
  --theme-glow-strong: 0 0 20px #00f0ff, 0 0 40px #00f0ff99;
  --theme-shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.45);
  --theme-shadow-md: 0 0 24px rgba(0, 0, 0, 0.3);
  --theme-title-size: 4vw;
  --theme-subtitle-size: 2vw;
  --theme-text-size: 1.1vw;
}

html {
  height: 100%;
}

body {
  color: var(--theme-text);
  font-family: var(--theme-font-body);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: none;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

h1 {
  color: var(--theme-heading);
}

.hero {
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.cta {
  display: inline-block;
  appearance: none;
  background: none;
  border: none;
  color: var(--theme-link);
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.4s;
  padding: 10px;
  font-family: inherit;
}

.cta:hover {
  color: var(--theme-text);
}

section {
  max-width: 700px;
  margin: 3rem auto;
  background: var(--theme-panel);
  border-radius: 16px;
  box-shadow: var(--theme-shadow-md);
  padding: 2rem;
}

h2 {
  font-family: var(--theme-font-display);
  color: var(--theme-accent-strong);
  margin-top: 0;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--theme-accent-strong);
  font-size: 1rem;
  border-top: 2px solid var(--theme-border);
}

.sponsor-logos img {
  width: 100px;
  margin: 0 1rem;
}

.team ul,
.faq details {
  color: var(--theme-text);
}

.registration form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.registration input,
.registration button {
  font-size: 1rem;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
}

.registration button {
  color: var(--theme-accent-contrast);
  font-weight: bold;
  cursor: pointer;
  box-shadow: var(--theme-glow);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-accent);
  border-radius: 8px;
}

.film-cards {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0;
}

.film-card {
  display: flex;
  border-radius: 24px;
  box-shadow: var(--theme-glow);
  overflow: hidden;
  align-items: center;
  min-height: 260px;
  transition: transform 0.2s;
}

.film-card:hover {
  transform: scale(1.03);
}

.film-img {
  width: 220px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.film-content {
  padding: 2rem;
  color: var(--theme-text);
  flex: 1;
}

.film-content h2 {
  font-family: var(--theme-font-display);
  margin-top: 0;
  margin-bottom: 1rem;
}

.section-bg {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  background-size: auto 100%;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}

.menu-link {
  color: var(--theme-text);
  font-size: 1rem;
  margin: 0 0.6rem;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  display: inline-block;
}

.topnav {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 101;
  display: flex;
  gap: 1.5rem;
}

.topnav-left {
  position: fixed;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 110;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topnav-left .menu-link {
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.25rem 0.4rem;
  border-bottom: 2px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}

.topnav-num {
  color: var(--theme-text);
  font-size: 1.1rem;
  font-family: var(--theme-font-display);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}

.section-num-bg {
  position: absolute;
  right: -4vw;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 13vw;
  font-family: var(--theme-font-display);
  font-weight: bold;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

.section-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: var(--theme-text);
  width: 50vw;
  max-width: 590px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  z-index: 2;
}

.section-title {
  font-size: var(--theme-title-size);
  font-weight: bold;
  margin: 0 0 1.5em 0;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: var(--theme-subtitle-size);
  margin: 0 0 0.5em 0;
  font-weight: 600;
}

.section-text {
  font-size: var(--theme-text-size);
  margin-bottom: 2em;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  margin-top: 7em;
  font-size: 1.1vw;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--theme-accent);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.read-more:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .section-content {
    margin-right: 2vw;
    padding: 1rem;
  }

  .topnav {
    top: 1rem;
    right: 1rem;
    gap: 1rem;
  }
}

.rotate-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--theme-overlay);
  color: var(--theme-text);
  z-index: 9999;
}

.rotate-overlay[aria-hidden="false"] {
  display: flex;
}

.rotate-overlay__inner {
  max-width: 520px;
  width: calc(100% - 8rem);
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: var(--theme-shadow-lg), var(--theme-glow);
}

.rotate-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.rotate-title {
  font-size: 1.6rem;
  margin: 0.25rem 0 0.5rem;
}

.rotate-text {
  margin: 0 0 1rem;
}

.rotate-close {
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

@media (orientation: portrait) {
  .rotate-overlay {
    display: flex;
  }
}

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

  .rotate-overlay__inner {
    transition: none;
  }
}

.svg-hero {
  height: 100vh;
  width: 100vw;
  display: block;
  position: relative;
}

.svg-hero .hero-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.svg-hero .title {
  font-size: clamp(28px, 4.5vw, 64px);
}

.svg-hero .subtitle {
  font-size: clamp(18px, 2.5vw, 32px);
}

.svg-hero .meta {
  font-size: clamp(14px, 1.8vw, 26px);
}

.svg-hero .link {
  font-size: clamp(12px, 1.6vw, 22px);
  fill: var(--theme-accent);
}

.svg-hero .section-content {
  display: none;
}

.hero-fo {
  font-family: var(--theme-font-hero);
  color: var(--theme-text);
  -webkit-font-smoothing: antialiased;
}

.hero-fo__title {
  margin: 0 0 0.4rem 0;
  font-size: clamp(28px, 4.5vw, 56px);
}

.hero-fo__subtitle {
  margin: 0 0 0.6rem 0;
  font-size: clamp(16px, 2.4vw, 28px);
}

.hero-fo__meta {
  margin: 0 0 1rem 0;
  font-size: clamp(14px, 1.8vw, 20px);
}

.hero-fo__cta {
  display: inline-block;
  text-decoration: none;
}

.hero-fo--more {
  margin: 0 0 1rem 0;
  font-size: clamp(14px, 1.8vw, 20px);
  width: auto;
  height: auto;
  padding: 20px 30px;
  border-radius: 8px;
  overflow-y: auto;
  overscroll-behavior-y: auto;
}

.widget-consent {
  width: auto;
  height: auto;
  padding: 20px 30px;
  border-radius: 8px;
}

.widget-consent .hero-fo__meta {
  margin-bottom: 0.8rem;
}

.widget-consent .hero-fo__cta[disabled] {
  opacity: 0.7;
  cursor: wait;
}

#pricing-widget-host {
  margin-top: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}

#pricing-widget-host > div {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  transform-origin: top left;
  transform: scale(0.9) !important;
}

#pricing-widget-host iframe {
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  max-height: 100% !important;
  border: 0;
}

.tickets-widget-layer {
  position: absolute;
  top: 4rem;
  right: 6vw;
  bottom: 2rem;
  width: min(46vw, 760px);
  overflow: hidden;
  z-index: 6;
}

.tickets-widget-layer .pricing-widget-loader {
  display: none;
}

.tickets-widget-layer.is-loading .pricing-widget-loader {
  display: flex;
}

.tickets-widget-layer.is-loading #pricing-widget-host {
  opacity: 0;
  pointer-events: none;
}

.tickets-widget-layer.is-loaded #pricing-widget-host {
  opacity: 1;
  pointer-events: auto;
}

.tickets-widget-layer.is-loaded .pricing-widget-loader {
  display: none;
}

.pricing-widget-loader {
  position: fixed;
  top: 50%;
  left: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translate(-50%, -50%);
  background: none;
  z-index: 9999;
}

.pricing-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  animation: pricing-spin 0.9s linear infinite;
}

.pricing-loader-text {
  font-size: 1rem;
  font-weight: 700;
}

@keyframes pricing-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1100px) {
  .tickets-widget-layer {
    top: 6.5rem;
    right: 4vw;
    width: 92vw;
  }
}

svg .hero-fo {
  box-sizing: border-box;
  padding: 0;
}

.hero-fo--title,
.hero-fo--subtitle,
.hero-fo--cta,
.hero-fo--more {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.hero-fo--title .hero-fo__title {
  margin: 0;
  font-size: clamp(32px, 4.8vw, 64px);
}

.hero-fo--subtitle .hero-fo__subtitle {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 28px);
}

.hero-fo--subtitle .hero-fo__meta {
  margin: 0.4rem 0 0 0;
  font-size: clamp(14px, 1.8vw, 20px);
}

.hero-fo--cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hidden {
  display: none;
}

.title {
  font-family: var(--theme-font-display);
  font-weight: 700;
  font-size: 64px;
}

.subtitle {
  font-family: var(--theme-font-display);
  font-size: 32px;
}

.meta {
  font-size: 26px;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}

strong {
  color: var(--theme-accent-strong);
}

.infobox a {
  color: var(--theme-accent-strong);
  text-decoration: underline;
}

.infobox {
  padding: 0.7rem;
  border-radius: 8px;
  position: fixed;
  top: 2rem;
  z-index: 101;
}

.countdown {
  left: 360px;
  width: auto;
}

.close-more {
  position: absolute;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  top: 0;
  right: 18px;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.info-icon {
  display: none;
  appearance: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 2.2em;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.cta:focus-visible,
.close-more:focus-visible,
.info-icon:focus-visible,
.close-btn:focus-visible {
  outline: 2px solid var(--theme-accent);
  outline-offset: 3px;
}

.info-overlay .infobox {
  flex: 1;
  border-radius: 10px;
  padding: 20px 10px;
}

.info-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.info-overlay .info-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  gap: 20px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
}

.info-overlay {
  display: none;
}

@media (max-width: 1000px) {
  #infobox-outer {
    display: none;
  }

  .info-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    padding-top: 60px;
  }

  .info-icon {
    display: block;
  }
}

.infobox-outer {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 101;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.infobox-outer .infobox {
  position: static;
}

.widget-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

body.site-shell-page {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: none;
}

body.site-shell-page .topnav {
  left: 2rem;
  right: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.site-shell-page .infobox-outer {
  top: 6.5rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11rem 2rem 4rem;
  box-sizing: border-box;
}

.site-shell--narrow {
  max-width: 900px;
  margin: 0 auto;
}

.shell-card {
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px) minmax(0, 0.75fr);
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--theme-shadow-lg);
}

.shell-card--stack {
  display: block;
  width: min(720px, 100%);
}

.shell-copy h1,
.shell-card--stack h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 0.95;
}

.shell-eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
}

.shell-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.shell-highlights,
.shell-aside ul {
  margin: 1.5rem 0 0;
  padding-left: 1.2rem;
  line-height: 1.6;
}

.ticket-form-wrap {
  display: flex;
  justify-content: center;
}

.form-panel {
  width: min(420px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.8rem;
  border-radius: 22px;
}

.form-panel h2,
.shell-aside h2 {
  margin: 0 0 0.5rem;
  font-size: 1.45rem;
}

.form-panel label {
  margin-top: 0.15rem;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 10px;
  font-size: 1rem;
}

.form-panel input:focus,
.form-panel select:focus {
  outline-offset: 1px;
}

.form-panel button {
  margin-top: 0.75rem;
  width: 100%;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.form-panel--success {
  justify-content: center;
  min-height: 440px;
}

.form-alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
}

.form-alert p {
  margin: 0;
}

.form-alert p + p {
  margin-top: 0.35rem;
}

.shell-aside {
  padding: 1.4rem;
  border-radius: 22px;
}

.ticket-inline-link {
  margin-top: 1rem;
  padding: 0;
}

.site-footer {
  padding: 1.5rem 2rem 2.4rem;
  text-align: center;
  background: transparent;
}

.site-footer p {
  margin: 0.2rem 0;
}

@media (max-width: 1100px) {
  .shell-card {
    grid-template-columns: 1fr;
  }

  .shell-aside {
    order: 3;
  }
}

@media (max-width: 1000px) {
  body.site-shell-page .topnav {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    justify-content: flex-start;
  }

  body.site-shell-page .infobox-outer {
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
  }
}

@media (max-width: 700px) {
  .site-shell {
    padding: 8rem 1rem 2rem;
  }

  .shell-card {
    padding: 1.25rem;
    border-radius: 20px;
  }

  .form-panel {
    padding: 1.2rem;
  }
}
