@font-face {
  font-family: Pretendard;
  src: url("/fonts/pretendard/PretendardVariable.core.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --bg: #030305;
  --fg: #fff;
  --muted: #bebcc6;
  --cyan: #00dcff;
  --violet: #7b2cff;
  --lime: #d7ff39;
  --surface: #0a0810;
  --border: rgba(255, 255, 255, 0.7);
  --display: Georgia, "Times New Roman", serif;
  --sans: Pretendard, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--fg);
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #030305;
  font-family: var(--sans);
  color: #fff;
}
body.menu-open {
  overflow: visible;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 8px;
  z-index: 999;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 16px;
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}
.site-header {
  position: absolute;
  inset: 0 0 auto;
  height: 82px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 200px 1fr;
  align-items: center;
  padding: 0 46px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}
.nav-right {
  justify-content: flex-end;
}
.desktop-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.desktop-nav span {
  margin-left: 7px;
}
.brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 176px;
  line-height: 0.78;
  font-style: normal;
  text-transform: uppercase;
  filter: drop-shadow(0 0 12px rgba(0, 220, 255, 0.3));
}
.brand b {
  font-size: 27px;
  letter-spacing: -0.08em;
  transform: skew(-10deg);
  color: #fff;
}
.brand i {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--cyan);
  font-style: normal;
}
.brand small {
  font: 700 7px/1.3 var(--sans);
  letter-spacing: 0.26em;
  margin-top: 5px;
}
.nav-cta,
.glow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 23px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  background: linear-gradient(95deg, var(--cyan), var(--violet));
  box-shadow:
    0 0 8px #fff,
    0 0 20px color-mix(in srgb, var(--violet) 75%, transparent);
  font: 800 11px/1 var(--sans);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-cta:hover,
.glow-button:hover,
.nav-cta:focus-visible,
.glow-button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 0 11px #fff,
    0 0 28px var(--violet);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
}
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  display: none !important;
}
.site-menu {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  height: 280px;
  background: linear-gradient(rgba(2, 2, 5, 0.97), rgba(2, 2, 5, 0.88));
  transform: translateY(-105%);
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.site-menu.is-open {
  transform: none;
  visibility: visible;
  transition: transform 0.3s ease;
}
.menu-brand-row {
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.menu-brand {
  width: 132px;
  align-items: flex-start;
}
.menu-brand b {
  font-size: 19px;
}
.menu-brand i {
  font-size: 16px;
}
.menu-brand small {
  font-size: 5px;
}
.menu-close {
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  font: 200 48px/1 Arial;
}
.site-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.site-menu nav a {
  height: 48px;
  min-width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 800 13px/1 var(--sans);
  letter-spacing: 0.03em;
}
.site-menu nav span {
  margin-left: 7px;
}
.hero {
  height: 596px;
  position: relative;
  overflow: hidden;
  background: #05050a;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 55%),
    linear-gradient(
      0deg,
      #030305 0%,
      rgba(3, 3, 5, 0.15) 40%,
      rgba(3, 3, 5, 0.18) 100%
    );
}
.hero-copy {
  position: absolute;
  left: max(calc((100% - 1140px) / 2), 40px);
  top: 356.4px;
  width: min(1140px, calc(100% - 80px));
}
.hero-copy > p {
  margin: 0 0 5px;
  font: 700 16px/1 var(--sans);
  letter-spacing: 0.06em;
}
.hero h1 {
  margin: 0;
  font: 500 92px/0.9 var(--display);
  letter-spacing: -0.055em;
  text-shadow: 0 2px 20px #000;
  transform: scaleX(2.15);
  transform-origin: left center;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: -1px;
}
.hero-actions .glow-button {
  min-height: 38px;
  padding: 0 20px;
  font-size: 10px;
}
.events {
  height: 1535.3px;
  position: relative;
  background: #030305;
  overflow: hidden;
}
.events-heading {
  position: absolute;
  left: max(calc((100% - 1140px) / 2), 30px);
  right: max(calc((100% - 1140px) / 2), 30px);
  top: 80px;
}
.events-heading p {
  margin: 0;
  font: 500 14px/14px var(--sans);
  letter-spacing: 0.03em;
}
.events-heading h2,
.community h2,
.venue-copy h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
}
.events-heading h2 {
  margin: 30px 0 0;
  font-size: 57px;
  line-height: 57px;
  text-align: center;
  transform: scaleX(1.975);
  transform-origin: center;
}
.poster-collage {
  position: absolute;
  left: calc(50% - 570px);
  top: 217px;
  width: 1140px;
  height: 437px;
}
.poster {
  position: absolute;
  width: 396.7px;
  height: 396.7px;
  border: 3px solid #eee;
  background: #09080e;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5);
}
.poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.poster > div {
  position: absolute;
  inset: 0;
  padding: 25px 23px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 2px 8px #000;
}
.poster small {
  font: 800 10px/1 var(--sans);
  letter-spacing: 0.12em;
}
.poster strong {
  margin-top: auto;
  font: 900 49px/0.82 var(--sans);
  letter-spacing: -0.07em;
  text-transform: uppercase;
}
.poster span {
  margin-top: 12px;
  font: 800 8px/1 var(--sans);
  letter-spacing: 0.12em;
  color: var(--lime);
}
.poster-one {
  left: 0;
  top: 40px;
}
.poster-two {
  left: 371.7px;
  top: 0;
  z-index: 2;
}
.poster-three {
  right: 0;
  top: 40px;
}
.event-schedule {
  position: absolute;
  left: 50%;
  top: 693.7px;
  width: 1056px;
  height: 760px;
  transform: translateX(-50%);
}
.month {
  height: 64px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.month strong {
  font: 500 28px/33.6px var(--display);
  white-space: nowrap;
}
.month span {
  height: 1px;
  flex: 1;
  background: #fff;
  margin-top: 18px;
}
.event-row {
  position: relative;
  height: 368px;
  display: grid;
  grid-template-columns: 96px 1fr 320px;
  column-gap: 26px;
  border-left: 2px solid #ff315a;
}
.date {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.date small {
  font-size: 11px;
  color: #ff315a;
  font-weight: 800;
}
.date b {
  font: 500 29px/1 var(--display);
}
.event-copy {
  padding-top: 41.3px;
}
.event-copy h3 {
  margin: 0;
  max-width: 565px;
  font: 800 24px/1.42 var(--sans);
}
.event-title-mobile {
  display: none;
}
.event-title-wide {
  display: inline-block;
  transform: scaleX(3.245);
  transform-origin: left center;
}
.event-copy p {
  margin: 12px 0 22px;
  font-size: 10px;
  letter-spacing: 0.03em;
  color: #ddd;
}
.event-copy a {
  display: block;
  max-width: 520px;
  font-size: 13px;
  line-height: 1.6;
  color: #bbb;
  text-decoration: underline;
}
.event-art {
  position: relative;
  width: 320px;
  height: 320px;
  margin-top: 9.6px;
  overflow: hidden;
}
.event-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-art > strong {
  position: absolute;
  left: 18px;
  bottom: 20px;
  font: 900 33px/0.85 var(--sans);
  letter-spacing: -0.05em;
  text-shadow: 0 2px 8px #000;
}
.event-art > span {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 8px;
  background: #ff274f;
  font: 800 9px/1 var(--sans);
  text-align: center;
}
.event-art > span b {
  font-size: 18px;
}
.event-row-two .event-copy {
  padding-top: 41.3px;
}
.event-row-two .date {
  padding-top: 20px;
}
.marquee {
  height: 85px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(100deg, var(--cyan), var(--violet));
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-visible .marquee-track {
  animation-play-state: paused;
}
.marquee b {
  font: 700 15px/1 var(--sans);
}
.marquee strong {
  font: 800 31px/1 var(--sans);
}
.marquee i {
  font-style: normal;
  font-size: 23px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.community {
  height: 479.1px;
  position: relative;
  overflow: hidden;
  background: #030305;
  padding-top: 80px;
  text-align: center;
}
.community h2 {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  font-size: 57px;
  line-height: 0.9;
  transform: scaleX(2.03);
}
.social-grid {
  position: relative;
  z-index: 2;
  margin: 20px auto 0;
  width: 390px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 10px;
}
.social-grid a {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-grid svg {
  width: 90px;
  height: 90px;
  fill: #fff;
  stroke: #030305;
  stroke-width: 1.5;
}
.social-grid a:hover svg {
  fill: var(--cyan);
}
.orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 420px;
  height: 170px;
  top: 190px;
}
.orbit:after,
.orbit:before {
  content: "";
  position: absolute;
  inset: 25px -55px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: rotate(20deg);
}
.orbit:after {
  transform: rotate(-20deg);
}
.orbit-left {
  left: -120px;
  transform: rotate(18deg);
}
.orbit-right {
  right: -120px;
  transform: rotate(-18deg);
}
.venue-section {
  height: 350.6px;
  position: relative;
  display: block;
  background: #030305;
}
.venue-arena {
  margin-top: 50px;
}
.venue-vip {
  margin-top: 49.9px;
}
.venue-image {
  position: absolute;
  left: 0;
  width: 46.7%;
  height: 350.6px;
  overflow: hidden;
}
.venue-lounge .venue-image,
.venue-arena .venue-image {
  top: 38.3px;
}
.venue-vip .venue-image {
  top: 51px;
}
.venue-arena .venue-image {
  left: 53.3%;
}
.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-lounge .venue-image img {
  object-position: center 56%;
}
.venue-arena .venue-image img {
  object-position: center 56%;
}
.venue-vip .venue-image img {
  object-position: center 45%;
}
.spark {
  position: absolute;
  left: calc(46.7% - 15px);
  top: 50%;
  font-size: 31px;
  text-align: center;
}
.venue-arena .spark {
  left: calc(53.3% - 15px);
}
.venue-copy {
  position: absolute;
  left: calc(46.7% + 20px);
  width: calc(46.7% - 20px);
  overflow: hidden;
  padding: 0;
  padding-top: 30px;
}
.venue-arena .venue-copy {
  left: calc(6.6% + 20px);
}
.venue-copy h2 {
  margin: 0 0 16px;
  font-size: 50px;
  line-height: 0.9;
  transform-origin: left center;
}
.venue-lounge .venue-copy h2 {
  transform: scaleX(1.97);
}
.venue-arena .venue-copy h2 {
  transform: scaleX(2.04);
}
.venue-vip .venue-copy h2 {
  transform: scaleX(1.84);
}
.tablet-break {
  display: none;
}
.venue-copy p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: #d5d3d9;
  max-width: 520px;
}
.glow-button.small {
  min-height: 42px;
  padding: 0;
  font-size: 14px;
  margin-top: 5px;
}
.venue-lounge .glow-button.small {
  position: relative;
  top: 14.2px;
  width: 206.5px;
}
.venue-arena .glow-button.small {
  position: relative;
  top: 14.2px;
  width: 232.5px;
}
.venue-vip .glow-button.small {
  position: relative;
  top: 39.3px;
  width: 188px;
}
.partners {
  height: 470px;
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  background: #090811;
}
.partners > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.partners-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}
.partners-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
}
.partners h2 {
  margin: 0 0 165px;
  padding: 10px 26px;
  border: 1px solid #fff;
  border-radius: 999px;
  font: 800 14px/1 var(--sans);
  letter-spacing: 0.04em;
}
.partner-marks {
  display: flex;
  align-items: center;
  gap: 84px;
}
.partner-marks strong {
  min-width: 0;
  display: grid;
  grid-template-columns: 55px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  font: 900 30px/1 var(--sans);
  letter-spacing: 0.08em;
}
.partner-marks strong:first-child {
  width: 433.2px;
}
.partner-marks strong:last-child {
  width: 264.2px;
}
.partner-marks strong > span {
  display: block;
  width: max-content;
  transform: scaleX(2.35);
  transform-origin: left center;
}
.partner-marks strong:last-child > span {
  transform: scaleX(1.35);
}
.partner-marks i {
  grid-row: 1/3;
  font-style: normal;
  font-size: 45px;
  color: var(--cyan);
}
.partner-marks small {
  font-size: 8px;
  letter-spacing: 0.15em;
  margin-top: 5px;
  color: #d9d7df;
}
.site-footer {
  height: 462.5px;
  position: relative;
  background:
    radial-gradient(
      circle at 76% 30%,
      rgba(73, 29, 110, 0.22),
      transparent 28%
    ),
    #020203;
  padding: 50px 150px 24px;
  display: grid;
  grid-template-columns: 190px 360px 1fr;
  grid-template-rows: 125px 120px 1fr;
  column-gap: 44px;
}
.footer-brand .brand {
  align-items: flex-start;
  width: 181px;
}
.footer-brand .brand b {
  font-size: 28px;
}
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.footer-info h3 {
  margin: 0 0 10px;
  font: 800 11px/1 var(--sans);
  letter-spacing: 0.08em;
}
.footer-info p {
  margin: 0;
  font-size: 9px;
  line-height: 1.45;
  color: #d6d3da;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  align-content: start;
  gap: 9px 28px;
}
.footer-nav a {
  font-size: 10px;
  color: #ddd;
}
.footer-socials {
  grid-column: 2/4;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-weight: 800;
}
.footer-legal {
  grid-column: 1/4;
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #aaa;
}
.footer-legal p {
  margin: 0;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  transform: translateX(-50%);
  padding: 12px 18px;
  background: #fff;
  color: #000;
  border-radius: 5px;
  font-size: 13px;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(36px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 2s ease,
    transform 2s ease;
}

@media (min-width: 900px) and (max-width: 1199px) {
  .site-header {
    height: 82px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .brand {
    align-items: flex-start;
    width: 150px;
  }
  .hero {
    height: 679px;
  }
  .hero-image {
    object-position: center;
  }
  .hero-copy {
    left: 40px;
    top: 491.8px;
    width: 954px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 64px;
    line-height: 0.9;
  }
  .hero-actions {
    margin-top: 5px;
  }
  .events {
    height: 1310.5px;
  }
  .events-heading {
    left: 30px;
    right: 30px;
    top: 80px;
  }
  .events-heading h2 {
    font-size: 51px;
    line-height: 0.3;
    margin-top: 24px;
  }
  .poster-collage {
    left: calc(50% - 482px);
    top: 168.3px;
    width: 964px;
    height: 378px;
  }
  .poster {
    width: 338px;
    height: 338px;
  }
  .poster-one {
    top: 40px;
    left: 0;
  }
  .poster-two {
    left: 313px;
  }
  .poster-three {
    right: 0;
  }
  .poster strong {
    font-size: 42px;
  }
  .event-schedule {
    top: 586.3px;
    width: 880px;
    height: 700px;
  }
  .event-row {
    height: 309.3px;
    grid-template-columns: 78px 1fr 261.3px;
    gap: 25px;
  }
  .event-art {
    width: 261.3px;
    height: 261.3px;
  }
  .event-copy h3 {
    font-size: 24px;
  }
  .event-art > strong {
    font-size: 27px;
  }
  .community {
    height: 472.8px;
    padding-top: 83px;
  }
  .community h2 {
    font-size: 51px;
  }
  .venue-section {
    grid-template-columns: 46.7% 6.6% 46.7%;
  }
  .venue-lounge {
    height: 303.4px;
  }
  .venue-arena {
    height: 258.4px;
    margin-top: 50px;
  }
  .venue-vip {
    height: 320.8px;
    margin-top: 50px;
  }
  .venue-lounge .venue-image {
    top: 19.9px;
  }
  .venue-arena .venue-image {
    top: 27.3px;
  }
  .venue-vip .venue-image {
    top: 34.7px;
  }
  .venue-image {
    height: 249.2px;
  }
  .venue-copy {
    padding: 33px 0 0;
  }
  .venue-copy h2 {
    font-size: 50px;
  }
  .venue-lounge .glow-button.small {
    top: 22.8px;
  }
  .venue-arena .glow-button.small {
    top: 22.9px;
  }
  .venue-vip .glow-button.small {
    top: 71.3px;
  }
  .partners {
    height: 420px;
    margin-top: 20px;
  }
  .partners h2 {
    margin-bottom: 134px;
  }
  .partners-content {
    padding-top: 35px;
  }
  .partner-marks {
    gap: 76px;
  }
  .partner-marks strong:first-child {
    width: 389.1px;
  }
  .partner-marks strong:last-child {
    width: 237.3px;
  }
  .site-footer {
    height: 464.1px;
    padding: 50px 30px 22px;
    grid-template-columns: 165px 350px 1fr;
  }
}

@media (min-width: 601px) and (max-width: 899px) {
  .site-header {
    height: 76px;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .brand {
    align-items: flex-start;
    width: 140px;
  }
  .brand b {
    font-size: 23px;
  }
  .brand i {
    font-size: 20px;
  }
  .hero {
    height: 642px;
  }
  .hero-image {
    object-position: center;
  }
  .hero-copy {
    left: 40px;
    top: 467.6px;
    width: 698px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 58px;
    line-height: 0.9;
  }
  .hero-actions {
    margin-top: 4px;
  }
  .events {
    height: 2117.9px;
  }
  .events-heading {
    top: 80px;
    left: 30px;
    right: 30px;
  }
  .events-heading h2 {
    font-size: 45px;
    line-height: 0.3;
    margin-top: 20px;
  }
  .poster-collage {
    left: calc(50% - 354px);
    top: 162.5px;
    width: 708px;
    height: 292.7px;
  }
  .poster {
    width: 252.7px;
    height: 252.7px;
    border-width: 2px;
  }
  .poster-one {
    left: 0;
    top: 40px;
  }
  .poster-two {
    left: 227.7px;
  }
  .poster-three {
    right: 0;
    top: 40px;
  }
  .poster > div {
    padding: 16px;
  }
  .poster strong {
    font-size: 30px;
  }
  .poster small {
    font-size: 7px;
  }
  .poster span {
    font-size: 6px;
  }
  .event-schedule {
    top: 511.2px;
    width: 669px;
    height: 1550px;
  }
  .month {
    height: 53.6px;
  }
  .event-row {
    height: 747.5px;
    display: block;
    border-left: 2px solid #ff315a;
    padding-left: 52px;
  }
  .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 53px;
    padding-top: 28px;
  }
  .event-copy {
    position: absolute;
    left: 52px;
    right: 0;
    top: 655.5px;
    padding: 0;
  }
  .event-copy h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .event-copy p {
    margin: 6px 0;
    font-size: 9px;
  }
  .event-copy a {
    display: none;
  }
  .event-art {
    width: 615px;
    height: 615px;
    margin-top: 0;
  }
  .event-art > strong {
    font-size: 48px;
  }
  .event-row-two .event-copy {
    padding: 0;
    top: 655.5px;
  }
  .event-row-two .date {
    padding-top: 28px;
  }
  .community {
    height: 465.6px;
    padding-top: 83px;
  }
  .community h2 {
    font-size: 42px;
    line-height: 0.8;
  }
  .social-grid {
    margin-top: 20px;
    width: 360px;
  }
  .venue-section {
    grid-template-columns: 46.7% 6.6% 46.7%;
  }
  .venue-lounge {
    height: 317.4px;
  }
  .venue-arena {
    height: 341.4px;
    margin-top: 49.9px;
  }
  .venue-vip {
    height: 427.8px;
    margin-top: 50px;
  }
  .venue-lounge .venue-image {
    top: 15.6px;
  }
  .venue-arena .venue-image,
  .venue-vip .venue-image {
    top: 20.4px;
  }
  .venue-image {
    height: 186.6px;
  }
  .venue-copy {
    padding: 33px 0 0;
  }
  .venue-copy h2 {
    font-size: 45px;
    line-height: 0.9;
  }
  .tablet-break {
    display: initial;
  }
  .venue-copy p {
    font-size: 12px;
  }
  .glow-button.small {
    min-height: 41px;
    font-size: 13px;
  }
  .venue-lounge .glow-button.small {
    top: 52.9px;
    width: 196.5px;
  }
  .venue-arena .glow-button.small {
    top: 77.1px;
    width: 222.5px;
  }
  .venue-vip .glow-button.small {
    top: 112.3px;
    width: 178px;
  }
  .partners {
    height: 420px;
    margin-top: 20px;
  }
  .partners h2 {
    margin-bottom: 135px;
  }
  .partners-content {
    padding-top: 30px;
  }
  .partner-marks {
    gap: 57px;
  }
  .partner-marks strong {
    font-size: 26px;
  }
  .partner-marks strong:first-child {
    width: 291.8px;
  }
  .partner-marks strong:last-child {
    width: 178px;
  }
  .site-footer {
    height: 503.3px;
    padding: 50px 30px 24px;
    grid-template-columns: 130px 300px 1fr;
    grid-template-rows: 145px 140px 1fr;
    column-gap: 25px;
  }
  .footer-info {
    gap: 15px;
  }
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .footer-socials {
    grid-column: 2/4;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 65.3px;
    display: flex;
    justify-content: space-between;
    padding: 0 14px;
  }
  .site-header > .brand {
    align-items: flex-start;
    width: 118px;
    transform: scaleX(1.25);
    transform-origin: left center;
  }
  .site-header .brand b {
    font-size: 27px;
  }
  .site-header .brand i {
    font-size: 22px;
  }
  .site-header .brand small {
    font-size: 4.5px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
  }
  .site-menu {
    top: 60px;
    height: 160px;
  }
  .menu-brand-row {
    display: block;
    height: 0;
    padding: 0;
  }
  .menu-brand {
    display: none;
  }
  .menu-close {
    position: absolute;
    top: -52px;
    right: 14px;
  }
  .site-menu nav a {
    height: 44px;
    min-height: 44px;
  }
  .site-menu nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }
  .site-menu nav a + a {
    margin-top: -5px;
  }
  body.menu-open .site-header .menu-toggle {
    visibility: hidden;
  }
  .hero {
    height: 361.3px;
  }
  .hero-image {
    object-position: 78% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #030305 0%,
      rgba(3, 3, 5, 0.08) 48%,
      rgba(3, 3, 5, 0.26) 100%
    );
  }
  .hero-copy {
    left: 20px;
    top: 220.3px;
    width: 350px;
  }
  .hero-copy > p {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: 27px;
    line-height: 27px;
    letter-spacing: -0.045em;
  }
  .hero-actions {
    gap: 4px;
    margin-left: 4px;
    margin-top: 14px;
  }
  .hero-actions .glow-button {
    isolation: isolate;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 11px;
  }
  .hero-actions .glow-button::before,
  .venue-copy .glow-button.small::before {
    position: absolute;
    inset: 5.5px 0;
    z-index: -1;
    border: 1.5px solid #fff;
    border-radius: 999px;
    background: linear-gradient(95deg, var(--cyan), var(--violet));
    box-shadow:
      0 0 8px #fff,
      0 0 20px color-mix(in srgb, var(--violet) 75%, transparent);
    content: "";
  }
  .hero-actions .glow-button:first-child {
    width: 127px;
  }
  .hero-actions .glow-button:last-child {
    width: 149.5px;
  }
  .events {
    height: 2011.7px;
  }
  .events-heading {
    left: 20px;
    right: 20px;
    top: 30px;
  }
  .events-heading p {
    font-size: 11px;
    line-height: 11px;
    white-space: nowrap;
  }
  .events-heading h2 {
    margin-top: 0;
    font-size: 20px;
    line-height: 24px;
    transform: scaleX(1.974);
  }
  .poster-collage {
    left: 30px;
    top: 90px;
    width: 330px;
    height: 1030px;
  }
  .poster {
    position: absolute;
    left: 0 !important;
    top: auto;
    width: 330px;
    height: 330px;
    border-width: 3px;
  }
  .poster-one {
    top: 0 !important;
  }
  .poster-two {
    top: 350px !important;
  }
  .poster-three {
    top: 700px !important;
  }
  .poster > div {
    padding: 22px 19px;
  }
  .poster strong {
    font-size: 42px;
  }
  .poster small {
    font-size: 8px;
  }
  .poster span {
    font-size: 7px;
  }
  .event-schedule {
    left: 39.5px;
    top: 1146px;
    width: 311px;
    height: 830px;
    transform: none;
  }
  .month {
    height: 53.6px;
    gap: 13px;
  }
  .month strong {
    font-size: 12px;
    line-height: 33.6px;
  }
  .month span {
    margin-top: 16px;
  }
  .event-row {
    height: 419.6px;
    display: block;
    border-left: 2px solid #ff315a;
    padding-left: 52px;
  }
  .date {
    position: absolute;
    left: 0;
    top: 0;
    width: 53px;
    padding-top: 17px;
  }
  .date small {
    font-size: 8px;
  }
  .date b {
    font-size: 17px;
  }
  .event-art {
    width: 257px;
    height: 257px;
    margin-top: 0;
  }
  .event-art > strong {
    font-size: 31px;
  }
  .event-art > span {
    font-size: 7px;
  }
  .event-copy {
    position: absolute;
    left: 52px;
    top: 297.6px;
    right: 0;
    padding: 0;
  }
  .event-copy h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .event-title-wide {
    display: none;
  }
  .event-title-mobile {
    display: inline-block;
    transform: scaleX(1.556);
    transform-origin: left center;
  }
  .event-copy p {
    margin: 6px 0 0;
    font-size: 8px;
  }
  .event-copy a {
    display: none;
  }
  .event-row-two .event-copy {
    top: 297.6px;
    padding: 0;
  }
  .event-row-two .date {
    padding-top: 17px;
  }
  .marquee {
    height: 73px;
  }
  .marquee-track {
    gap: 15px;
    animation-duration: 16s;
  }
  .marquee b {
    font-size: 11px;
  }
  .marquee strong {
    font-size: 22px;
  }
  .marquee i {
    font-size: 15px;
  }
  .community {
    height: 333.8px;
    padding-top: 50px;
  }
  .community h2 {
    font-size: 19px;
    line-height: 22.8px;
  }
  .social-grid {
    margin-top: 0;
    width: 350px;
    height: 211px;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .social-grid a {
    height: 88px;
  }
  .social-grid svg {
    width: 82px;
    height: 82px;
  }
  .orbit {
    width: 290px;
    height: 100px;
    top: 145px;
  }
  .orbit-left {
    left: -145px;
  }
  .orbit-right {
    right: -145px;
  }
  .venue-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .venue-lounge {
    height: 458.5px;
  }
  .venue-arena {
    height: 482.5px;
    margin-top: 20px;
  }
  .venue-vip {
    height: 568.9px;
    margin-top: 50px;
  }
  .venue-lounge .venue-image {
    top: 12.1px;
  }
  .venue-arena .venue-image {
    top: 16.2px;
  }
  .venue-vip .venue-image {
    top: 22.2px;
  }
  .venue-arena .venue-copy {
    order: 2;
    left: auto;
  }
  .venue-arena .spark {
    order: 1;
    left: auto;
  }
  .venue-arena .venue-image {
    order: 0;
    left: auto;
  }
  .venue-image {
    position: relative;
    left: auto;
    width: 100%;
    height: 203.1px;
    min-height: 203.1px;
  }
  .venue-image img {
    object-position: center 56%;
  }
  .spark {
    position: absolute;
    left: auto;
    right: 9px;
    top: 203px;
    font-size: 21px;
    z-index: 2;
  }
  .venue-copy {
    position: relative;
    left: auto;
    width: 100%;
    flex: 1;
    padding: 30px 20px 0;
  }
  .venue-copy h2 {
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 24px;
  }
  .venue-lounge .venue-copy h2 {
    transform: scaleX(2.01);
  }
  .lounge-break {
    display: none;
  }
  .tablet-break {
    display: none;
  }
  .venue-copy p {
    font-size: 10px;
    line-height: 1.45;
    margin-bottom: 10px;
    max-width: 331px;
  }
  .glow-button.small {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 20px;
    isolation: isolate;
    min-height: 44px;
    padding: 5px 0 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 11px;
  }
  .venue-copy .glow-button.small::before {
    inset: 5px 0 0;
  }
  .venue-lounge .glow-button.small {
    position: absolute;
    top: auto;
    width: 173.5px;
  }
  .venue-arena .glow-button.small {
    position: absolute;
    top: auto;
    width: 195.5px;
  }
  .venue-vip .glow-button.small {
    position: absolute;
    top: auto;
    width: 159px;
  }
  .partners {
    height: 375px;
    margin-top: 20.1px;
  }
  .partners > img {
    object-position: center;
  }
  .partners h2 {
    margin: 0 0 92px;
    padding: 7px 17px;
    font-size: 10px;
  }
  .partners-content {
    padding-top: 45px;
  }
  .partner-marks {
    width: 350px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .partner-marks strong {
    grid-template-columns: 48px 1fr;
    font-size: 30px;
  }
  .partner-marks strong:first-child {
    width: 350px;
  }
  .partner-marks strong:last-child {
    width: 213.5px;
    margin-left: 68.3px;
    font-size: 25px;
  }
  .partner-marks strong > span {
    transform: scaleX(2);
  }
  .partner-marks strong:last-child > span {
    transform: scaleX(1.15);
  }
  .partner-marks i {
    font-size: 37px;
  }
  .partner-marks small {
    font-size: 7px;
  }
  .site-footer {
    height: 712.4px;
    padding: 50px 30px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 90px 155px 176px 58px 1fr;
    gap: 0 18px;
  }
  .footer-brand {
    grid-column: 1/3;
  }
  .footer-brand .brand {
    width: 221px;
    transform: scaleX(1.3);
    transform-origin: left top;
  }
  .footer-brand .brand b {
    font-size: 48px;
  }
  .footer-brand .brand i {
    font-size: 40px;
  }
  .footer-info {
    grid-column: 1/3;
    grid-row: 2;
    gap: 16px;
  }
  .footer-info h3 {
    font-size: 10px;
  }
  .footer-info p {
    font-size: 8px;
    line-height: 1.45;
  }
  .footer-nav {
    grid-column: 1/3;
    grid-row: 3;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 22px;
  }
  .footer-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 10.5px;
  }
  .footer-socials {
    grid-column: 1/3;
    grid-row: 4;
  }
  .footer-socials a {
    position: relative;
    isolation: isolate;
    width: 44px;
    height: 44px;
    border: 0;
  }
  .footer-socials a::before {
    position: absolute;
    inset: 7px;
    z-index: -1;
    border: 1px solid #fff;
    border-radius: 50%;
    content: "";
  }
  .footer-legal {
    grid-column: 1/3;
    grid-row: 5;
    align-self: end;
    display: block;
    text-align: center;
    font-size: 7px;
    line-height: 1.5;
  }
  .footer-legal p {
    margin: 3px 0;
  }
  .toast {
    max-width: calc(100% - 32px);
    width: max-content;
    text-align: center;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .site-menu,
  .site-menu.is-open {
    transition: none;
  }
  .marquee-track {
    animation: none;
  }
  .reveal,
  html.js .reveal,
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .nav-cta,
  .glow-button {
    transition: none;
  }
}
