:root {
  --ink: #17130f;
  --muted: #6c625b;
  --paper: #f7f3ed;
  --white: #fffdf8;
  --red: #c92f2f;
  --gold: #d8ad47;
  --teal: #1d7f76;
  --ring: #26211d;
  --line: rgba(23, 19, 15, 0.14);
  --shadow: 0 24px 70px rgba(23, 19, 15, 0.18);
  --hard-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 13, 10, 0.92);
  border-bottom: 1px solid rgba(216, 173, 71, 0.22);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
  border: 2px solid var(--gold);
  box-shadow: 0 0 22px rgba(216, 173, 71, 0.22);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  margin-top: 2px;
}

.site-header .brand strong {
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu > a,
.dropdown-trigger {
  color: rgba(255, 255, 255, 0.76);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 0;
}

.nav-menu > a:hover,
.dropdown-trigger:hover {
  color: white;
}

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 11px 16px !important;
  font-weight: 800;
}

.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  right: 0;
  min-width: 190px;
  background: #15110e;
  border: 1px solid rgba(216, 173, 71, 0.28);
  box-shadow: var(--hard-shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
}

.dropdown-menu a:hover {
  background: rgba(216, 173, 71, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 173, 71, 0.35);
  background: rgba(255, 255, 255, 0.08);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  min-height: 650px;
  height: calc(100vh - 74px);
  max-height: 820px;
  overflow: hidden;
  background: var(--ring);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ring);
  color: white;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.82), rgba(9, 7, 5, 0.34)),
    linear-gradient(0deg, rgba(9, 7, 5, 0.66), transparent 50%);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero::after {
  content: "FFN";
  position: absolute;
  right: -2vw;
  bottom: 18vh;
  color: rgba(255, 255, 255, 0.055);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(9rem, 21vw, 21rem);
  line-height: 0.8;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 5, 0.82), rgba(9, 7, 5, 0.28) 52%, rgba(9, 7, 5, 0.46)),
    linear-gradient(0deg, rgba(9, 7, 5, 0.58), transparent 42%);
}

.hero-content {
  position: absolute;
  left: max(28px, calc((100vw - 1180px) / 2));
  bottom: 112px;
  width: min(680px, calc(100vw - 56px));
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.9;
  max-width: 760px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.55);
}

h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  width: min(620px, 100%);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 11px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.button,
.ticket-card button,
.newsletter button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.ticket-card button:hover,
.newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.primary {
  background: var(--red);
  color: white;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.hero-fight-poster {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 92px;
  width: min(290px, calc(100vw - 44px));
  padding: 22px;
  color: white;
  background:
    linear-gradient(145deg, rgba(201, 47, 47, 0.82), rgba(16, 13, 10, 0.92) 48%),
    rgba(16, 13, 10, 0.9);
  border: 1px solid rgba(216, 173, 71, 0.42);
  box-shadow: var(--hard-shadow);
}

.hero-fight-poster span,
.hero-fight-poster small {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-fight-poster strong,
.hero-fight-poster em {
  display: block;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-fight-poster strong {
  font-size: 3.7rem;
  line-height: 0.9;
}

.hero-fight-poster em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 1.6rem;
  margin: 4px 0;
}

.ticker {
  display: flex;
  gap: 36px;
  overflow: hidden;
  white-space: nowrap;
  background: var(--red);
  color: white;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ticker span {
  flex: 0 0 auto;
  font-weight: 900;
  text-transform: uppercase;
  animation: tickerMove 18s linear infinite;
}

@keyframes tickerMove {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-120vw);
  }
}

.icon-button,
.rail-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: white;
  border-top: 4px solid var(--gold);
}

.broadcast-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #0f0c0a;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(216, 173, 71, 0.18);
  border-bottom: 1px solid rgba(216, 173, 71, 0.18);
}

.broadcast-strip span {
  min-height: 76px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  text-align: center;
  text-transform: uppercase;
}

.stats-band div {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.stats-band strong {
  color: var(--gold);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
}

.stats-band span {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.route-grid a {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.route-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 71, 0.72);
  box-shadow: var(--shadow);
}

.route-grid span {
  color: var(--red);
  font-weight: 900;
}

.route-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.split,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.section-copy p:not(.eyebrow),
.experience p,
.ticket-card p,
.fighter-card p,
.accordion-panel,
.prediction-copy {
  color: var(--muted);
  line-height: 1.7;
}

.about-panel,
.predictor {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
}

.poster-section {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  background: #100d0a;
  color: white;
}

.poster-media {
  position: relative;
  min-height: 620px;
}

.poster-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}

.poster-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(16, 13, 10, 0.2)),
    linear-gradient(0deg, rgba(16, 13, 10, 0.52), transparent 55%);
}

.poster-score {
  position: absolute;
  left: max(22px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 1;
  color: white;
}

.poster-score span,
.poster-score strong {
  display: block;
}

.poster-score span {
  color: var(--gold);
  font-weight: 900;
}

.poster-score strong {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.poster-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2)) 70px 54px;
}

.poster-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 620px;
}

.versus-lockup {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 14px;
  align-items: center;
  max-width: 620px;
}

.versus-lockup div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.versus-lockup img {
  width: 100%;
  aspect-ratio: 1 / 0.9;
  object-fit: cover;
}

.versus-lockup strong,
.versus-lockup span {
  display: block;
  padding: 0 14px;
}

.versus-lockup strong {
  margin-top: 12px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.2rem;
}

.versus-lockup span {
  color: var(--gold);
  font-weight: 900;
  padding-bottom: 14px;
}

.versus-lockup b {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
  box-shadow: 0 0 0 7px rgba(201, 47, 47, 0.16);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  padding: 13px 0 13px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.segment,
select {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 11px 13px;
  cursor: pointer;
}

.segment.active {
  background: var(--ink);
  color: white;
}

.fight-carousel-wrap {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 14px;
}

.fight-carousel-wrap .rail-button {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

.fight-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) #eadfce;
}

.fight-card {
  min-height: 480px;
  scroll-snap-align: start;
  background: #15110e;
  color: white;
  border: 1px solid var(--line);
  padding: 0 0 24px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(23, 19, 15, 0.16);
}

.fight-card > img {
  width: 100%;
  aspect-ratio: 1 / 0.64;
  object-fit: cover;
  border-bottom: 3px solid var(--red);
}

.fight-card > :not(img) {
  margin-left: 24px;
  margin-right: 24px;
}

.fight-card.is-hidden {
  display: none;
}

.tag {
  width: fit-content;
  background: rgba(201, 47, 47, 0.12);
  color: var(--red);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.fight-card p {
  color: var(--gold);
  font-weight: 900;
  margin: 6px 0;
  text-transform: uppercase;
}

.fight-card dl {
  color: rgba(255, 255, 255, 0.86);
}

dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: rgba(255, 255, 255, 0.58);
}

dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.dark-section {
  width: 100%;
  max-width: none;
  background:
    linear-gradient(rgba(16, 13, 10, 0.92), rgba(16, 13, 10, 0.94)),
    url("https://images.unsplash.com/photo-1517438322307-e67111335449?auto=format&fit=crop&w=1800&q=70") center/cover fixed;
  color: white;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
}

.dark-section .section-head,
.dark-section .fighter-grid,
.dark-section .gallery-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.fighter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.fighter-card {
  position: relative;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.fighter-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 173, 71, 0.55);
}

.fighter-card.is-hidden {
  display: none;
}

.fighter-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.fighter-card div {
  padding: 18px;
}

.fighter-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
}

.fighter-card p {
  color: rgba(255, 255, 255, 0.7);
}

.fighter-card meter {
  width: 100%;
  height: 10px;
  margin-top: 8px;
  accent-color: var(--gold);
}

.ranking-table {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.ranking-table > div {
  display: grid;
  grid-template-columns: 70px 1.2fr 1fr 80px;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.ranking-table > div:last-child {
  border-bottom: 0;
}

.table-head {
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.vote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.vote-card {
  min-height: 120px;
  border: 1px solid var(--line);
  background: #f1e7d9;
  cursor: pointer;
  padding: 18px;
  text-align: left;
}

.vote-card strong,
.vote-card span {
  display: block;
}

.vote-card strong {
  font-size: 1.4rem;
}

.vote-card.active {
  background: var(--red);
  color: white;
}

.meter {
  height: 14px;
  background: #e1d6c8;
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 260ms ease;
}

.experience-grid,
.ticket-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.experience article,
.ticket-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}

.experience article span {
  color: var(--red);
  font-weight: 900;
}

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

.ticket-card {
  min-height: 280px;
  display: grid;
  gap: 14px;
}

.ticket-card strong {
  color: var(--red);
  font-size: 2.7rem;
}

.ticket-card button {
  align-self: end;
  background: var(--ink);
  color: white;
}

.ticket-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-10px);
}

.selection-note {
  margin-top: 20px;
  font-weight: 800;
}

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

.gallery-item {
  border: 0;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.faq-section {
  padding-top: 76px;
}

.accordion {
  border: 1px solid var(--line);
  background: var(--white);
}

.accordion-trigger {
  width: 100%;
  min-height: 64px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-weight: 900;
}

.accordion-panel {
  display: none;
  padding: 0 22px 22px;
}

.accordion-trigger.open + .accordion-panel {
  display: block;
}

.footer {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px);
  gap: 24px;
  align-items: center;
  background: var(--ink);
  color: white;
  padding: 42px max(16px, calc((100vw - 1180px) / 2));
}

.footer .brand-mark {
  background: var(--gold);
  color: var(--ink);
}

.footer small {
  color: rgba(255, 255, 255, 0.66);
}

.newsletter label {
  display: block;
  font-weight: 900;
  margin-bottom: 10px;
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
}

.newsletter input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 14px;
}

.newsletter button {
  background: var(--gold);
  color: var(--ink);
}

.newsletter p {
  min-height: 22px;
  color: var(--gold);
}

.lightbox {
  width: min(920px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.close-lightbox {
  position: absolute;
  right: 0;
  top: -52px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    padding: 20px;
  }

  .nav-menu > a,
  .dropdown-trigger {
    color: var(--ink);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > a,
  .dropdown-trigger {
    width: 100%;
    padding: 16px 0;
    text-align: left;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: 630px;
    height: auto;
  }

  .hero-content {
    bottom: 94px;
  }

  .stats-band,
  .split,
  .two-column,
  .poster-section,
  .route-grid,
  .fighter-grid,
  .experience-grid,
  .ticket-grid,
  .gallery-grid,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .hero-fight-poster {
    display: none;
  }

  .poster-media {
    min-height: 420px;
  }

  .poster-copy {
    padding: 44px 24px;
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 3.3rem;
  }

  .stats-band,
  .split,
  .two-column,
  .poster-section,
  .route-grid,
  .fighter-grid,
  .experience-grid,
  .ticket-grid,
  .gallery-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: 92px;
  }

  .section {
    padding: 64px 0;
  }

  .dark-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .fight-carousel-wrap {
    grid-template-columns: 1fr;
  }

  .fight-carousel-wrap .rail-button {
    display: none;
  }

  .ranking-table > div {
    grid-template-columns: 54px 1fr;
  }

  .ranking-table > div span:nth-child(3),
  .ranking-table > div span:nth-child(4) {
    display: none;
  }

  .ticket-card.featured {
    transform: none;
  }

  .newsletter div {
    grid-template-columns: 1fr;
  }

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

  .versus-lockup {
    grid-template-columns: 1fr;
  }

  .versus-lockup b {
    justify-self: center;
  }
}
