@font-face {
  font-family: "EFN Chakra";
  src: url("Chakra/ChakraPetch-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EFN Chakra";
  src: url("Chakra/ChakraPetch-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EFN Chakra";
  src: url("Chakra/ChakraPetch-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #050506;
  --black-soft: #0a0a0c;
  --paper: #111114;
  --paper-light: #16161a;
  --white: #f7f7f5;
  --muted: #9b9ba2;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.07);
  --red: #ec1b2e;
  --red-deep: #a80717;
  --gold: #e8bd63;
  --gold-bright: #ffe3a0;
  --max: 1240px;
  --display: "EFN Chakra", "Arial Narrow", sans-serif;
  --body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

.ticket-mark {
  position: relative;
  display: inline-block;
  width: 1.12rem;
  height: 0.78rem;
  border: 1.5px solid currentColor;
  border-radius: 1px;
}

.ticket-mark::after {
  content: "";
  position: absolute;
  top: 0.08rem;
  bottom: 0.08rem;
  left: 64%;
  border-left: 1px dashed currentColor;
  opacity: 0.75;
}

.view-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 0.82rem;
  width: 0.82rem;
  height: 0.82rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.view-mark::after {
  content: "";
  position: absolute;
  right: -0.32rem;
  bottom: -0.16rem;
  width: 0.42rem;
  height: 1.5px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.section-shell,
.nav-shell,
.hero-shell,
.countdown-wrap {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.85), transparent);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 4.9rem;
  gap: 2rem;
}

.brand {
  justify-self: start;
  width: 8.8rem;
}

.brand img {
  width: 100%;
  filter:
    drop-shadow(0 0 0.72rem rgba(255, 255, 255, 0.26))
    drop-shadow(0 0 1.7rem rgba(236, 27, 46, 0.16));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
}

.main-nav a {
  position: relative;
  color: #dddde0;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  --cut: 0.55rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.55rem;
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, #f12438, #c80d20);
  border: 0;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -3px 0 rgba(85, 0, 10, 0.34),
    0 0.9rem 2rem rgba(236, 27, 46, 0.2);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--cut);
  width: 38%;
  height: 2px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0.65;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 7.5rem 0 0;
  isolation: isolate;
  overflow: hidden;
  background: #050506;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.8) 38%, rgba(5, 5, 6, 0.22) 77%, rgba(5, 5, 6, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.12) 45%, #050506 96%),
    url("assets/pozadi-web.jpg") 68% 35% / cover no-repeat;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 77% 20%, rgba(255, 255, 255, 0.15), transparent 15rem),
    radial-gradient(circle at 72% 48%, rgba(45, 115, 181, 0.15), transparent 25rem),
    radial-gradient(circle at 20% 35%, rgba(236, 27, 46, 0.18), transparent 24rem);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.63fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  min-height: calc(100vh - 17rem);
  padding: 2.5rem 0 5rem;
}

.hero-copy {
  max-width: 49rem;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow > span {
  flex: 0 0 2.8rem;
  width: 2.8rem;
  height: 2px;
  background: currentColor;
}

.hero-logo {
  width: min(35rem, 100%);
  margin: 1.15rem 0 1.4rem;
  filter: drop-shadow(0 0 0.52rem rgba(255, 255, 255, 0.22));
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3.15rem, 6.2vw, 6.35rem);
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.65);
}

h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.hero-lead {
  max-width: 39rem;
  margin: 1.4rem 0 0;
  color: #d4d4d8;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  --cut: 0.6rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3.65rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #c60b1e);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -3px 0 rgba(85, 0, 10, 0.38),
    0 1rem 2.3rem rgba(236, 27, 46, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  filter: brightness(1.12);
}

.button--ghost {
  color: #fff;
  background: linear-gradient(135deg, rgba(34, 34, 39, 0.96), rgba(14, 14, 17, 0.96));
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.09),
    inset 0 -3px 0 rgba(0, 0, 0, 0.42),
    0 0.8rem 1.8rem rgba(0, 0, 0, 0.24);
}

.button--upcoming {
  cursor: not-allowed;
  opacity: 0.8;
}

.button small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.play-disc {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.play-mark {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.13rem;
  border-top: 0.31rem solid transparent;
  border-bottom: 0.31rem solid transparent;
  border-left: 0.48rem solid currentColor;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 42rem;
  margin-top: 2.4rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.event-facts div {
  padding: 0 1.2rem;
  border-left: 1px solid var(--line);
}

.event-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.event-facts span,
.event-facts strong {
  display: block;
}

.event-facts span {
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-facts strong {
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  text-transform: uppercase;
}

.hero-poster {
  position: relative;
  justify-self: end;
  width: min(24rem, 100%);
}

.poster-aura {
  position: absolute;
  inset: -12% -24% -18%;
  background: radial-gradient(ellipse at center, rgba(236, 27, 46, 0.3), transparent 64%);
}

.poster-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #09090b;
  border: 0;
  box-shadow: 0 1.4rem 3rem rgba(0, 0, 0, 0.58);
  cursor: pointer;
  clip-path: polygon(1rem 0, 100% 0, 100% calc(100% - 1rem), calc(100% - 1rem) 100%, 0 100%, 0 1rem);
}

.poster-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 4.5rem;
  height: 3px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg, var(--red), transparent);
}

.poster-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.poster-button img {
  width: 100%;
  aspect-ratio: 2122 / 3000;
  object-fit: cover;
  transition: transform 300ms ease, filter 300ms ease;
}

.poster-view {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.8rem;
  background: rgba(5, 5, 6, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.poster-button:hover img,
.poster-button:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.poster-stamp {
  position: absolute;
  top: 1.4rem;
  right: -1.6rem;
  z-index: 4;
  padding: 0.55rem 0.9rem;
  color: #fff;
  background: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: rotate(5deg);
  box-shadow: 0 0.8rem 1.5rem rgba(0, 0, 0, 0.5);
}

.countdown-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(13rem, 0.8fr) minmax(0, 1.6fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 10.5rem;
  padding: 1.7rem clamp(1.2rem, 3vw, 2.5rem);
  background:
    linear-gradient(110deg, rgba(236, 27, 46, 0.14), transparent 40%),
    rgba(10, 10, 12, 0.88);
  border: 1px solid var(--line);
  border-bottom: 0;
  box-shadow: 0 -1.5rem 4rem rgba(0, 0, 0, 0.45);
  clip-path: polygon(1.3rem 0, calc(100% - 1.3rem) 0, 100% 1.3rem, 100% 100%, 0 100%, 0 1.3rem);
}

.countdown-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  box-shadow: 0 0 1.5rem var(--red);
}

.countdown-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow-number {
  color: transparent;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
}

.countdown-heading h2 {
  max-width: 10ch;
  margin-top: 0.35rem;
  font-size: clamp(1.8rem, 3.1vw, 3.25rem);
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.4rem, 1.8vw, 1.2rem);
}

.countdown-item {
  text-align: center;
}

.countdown-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.9rem, 6vw, 5rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 0 1.8rem rgba(255, 255, 255, 0.11);
}

.countdown-item span {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.countdown > i {
  align-self: start;
  margin-top: 0.15rem;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.fight-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(236, 27, 46, 0.12), transparent 28rem),
    linear-gradient(180deg, #0a0a0c, #050506 42%);
}

.fight-section::before {
  content: "FIGHT CARD";
  position: absolute;
  top: 3rem;
  right: -1rem;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.section-heading,
.partners-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-heading h2,
.partners-heading h2,
.ticket-heading h2 {
  margin-top: 0.4rem;
}

.section-heading > p,
.partners-heading > p {
  max-width: 31rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
  line-height: 1.65;
}

.card-block + .card-block {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.card-label {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  min-height: 5rem;
  padding: 0.85rem 1.3rem;
  background: linear-gradient(90deg, rgba(236, 27, 46, 0.17), rgba(17, 17, 20, 0.94) 30%);
  border: 1px solid var(--line);
  border-bottom-color: rgba(236, 27, 46, 0.42);
}

.card-label > span {
  color: transparent;
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(236, 27, 46, 0.72);
}

.card-label small,
.card-label h3 {
  display: block;
}

.card-label small {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.card-label h3 {
  margin-top: 0.18rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.card-label > strong {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.fight {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7.6rem minmax(0, 1fr);
  align-items: stretch;
  min-height: 9.25rem;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(236, 27, 46, 0.055), transparent 33%, transparent 66%, rgba(87, 115, 151, 0.05)),
    rgba(15, 15, 18, 0.8);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: auto 9.25rem;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.fight::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.055), transparent 48%),
    linear-gradient(90deg, rgba(236, 27, 46, 0.2), transparent 46%, rgba(255, 255, 255, 0.045));
  transition: opacity 220ms ease;
}

.fight:hover::before {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .fight:hover {
    z-index: 2;
    border-color: rgba(236, 27, 46, 0.58);
    box-shadow:
      inset 0 0 0 1px rgba(236, 27, 46, 0.16),
      0 0.9rem 2.2rem rgba(0, 0, 0, 0.5),
      0 0 1.5rem rgba(236, 27, 46, 0.13);
  }

  .fight:hover .fighter-portrait.portrait--photo::before {
    filter: saturate(1.04) contrast(1.1) brightness(1.12);
    transform: scale(1.065);
  }

  .fight:hover .bout-meta b {
    box-shadow: 0 0 0 1px rgba(236, 27, 46, 0.75), 0 0 2rem rgba(236, 27, 46, 0.5);
  }

  .fight.fight--title:hover {
    border-color: rgba(255, 227, 160, 0.72);
    box-shadow:
      inset 0 0 0 1px rgba(255, 227, 160, 0.13),
      inset 0 0 5rem rgba(232, 189, 99, 0.14),
      0 0 3.4rem rgba(232, 189, 99, 0.2);
  }

  .fight.fight--title:hover .bout-meta b {
    box-shadow:
      0 0 0 1px rgba(255, 227, 160, 0.86),
      0 0 2.8rem rgba(232, 189, 99, 0.62);
  }
}

.fight--title {
  grid-column: 1 / -1;
  min-height: 12rem;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 227, 160, 0.08), transparent 33%),
    linear-gradient(90deg, rgba(232, 189, 99, 0.19), transparent 34%, transparent 66%, rgba(232, 189, 99, 0.12)),
    #12110f;
  border-color: rgba(232, 189, 99, 0.46);
  border-top: 2px solid var(--gold-bright);
  box-shadow:
    inset 0 0 0 1px rgba(255, 227, 160, 0.08),
    inset 0 0 4.5rem rgba(232, 189, 99, 0.1),
    0 0 2.8rem rgba(232, 189, 99, 0.13);
}

.fight--title::before {
  opacity: 0.52;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 227, 160, 0.14), transparent 43%),
    linear-gradient(90deg, rgba(232, 189, 99, 0.22), transparent 46%, rgba(255, 227, 160, 0.08));
}

.fighter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(4.7rem, 0.7fr) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
}

.fighter--blue {
  grid-template-columns: minmax(0, 1fr) minmax(4.7rem, 0.7fr);
  text-align: right;
}

.fighter--blue .fighter-portrait {
  order: 2;
}

.fighter-portrait {
  position: relative;
  align-self: stretch;
  display: grid;
  place-content: center;
  min-width: 4.7rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.35);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent 50%),
    repeating-linear-gradient(-35deg, transparent 0 8px, rgba(255, 255, 255, 0.025) 8px 9px),
    #0b0b0d;
  border-right: 1px solid var(--line-soft);
  font-family: var(--display);
  text-align: center;
}

.fighter--blue .fighter-portrait {
  border-right: 0;
  border-left: 1px solid var(--line-soft);
}

.fighter-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.75));
  pointer-events: none;
}

.fighter-portrait::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 1;
  transition: filter 220ms ease, transform 220ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.fighter-portrait:not(.portrait--photo)::before {
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 5, 6, 0.58)),
    url("assets/fighter-silhouette.png") center 18% / cover no-repeat;
  opacity: 0.82;
}

.fighter--blue .fighter-portrait:not(.portrait--photo)::before {
  transform: scaleX(-1);
}

.portrait--photo {
  background: #08080a;
}

.portrait--photo::before {
  background:
    linear-gradient(180deg, transparent 48%, rgba(5, 5, 6, 0.76)),
    var(--fighter-image) center 15% / cover no-repeat;
  filter: saturate(0.92) contrast(1.06);
}

.fighter-name {
  min-width: 0;
  padding: 0.8rem clamp(0.55rem, 1.2vw, 1rem);
}

.fighter-name span,
.fighter-name strong {
  display: block;
}

.fighter-name span {
  margin-bottom: 0.08rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fighter-name strong {
  font-family: var(--display);
  font-size: clamp(0.92rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.fight--title .fighter-name strong {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
}

.fight--title .fighter-portrait {
  min-width: 6.5rem;
}

.bout-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.bout-meta::before,
.bout-meta::after {
  content: "";
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 27, 46, 0.62));
}

.fight--title .bout-meta::before,
.fight--title .bout-meta::after {
  background: linear-gradient(90deg, transparent, rgba(232, 189, 99, 0.8));
}

.bout-meta::before {
  left: -13%;
}

.bout-meta::after {
  right: -13%;
  transform: scaleX(-1);
}

.bout-number {
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.weight {
  max-width: 7.4rem;
  margin: 0.3rem 0;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-transform: uppercase;
}

.bout-meta b {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  color: #fff;
  background: var(--red);
  border: 3px solid #111114;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: -0.04em;
  box-shadow: 0 0 0 1px rgba(236, 27, 46, 0.45), 0 0 1.5rem rgba(236, 27, 46, 0.2);
  transition: box-shadow 220ms ease;
}

.fight--title .bout-meta b {
  color: #211704;
  background: linear-gradient(145deg, var(--gold-bright), #c89435);
  box-shadow:
    0 0 0 1px rgba(255, 227, 160, 0.7),
    0 0 2.2rem rgba(232, 189, 99, 0.44);
}

.title-badge {
  margin: 0.3rem 0 0.1rem;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 0.57rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 1.2rem rgba(232, 189, 99, 0.42);
}

.fight-list > noscript {
  grid-column: 1 / -1;
}

.noscript-card {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 1.4rem 1.5rem 1.4rem 3.4rem;
  color: var(--white);
  background: #0f0f12;
  border: 1px solid var(--line);
  line-height: 1.45;
}

.card-block--prelims .card-label {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(17, 17, 20, 0.94) 30%);
}

.card-block--prelims .card-label > span {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.card-block--prelims .fight {
  min-height: 8rem;
}

.ticket-section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 15%, rgba(236, 27, 46, 0.16), transparent 28rem),
    linear-gradient(180deg, #08080a, #050506);
}

.ticket-lightning {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.75), transparent 50%, rgba(5, 5, 6, 0.75)),
    url("assets/pozadi-web.jpg") center 36% / cover no-repeat;
}

.ticket-shell {
  position: relative;
}

.ticket-heading {
  max-width: 49rem;
  margin: 0 auto clamp(2rem, 5vw, 3.4rem);
  text-align: center;
}

.ticket-heading h2 {
  margin-inline: auto;
}

.ticket-heading > p:last-child {
  max-width: 37rem;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.eventlook-frame {
  position: relative;
  width: 100%;
  margin-inline: auto;
  padding: 1rem;
  background: rgba(8, 8, 10, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-top-color: rgba(236, 27, 46, 0.62);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.eventlook-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0.35rem 1rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eventlook-topline span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.eventlook-topline i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0.7rem var(--red);
}

.eventlook-topline strong {
  color: #fff;
}

.eventlook-embed {
  width: 100%;
  min-height: 23rem;
  margin-inline: auto;
}

.eventlook-embed > [data-eventlook-event] {
  max-width: 100%;
}

.noscript-note {
  padding: 1rem;
  color: var(--muted);
  text-align: center;
}

.noscript-note a {
  color: var(--red);
}

.partners-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  background: #08080a;
  border-top: 1px solid var(--line);
}

.partners-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}

.partner-logo {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  margin: 0;
  padding: 1.2rem;
  overflow: hidden;
  background: #0d0d10;
}

.partner-logo::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.partner-logo:hover::before {
  transform: scaleX(1);
}

.partner-logo img {
  max-width: min(100%, 8.6rem);
  max-height: 4rem;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

.site-footer {
  padding: 1.5rem 0;
  color: var(--muted);
  background: #050506;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-shell img {
  width: 7.5rem;
  opacity: 1;
  filter:
    drop-shadow(0 0 0.76rem rgba(255, 255, 255, 0.26))
    drop-shadow(0 0 1.8rem rgba(236, 27, 46, 0.16));
}

.footer-shell p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-shell p:last-child {
  justify-self: end;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(0.6rem);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 2rem), 35rem);
  max-height: calc(100vh - 2rem);
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background: #fff;
}

.lightbox-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.lightbox-poster {
  width: 100%;
  max-height: calc(100vh - 2rem);
  object-fit: contain;
  background: #09090b;
  border: 1px solid var(--line);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.8);
}

.poster-button:focus-visible,
.button:focus-visible,
.nav-cta:focus-visible,
.main-nav a:focus-visible,
.mobile-ticket-bar:focus-visible,
.lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(1.3rem);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem);
    gap: 3rem;
  }

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

  .fight--title {
    grid-column: auto;
  }

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

@media (max-width: 820px) {
  .section-shell,
  .nav-shell,
  .hero-shell,
  .countdown-wrap {
    width: min(var(--max), calc(100% - 2rem));
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.55), rgba(5, 5, 6, 0.98) 58%, #050506 96%),
      url("assets/pozadi-web.jpg") 58% 18% / cover no-repeat;
    opacity: 0.78;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-copy {
    max-width: 44rem;
  }

  .hero-poster {
    justify-self: center;
    width: min(21rem, 84vw);
  }

  .countdown-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .countdown-heading h2 {
    max-width: none;
  }

  .section-heading,
  .partners-heading {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

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

  .footer-shell p:first-of-type {
    justify-self: end;
  }

  .footer-shell p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 4.25rem;
  }

  .site-header {
    display: none;
  }

  .nav-shell {
    min-height: 4.6rem;
  }

  .brand {
    width: 7.6rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.25rem;
  }

  .hero-shell {
    padding-top: 0.5rem;
  }

  .hero-logo {
    margin-top: 0.9rem;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

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

  .button {
    width: 100%;
  }

  .event-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-facts div,
  .event-facts div:first-child {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: center;
    padding: 0.65rem 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .event-facts div:first-child {
    border-top: 0;
  }

  .event-facts span {
    margin: 0;
  }

  .poster-stamp {
    right: -0.4rem;
  }

  .countdown-wrap {
    width: 100%;
    padding: 1.8rem 1rem 2rem;
    clip-path: none;
  }

  .eyebrow-number {
    font-size: 3.4rem;
  }

  .countdown-heading h2 {
    font-size: 1.85rem;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .countdown > i {
    display: none;
  }

  .countdown-item {
    min-width: 0;
    padding: 0.8rem 0.2rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line-soft);
  }

  .countdown-item strong {
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: -0.09em;
  }

  .countdown-item span {
    font-size: 0.53rem;
    letter-spacing: 0.08em;
  }

  .fight-section,
  .ticket-section,
  .partners-section {
    padding: 4.5rem 0;
  }

  .section-heading > p,
  .partners-heading > p {
    font-size: 0.92rem;
  }

  .card-label {
    grid-template-columns: auto 1fr;
    padding-inline: 0.9rem;
  }

  .card-label > strong {
    display: none;
  }

  .fight-list {
    border-left: 0;
  }

  .fight,
  .fight--title,
  .card-block--prelims .fight {
    grid-template-columns: minmax(0, 1fr) 4.6rem minmax(0, 1fr);
    min-height: 10rem;
  }

  .fighter,
  .fighter--blue {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(5.9rem, 1fr) auto;
    align-self: stretch;
    text-align: center;
  }

  .fighter--blue .fighter-portrait {
    order: 0;
  }

  .fighter-portrait,
  .fight--title .fighter-portrait {
    min-width: 0;
    min-height: 5.9rem;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .fighter-name {
    min-height: 3.55rem;
    padding: 0.65rem 0.25rem;
  }

  .fighter-name span {
    font-size: 0.56rem;
  }

  .fighter-name strong,
  .fight--title .fighter-name strong {
    font-size: clamp(0.76rem, 3.9vw, 1rem);
  }

  .bout-meta::before,
  .bout-meta::after {
    display: none;
  }

  .bout-number {
    font-size: 0.52rem;
  }

  .weight {
    max-width: 4.2rem;
    font-size: 0.46rem;
    letter-spacing: 0.02em;
  }

  .title-badge {
    max-width: 4.2rem;
    font-size: 0.48rem;
    line-height: 1.1;
  }

  .bout-meta b {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.62rem;
  }

  .ticket-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .ticket-shell {
    width: 100%;
    max-width: none;
  }

  .ticket-heading {
    width: calc(100% - 2rem);
    margin-inline: auto;
  }

  .eventlook-frame {
    width: 100%;
    padding: 0.85rem;
    border-right-color: rgba(255, 255, 255, 0.24);
    border-left-color: rgba(255, 255, 255, 0.24);
  }

  .eventlook-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.35rem 0.35rem 0.8rem;
  }

  .eventlook-embed {
    width: 100%;
    min-height: 26rem;
    margin-inline: auto;
  }

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

  .partner-logo {
    min-height: 6.5rem;
    padding: 1rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-shell p:first-of-type,
  .footer-shell p:last-child {
    grid-column: auto;
    justify-self: start;
  }

  .mobile-ticket-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 4.25rem;
    color: #fff;
    background: linear-gradient(90deg, #c90d20, var(--red));
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -0.7rem 2rem rgba(0, 0, 0, 0.4);
  }

  .lightbox {
    padding: 0.5rem;
  }

  .lightbox-dialog {
    width: min(calc(100vw - 1rem), 32rem);
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
