:root {
  --black: #030305;
  --black-soft: #0a0a0d;
  --panel: #111115;
  --steel: #cfd5d5;
  --muted: #979b9d;
  --red: #d30912;
  --red-bright: #ff1b24;
  --gold: #c88b08;
  --gold-bright: #f0b72a;
  --line: rgba(255, 255, 255, 0.13);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 2%, rgba(211, 9, 18, 0.12), transparent 30rem),
    var(--black);
  color: #f4f5f5;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(14deg, transparent 0 19px, rgba(255, 255, 255, 0.12) 20px, transparent 21px),
    repeating-linear-gradient(93deg, transparent 0 43px, rgba(255, 255, 255, 0.06) 44px, transparent 45px);
  mix-blend-mode: overlay;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 1rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  transform: translateY(-200%);
  background: #fff;
  color: #000;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0.55rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(211, 9, 18, 0.6);
  background: rgba(3, 3, 5, 0.91);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.75rem;
  width: max-content;
}

.brand__logo {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: #fff;
  clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 0.86;
  text-transform: uppercase;
  transform: skew(-5deg);
}

.brand__text strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.42rem;
  letter-spacing: 0.07em;
}

.brand__text small {
  color: var(--red-bright);
  font-size: 0.83rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.45em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  padding: 0 1rem;
}

.desktop-nav a {
  position: relative;
  color: #cfd1d2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--red);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 0 26px rgba(211, 9, 18, 0.22);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-bright);
  box-shadow: 0 8px 32px rgba(211, 9, 18, 0.35);
}

.button--header {
  justify-self: end;
}

.hero {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.hero__poster {
  position: relative;
  min-height: min(740px, calc(100vh - 74px));
  overflow: hidden;
  background: #000;
}

.hero__poster > img {
  width: 100%;
  height: 100%;
  min-height: min(740px, calc(100vh - 74px));
  object-fit: cover;
  object-position: center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__action {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 2rem;
  left: max(1.25rem, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1rem 1rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-left: 3px solid var(--red);
  background: rgba(4, 4, 6, 0.84);
  backdrop-filter: blur(10px);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.hero__action > div {
  display: flex;
  flex-direction: column;
}

.hero__action strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red-bright);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-bright);
}

.countdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 2rem), var(--max));
  margin: -1px auto 0;
  padding: 1.1rem 1.4rem;
  border: 1px solid rgba(211, 9, 18, 0.42);
  border-top: 0;
  background:
    linear-gradient(90deg, rgba(211, 9, 18, 0.15), transparent 45%),
    #09090c;
}

.countdown__label {
  display: flex;
  flex-direction: column;
}

.countdown__label strong {
  font-size: 1rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.countdown__values {
  display: flex;
  gap: clamp(0.8rem, 3vw, 2.5rem);
}

.countdown__unit {
  display: grid;
  min-width: 56px;
  text-align: center;
}

.countdown__unit strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.65rem);
  font-weight: 400;
  line-height: 1;
}

.countdown__unit span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 2rem), var(--max));
  margin: 2rem auto 0;
  border-block: 1px solid var(--line);
}

.event-strip article {
  position: relative;
  padding: 1.25rem clamp(1rem, 3vw, 2.2rem);
}

.event-strip article + article {
  border-left: 1px solid var(--line);
}

.event-strip article::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 5px;
  height: 18px;
  content: "";
  transform: translateY(-50%);
  background: var(--red);
}

.event-strip article:first-child::before {
  display: none;
}

.event-strip span {
  display: block;
  color: var(--red-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-strip strong {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.vip-section h2,
.location-section h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.75rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 640px;
  margin: 1.25rem 0 0;
  color: #bfc2c3;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.section-heading--center p {
  margin-inline: auto;
}

.section--intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.intro-copy {
  position: relative;
  padding: 1.75rem 0 0 2rem;
  border-left: 2px solid var(--red);
}

.intro-copy p {
  margin: 0;
  color: #c7c9ca;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.edition-mark {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--red);
  text-transform: uppercase;
}

.edition-mark span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.edition-mark strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.8;
}

.fight-card {
  position: relative;
}

.fight-card::before {
  position: absolute;
  z-index: -1;
  top: 25%;
  right: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  content: "";
  background: rgba(211, 9, 18, 0.12);
  filter: blur(70px);
}

.versus-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  min-height: 500px;
  margin-top: 3.5rem;
  overflow: hidden;
  border: 1px solid rgba(211, 9, 18, 0.5);
  background:
    linear-gradient(90deg, rgba(211, 9, 18, 0.14), transparent 33%, transparent 67%, rgba(211, 9, 18, 0.14)),
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(255, 255, 255, 0.026) 29px 30px),
    #09090c;
  clip-path: polygon(24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px), 0 24px);
}

.versus-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(72deg, transparent 43%, rgba(211, 9, 18, 0.72) 43.2% 43.7%, transparent 44%),
    linear-gradient(108deg, transparent 56%, rgba(211, 9, 18, 0.72) 56.2% 56.7%, transparent 57%);
  opacity: 0.6;
}

.fighter {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding: 2rem 1rem;
}

.fighter--right {
  transform: scaleX(-1);
}

.fighter--right > * {
  transform: scaleX(-1);
}

.fighter__number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: rgba(255, 255, 255, 0.12);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}

.fighter__silhouette {
  position: relative;
  width: min(82%, 280px);
  height: 330px;
  border-radius: 48% 52% 14% 14% / 30% 30% 10% 10%;
  background:
    radial-gradient(circle at 54% 14%, #1b1b20 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 50% 56%, #17171b 0 35%, transparent 35.5%),
    linear-gradient(100deg, transparent 25%, #151519 25% 75%, transparent 75%);
  filter: drop-shadow(0 0 22px rgba(211, 9, 18, 0.36));
}

.fighter__silhouette::after {
  position: absolute;
  right: 4%;
  bottom: 10%;
  left: 7%;
  height: 46%;
  content: "";
  transform: skew(-8deg);
  background: repeating-linear-gradient(-20deg, transparent 0 19px, rgba(211, 9, 18, 0.32) 20px 22px);
}

.fighter > strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fighter > small {
  color: var(--red-bright);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.versus-stage__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  padding: 1.5rem;
  background: #08080b;
  text-align: center;
  clip-path: polygon(50% 0, 100% 18%, 88% 86%, 50% 100%, 12% 86%, 0 18%);
}

.versus-stage__center span,
.versus-stage__center small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.versus-stage__center span {
  color: var(--red-bright);
}

.versus-stage__center small {
  color: var(--muted);
}

.versus-stage__center strong {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-shadow: 5px 5px 0 var(--red);
}

.tickets-section {
  padding-top: 4rem;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 3rem;
}

.ticket-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0c0c0f;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
}

.ticket-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid transparent;
  content: "";
  background: linear-gradient(135deg, var(--red), transparent 20%, transparent 80%, var(--red)) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.ticket-card--gold::after {
  background: linear-gradient(135deg, var(--gold-bright), transparent 22%, transparent 78%, var(--gold-bright)) border-box;
}

.ticket-card__image {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.ticket-card:hover .ticket-card__image img {
  transform: scale(1.035);
}

.ticket-card__body {
  min-height: 230px;
  padding: 1.4rem;
}

.ticket-card__topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.ticket-card h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.ticket-card__topline > strong {
  color: var(--red-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.ticket-card--gold .ticket-card__topline > strong,
.ticket-card--gold .text-link {
  color: var(--gold-bright);
}

.ticket-card p {
  min-height: 3em;
  margin: 1rem 0 1.3rem;
  color: #adb0b2;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  color: var(--red-bright);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.vip-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 1600px;
  margin: 2rem auto 0;
  border-block: 1px solid rgba(200, 139, 8, 0.45);
  background:
    radial-gradient(circle at 75% 20%, rgba(240, 183, 42, 0.17), transparent 26rem),
    #070709;
}

.vip-section__visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.vip-section__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 48%, #070709 100%);
}

.vip-section__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% center;
}

.vip-section__content {
  align-self: center;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem) 2rem;
}

.vip-section__content > p {
  max-width: 550px;
  margin: 1.5rem 0 2rem;
  color: #c7c8c8;
  font-size: 1.05rem;
}

.benefits-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid rgba(200, 139, 8, 0.25);
}

.benefits-list li:last-child {
  border-bottom: 1px solid rgba(200, 139, 8, 0.25);
}

.benefits-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefits-list strong {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vip-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 2rem;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.vip-price span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.vip-price strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 0.8;
}

.sales-section {
  padding-bottom: 5rem;
}

.sales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.sales-grid article {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(211, 9, 18, 0.11), transparent 60%), #0a0a0d;
}

.sales-grid article::after {
  position: absolute;
  right: -20px;
  bottom: -60px;
  color: rgba(255, 255, 255, 0.025);
  content: "GF";
  font-family: Impact, sans-serif;
  font-size: 11rem;
  line-height: 1;
}

.sales-grid__number {
  color: var(--red-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.sales-grid h3 {
  margin: 1.2rem 0 0.7rem;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sales-grid p {
  max-width: 320px;
  margin: 0 0 1.5rem;
  color: #aeb1b2;
}

.status-pill {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(211, 9, 18, 0.55);
  color: var(--red-bright);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 650px;
  border-block: 1px solid rgba(211, 9, 18, 0.4);
  background: #070709;
}

.location-section__map {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background:
    linear-gradient(rgba(211, 9, 18, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 9, 18, 0.18) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(211, 9, 18, 0.23), transparent 30rem),
    #0a0a0e;
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(211, 9, 18, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring--one {
  width: 280px;
  height: 280px;
}

.map-ring--two {
  width: 450px;
  height: 450px;
  border-color: rgba(211, 9, 18, 0.15);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -70%) rotate(45deg);
  border: 2px solid var(--red-bright);
  border-radius: 50% 50% 50% 0;
  background: #0b0b0d;
  box-shadow: 0 0 42px rgba(211, 9, 18, 0.5);
}

.map-pin span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
}

.map-label {
  position: absolute;
  top: calc(50% + 85px);
  left: 50%;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  text-align: center;
  text-transform: uppercase;
}

.map-label strong {
  font-family: Impact, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.map-label span {
  color: var(--red-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.location-section__content {
  align-self: center;
  max-width: 570px;
  padding: clamp(3rem, 8vw, 7rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  padding-left: clamp(2rem, 6vw, 5.5rem);
}

.location-section__content address {
  margin: 1.6rem 0 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-style: normal;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-section__content p {
  max-width: 480px;
  margin: 1.3rem 0 2rem;
  color: #aeb0b1;
}

.button--outline {
  background: transparent;
}

.button--outline:hover {
  background: var(--red);
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 8rem);
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--red-bright);
  content: "+";
  font-family: Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list p {
  max-width: 620px;
  margin: -0.3rem 0 1.4rem;
  color: #aeb1b2;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem max(1rem, calc((100vw - var(--max)) / 2)) 6rem;
  border-top: 1px solid rgba(211, 9, 18, 0.5);
  background: #050507;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.site-footer__brand strong {
  font-family: Impact, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.07em;
}

.site-footer__brand span,
.site-footer > p {
  color: #777b7d;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__contact {
  display: flex;
  gap: 1.4rem;
}

.site-footer__contact a {
  color: #d7d8d8;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__contact a:hover {
  color: var(--red-bright);
}

.site-footer > p {
  margin: 0;
  text-align: right;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero__poster,
  .hero__poster > img {
    min-height: 600px;
  }

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

  .ticket-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
  }

  .ticket-card__image {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px dashed rgba(255, 255, 255, 0.24);
    border-bottom: 0;
  }

  .ticket-card__body {
    align-self: center;
  }

  .vip-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .vip-section__visual {
    min-height: 430px;
  }

  .vip-section__visual::after {
    background: linear-gradient(180deg, transparent 45%, #070709 100%);
  }

  .vip-section__content {
    padding: 1rem 2rem 4rem;
  }

  .location-section__content {
    max-width: none;
    padding: 4rem 2rem;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    min-height: 62px;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .brand__text strong {
    font-size: 1.1rem;
  }

  .brand__text small {
    font-size: 0.65rem;
  }

  .button--header {
    display: none;
  }

  .hero__poster,
  .hero__poster > img {
    min-height: auto;
  }

  .hero__poster > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 804;
    object-fit: contain;
  }

  .hero__scrim {
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.96) 100%);
  }

  .hero__action {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    align-items: stretch;
    margin: 0 1rem;
    padding: 1.2rem;
    border-top: 0;
    background: #09090c;
  }

  .hero__action strong {
    font-size: 1.2rem;
  }

  .hero__action .button {
    flex: 0 0 auto;
  }

  .countdown {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    margin-top: 1rem;
  }

  .countdown__label {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }

  .countdown__label .eyebrow {
    margin: 0;
  }

  .countdown__values {
    justify-content: space-between;
    gap: 0.35rem;
  }

  .countdown__unit {
    min-width: 0;
  }

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

  .event-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .event-strip article::before,
  .event-strip article:first-child::before {
    top: -3px;
    left: 1rem;
    display: block;
    width: 24px;
    height: 5px;
    transform: none;
  }

  .section--intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .intro-copy {
    padding: 0 0 0 1.2rem;
  }

  .versus-stage {
    grid-template-columns: 1fr 74px 1fr;
    min-height: 390px;
  }

  .fighter {
    padding: 1rem 0.35rem;
  }

  .fighter__number {
    top: 1rem;
    left: 0.7rem;
  }

  .fighter__silhouette {
    width: 100%;
    height: 250px;
  }

  .fighter > strong {
    font-size: 1rem;
  }

  .fighter > small {
    font-size: 0.55rem;
  }

  .versus-stage__center {
    padding: 1rem 0.3rem;
  }

  .versus-stage__center strong {
    font-size: 3.5rem;
  }

  .tickets-grid {
    gap: 1.5rem;
  }

  .ticket-card {
    display: block;
  }

  .ticket-card__image {
    height: auto;
    aspect-ratio: 2 / 1;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
  }

  .ticket-card__body {
    min-height: 0;
  }

  .vip-section__visual {
    min-height: 290px;
  }

  .vip-section__content {
    padding: 1rem 1rem 3rem;
  }

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

  .location-section__map {
    min-height: 420px;
  }

  .map-ring--one {
    width: 220px;
    height: 220px;
  }

  .map-ring--two {
    width: 340px;
    height: 340px;
  }

  .location-section__content {
    padding: 3rem 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .site-footer__contact {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .mobile-ticket-bar {
    position: fixed;
    z-index: 110;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0.7rem 0.8rem 0.7rem 1rem;
    border: 1px solid var(--red-bright);
    background: rgba(7, 7, 9, 0.96);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  }

  .mobile-ticket-bar span {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-ticket-bar strong {
    font-family: Impact, sans-serif;
    font-size: 1.55rem;
    font-weight: 400;
  }

  .mobile-ticket-bar em {
    padding: 0.55rem 0.7rem;
    background: var(--red);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
}

@media (max-width: 460px) {
  .hero__action {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__action .button {
    width: 100%;
  }

  .section-heading h2,
  .vip-section h2,
  .location-section h2 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .ticket-card__topline {
    flex-direction: column;
  }

  .ticket-card p {
    min-height: 0;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
