
:root {
  --bg-top: #12091d;
  --bg-mid: #2d1242;
  --bg-bottom: #ff8a45;
  --sun: #ffcf70;
  --pink: #ff63b8;
  --violet: #8f65ff;
  --cyan: #7cecff;
  --text: #fff2df;
  --muted: rgba(255, 242, 223, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.09);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 80px rgba(7, 3, 18, 0.35);
  --shadow-soft: 0 14px 40px rgba(7, 3, 18, 0.26);
  --radius: 26px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 207, 112, 0.18), transparent 15%),
    radial-gradient(circle at 85% 20%, rgba(124, 236, 255, 0.12), transparent 20%),
    radial-gradient(circle at 60% 60%, rgba(255, 99, 184, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 46%, var(--bg-bottom) 100%);
  background-color: var(--bg-bottom);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: transparent;
  background-color: transparent;
  line-height: 1.6;
  position: relative;
}

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

button,
input,
select {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.5;
  z-index: 0;
}

body::before {
  top: 8vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(255, 99, 184, 0.28), transparent 68%);
}

body::after {
  right: -8vw;
  bottom: 18vh;
  background: radial-gradient(circle, rgba(124, 236, 255, 0.18), transparent 68%);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(18, 9, 29, 0.72), rgba(18, 9, 29, 0.42));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand,
.nav-links a {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero {
  padding: 4.5rem 0 2.5rem;
}

.hero-shell {
  position: relative;
}

.hero-badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.badge {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-badge {
  background: rgba(255, 99, 184, 0.16);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-poster,
.card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-copy {
  padding: 2.2rem;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 112, 0.28), transparent 70%);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1,
h2,
h3,
.poster-item strong {
  font-family: "Syne", sans-serif;
  margin: 0;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.3rem, 9vw, 7.3rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2.1rem);
}

.hero-text,
.section-intro,
.card p,
.helper-text,
.lineup-card p,
.poster-item small {
  color: var(--muted);
}

.hero-text {
  max-width: 42rem;
  font-size: 1.08rem;
  margin: 1.25rem 0 0;
}

.hero-actions,
.form-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: linear-gradient(135deg, var(--sun), #ff9c54);
  color: #2a1021;
}

.button-secondary {
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.hero-poster {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 540px;
}

.poster-kicker,
.lineup-day {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.poster-list {
  display: grid;
  gap: 1rem;
  flex: 1;
}

.poster-item {
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
}

.poster-item-xl {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 99, 184, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
}

.poster-item strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0.4rem 0;
}

.section {
  padding: 2rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading.center {
  text-align: center;
}

.lineup-board {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.lineup-card {
  padding: 1.4rem;
}

.lineup-headliner {
  background:
    radial-gradient(circle at top left, rgba(255, 207, 112, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
}

.info-marquee {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.destination-copy,
.destination-stack article,
.reservation-form {
  padding: 1.5rem;
}

.destination-stack {
  display: grid;
  gap: 1rem;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
}

.tinted-card {
  background: linear-gradient(180deg, rgba(124,236,255,0.12), rgba(255,255,255,0.05));
}

.dark-card {
  background: linear-gradient(180deg, rgba(9,6,19,0.64), rgba(255,255,255,0.04));
}

.reservation-shell {
  max-width: 960px;
}

.reservation-form {
  display: grid;
  gap: 1rem;
}

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

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

label {
  display: grid;
  gap: 0.45rem;
}

label span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

input,
select {
  width: 100%;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10, 7, 20, 0.42);
  color: var(--text);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(124, 236, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(124, 236, 255, 0.14);
}

input::placeholder {
  color: rgba(255, 242, 223, 0.45);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .lineup-board,
  .destination-grid,
  .field-grid,
  .field-grid.three-up {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-poster {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-copy,
  .hero-poster,
  .lineup-card,
  .destination-copy,
  .destination-stack article,
  .reservation-form {
    padding: 1.2rem;
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}


.gate-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.gate-panel {
  width: min(100%, 760px);
  padding: 2rem;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 207, 112, 0.18), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  box-shadow: var(--shadow);
  text-align: center;
}

.gate-text {
  margin-inline: auto;
  max-width: 36rem;
}

.gate-form {
  width: min(100%, 420px);
  margin: 1.5rem auto 0;
  display: grid;
  gap: 1rem;
}

.gate-form label {
  text-align: left;
}


@media (max-width: 720px) {
  html,
  body {
    min-height: 100%;
    overflow-x: hidden;
    background-color: var(--bg-bottom);
  }

  body::before {
    top: 5vh;
    left: -22vw;
    width: 62vw;
    height: 62vw;
    opacity: 0.55;
  }

  body::after {
    right: -22vw;
    bottom: 12vh;
    width: 56vw;
    height: 56vw;
    opacity: 0.38;
  }

  body {
    line-height: 1.5;
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--max-width));
  }

  .site-header {
    position: sticky;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .nav-links a {
    font-size: 0.72rem;
  }

  .hero-badge-row {
    gap: 0.5rem;
    margin-bottom: 0.9rem;
  }

  .badge {
    font-size: 0.62rem;
    padding: 0.35rem 0.6rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
    line-height: 0.9;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 0.95;
  }

  h3 {
    line-height: 1;
  }

  .eyebrow,
  .poster-kicker,
  .lineup-day,
  label span,
  .footer-row {
    letter-spacing: 0.1em;
  }

  .hero-text,
  .section-intro,
  .card p,
  .lineup-card p,
  .poster-item small,
  .helper-text {
    font-size: 0.96rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 1.25rem;
    border-radius: 24px;
  }

  .hero-copy::before {
    width: 210px;
    height: 210px;
    right: -70px;
    top: -65px;
  }

  .hero-text {
    margin-top: 0.9rem;
    max-width: none;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-poster {
    padding: 1rem;
    gap: 0.75rem;
    min-height: auto;
    box-shadow: var(--shadow-soft);
  }

  .poster-list {
    gap: 0.75rem;
  }

  .poster-item,
  .poster-item-xl,
  .lineup-card,
  .destination-copy,
  .destination-stack article,
  .reservation-form,
  .gate-panel {
    border-radius: 22px;
  }

  .poster-item {
    padding: 0.9rem;
  }

  .poster-item-xl {
    min-height: 170px;
  }

  .poster-item strong {
    font-size: clamp(1.45rem, 8vw, 2.1rem);
    line-height: 0.95;
  }

  .section {
    padding: 1.4rem 0 2.5rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .lineup-board,
  .destination-grid,
  .destination-stack,
  .field-grid,
  .field-grid.three-up {
    gap: 0.8rem;
  }

  .lineup-card {
    padding: 1rem;
  }

  .info-marquee {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 20px;
    padding: 0.9rem 1rem;
  }

  .info-marquee::-webkit-scrollbar {
    display: none;
  }

  .destination-copy,
  .destination-stack article,
  .reservation-form {
    padding: 1rem;
    box-shadow: var(--shadow-soft);
  }

  input,
  select {
    min-height: 50px;
    border-radius: 16px;
    padding: 0.82rem 0.9rem;
    font-size: 16px;
  }

  .form-footer {
    gap: 0.8rem;
    margin-top: 0.5rem;
  }

  .gate-screen {
    padding: 1rem;
  }

  .gate-panel {
    padding: 1.25rem;
    text-align: left;
    box-shadow: var(--shadow-soft);
  }

  .gate-form {
    width: 100%;
  }

  .footer-row {
    font-size: 0.65rem;
  }
}

@media (max-width: 420px) {
  body::before {
    left: -28vw;
    width: 72vw;
    height: 72vw;
  }

  body::after {
    right: -28vw;
    width: 68vw;
    height: 68vw;
  }

  .container {
    width: min(calc(100% - 0.9rem), var(--max-width));
  }

  .nav {
    gap: 0.6rem;
    padding: 0.85rem 0;
  }

  .brand {
    font-size: 0.78rem;
  }

  .nav-links a {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.25rem, 14vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.6rem, 9vw, 2.15rem);
  }

  .hero-copy,
  .hero-poster,
  .lineup-card,
  .destination-copy,
  .destination-stack article,
  .reservation-form,
  .gate-panel {
    padding: 0.95rem;
  }

  .button {
    min-height: 46px;
    padding: 0.8rem 1rem;
  }

  .helper-text {
    font-size: 0.88rem;
  }
}
