@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/fonts/inter-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/assets/fonts/roboto-condensed-900.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/assets/fonts/roboto-condensed-900.ttf") format("truetype");
  font-weight: 900;
  font-display: swap;
}
:root {
  --bg: #090a0d;
  --panel: #111318;
  --panel-2: #171a20;
  --panel-3: #20242c;
  --red: #ef233c;
  --red-dark: #b90d24;
  --text: #f6f7f9;
  --muted: #99a1ad;
  --line: #2b3039;
  --blue: #229ed9;
  --display: "Roboto Condensed", Arial, sans-serif;
  --body: Inter, Arial, sans-serif;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font: 400 15px/1.7 var(--body);
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 70% 8%, rgba(239, 35, 60, 0.09), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size:
    auto,
    52px 52px,
    52px 52px;
  content: "";
  pointer-events: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.desktop-skin,
.skin-link,
.mobile-ad {
  display: none;
}
.desktop-skin {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000 url("/assets/banners/kedi-desktop.webp") center top/100vw auto no-repeat;
}
.skin-link {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 16vw;
}
.skin-link-left {
  left: 0;
}
.skin-link-right {
  right: 0;
}
.mobile-ad {
  overflow: hidden;
  background: #050505;
}
.mobile-ad img {
  width: 100%;
  height: auto;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
}
.skip:focus {
  transform: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 10, 13, 0.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: grid;
  min-height: 76px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
.brand {
  display: flex;
  width: 94px;
  align-items: center;
}
.brand img {
  width: 94px;
  height: auto;
}
.nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  color: #d8dbe0;
  font: 700 13px/1 var(--display);
  letter-spacing: 0.065em;
  text-transform: uppercase;
}
.nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: var(--red);
  content: "";
  transition: 0.2s;
}
.nav a:hover,
.nav a.active {
  color: #fff;
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}
.header-telegram {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}
.header-telegram img {
  width: 22px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  background: transparent;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 3px;
  background: #fff;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  font: 900 14px/1 var(--display);
  letter-spacing: 0.055em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-red {
  background: var(--red);
  color: #fff;
}
.button-red:hover {
  background: #ff344c;
}
.button-blue {
  background: var(--blue);
  color: #fff;
}
.button-ghost {
  border-color: #565d69;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.button-ghost:hover {
  border-color: #fff;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, 0.75fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.hero-visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}
.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(7, 8, 11, 0.2) 50%, rgba(7, 8, 11, 0.97) 100%),
    linear-gradient(90deg, rgba(7, 8, 11, 0.08), transparent);
}
.hero-copy {
  position: absolute;
  right: 48px;
  bottom: 45px;
  left: 48px;
}
.hero-copy > span,
.event-panel-label,
.section-head span,
.eyebrow,
.plain-hero > span {
  color: #ff4055;
  font: 700 11px/1 var(--body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 12px 0 5px;
  font: 900 clamp(62px, 7vw, 104px) / 0.78 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.hero-copy h1 small {
  display: block;
  margin-bottom: 11px;
  font: 700 20px/1 var(--display);
  letter-spacing: 0.18em;
}
.hero-copy > p {
  margin: 0;
  color: #fff;
  font: 900 clamp(28px, 3vw, 46px) / 1 var(--display);
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}
.event-panel {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 42px;
  background: linear-gradient(145deg, #191c22, #0f1116);
}
.event-panel h2 {
  margin: 14px 0;
  overflow-wrap: anywhere;
  font: 900 40px/0.98 var(--display);
  text-transform: uppercase;
}
.event-panel > p {
  margin: 0 0 24px;
  color: #b4bac3;
  font-size: 14px;
}
.event-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 24px;
  border: 1px solid var(--line);
}
.event-panel dl div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event-panel dl div:nth-child(2n) {
  border-right: 0;
}
.event-panel dl div:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.event-panel dt,
.facts-mini small {
  color: #79818d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-panel dd {
  margin: 2px 0 0;
  font: 700 15px/1.15 var(--display);
}
.event-panel > a,
.text-link {
  color: #ff4b5f;
  font-size: 12px;
  font-weight: 700;
}
.event-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 84px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.event-strip > div {
  display: flex;
  min-height: 82px;
  justify-content: center;
  flex-direction: column;
  padding: 15px 22px;
  border-right: 1px solid var(--line);
  background: var(--panel);
}
.event-strip > div:last-child {
  border: 0;
}
.event-strip small {
  color: #7f8792;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.event-strip b {
  margin-top: 4px;
  font: 900 21px/1 var(--display);
}
.event-strip .countdown {
  background: var(--red);
}
.event-strip .countdown small {
  color: #ffe0e4;
}
.event-strip .countdown b {
  font-size: 24px;
}
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 94px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 40px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.section-head h2,
.editorial h2,
.analysis h2,
.plain-hero h1,
.legal h2 {
  margin: 9px 0 0;
  font: 900 clamp(36px, 5vw, 58px) / 0.92 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.story-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--panel);
}
.story-grid article:last-child {
  border: 0;
}
.story-grid article > b {
  color: #353a43;
  font: 900 70px/0.8 var(--display);
}
.story-grid h3 {
  margin: 20px 0 10px;
  font: 900 24px/1 var(--display);
  text-transform: uppercase;
}
.story-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.player-shell {
  position: relative;
  padding: 7px;
  border: 1px solid #343943;
  background: #050609;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}
.player-shell::before {
  position: absolute;
  top: -1px;
  left: 7%;
  width: 120px;
  height: 2px;
  background: var(--red);
  content: "";
}
.player-shell iframe {
  display: block;
  width: 100%;
  height: clamp(350px, 54vw, 640px);
  border: 0;
  background: #06070a;
}
.watch-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
}
.watch-note p {
  max-width: 700px;
  margin: 0;
  color: #747c88;
  font-size: 11px;
}
.watch-note .button {
  flex: none;
}
.watch-note .button img {
  border-radius: 50%;
}
.card-group {
  margin-bottom: 28px;
}
.card-group-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 3px solid var(--red);
  background: var(--panel-3);
}
.card-group-title span {
  color: #ff6879;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.card-group-title h3 {
  margin: 3px 0 0;
  font: 900 30px/1 var(--display);
  text-transform: uppercase;
}
.card-group-title time {
  font: 900 17px/1 var(--display);
}
.fight-list {
  border: 1px solid var(--line);
  border-top: 0;
}
.fight-row {
  display: grid;
  min-height: 100px;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 220px 20px;
  align-items: center;
  gap: 12px;
  padding: 9px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  transition: background 0.2s;
}
.fight-row:last-child {
  border: 0;
}
.fight-row:hover {
  background: #1a1e25;
}
.fight-person {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.fight-person img {
  width: 76px;
  height: 76px;
  flex: none;
  border-radius: 50%;
  object-fit: contain;
  background: radial-gradient(circle, #39404a 0, #1d2128 68%, #111318 69%);
}
.fight-person > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.fight-person b {
  overflow: hidden;
  font: 900 19px/1.05 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fight-person small {
  margin-top: 5px;
  color: #777f8b;
  font-size: 10px;
}
.fight-person-right {
  flex-direction: row-reverse;
  text-align: right;
}
.fight-row > em {
  color: var(--red);
  font: 900 16px var(--display);
  font-style: italic;
  text-align: center;
}
.fight-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  text-align: right;
}
.fight-meta b {
  font: 700 14px/1.1 var(--display);
}
.fight-meta small {
  margin-top: 6px;
  color: #757d89;
  font-size: 9px;
}
.fight-row > i {
  color: var(--red);
  font-size: 19px;
  font-style: normal;
}
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.6fr);
  gap: 22px;
}
.editorial-main,
.editorial > aside {
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.editorial-main p,
.legal p,
.legal li,
.analysis p {
  color: #a8afb9;
}
.editorial-main p {
  font-size: 14px;
}
.editorial > aside {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(150deg, var(--red-dark), #390811);
}
.editorial > aside > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.editorial > aside > strong {
  margin-top: 20px;
  font: 900 36px/0.95 var(--display);
  text-transform: uppercase;
}
.editorial > aside > p {
  margin: 8px 0 25px;
  color: #ffcbd2;
}
.editorial > aside dl {
  margin: 0;
}
.editorial > aside dl div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.editorial > aside dt {
  font-size: 10px;
}
.editorial > aside dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}
.faq details {
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq summary::after {
  position: absolute;
  top: 17px;
  right: 20px;
  color: var(--red);
  font: 900 25px var(--display);
  content: "+";
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 850px;
  margin: 0;
  padding: 0 22px 23px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  width: min(var(--max), calc(100% - 32px));
  min-height: 60px;
  margin: auto;
  color: #737b87;
  font-size: 11px;
}
.breadcrumbs b {
  min-width: 0;
  overflow: hidden;
  color: #dce0e5;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fight-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr);
  align-items: stretch;
  width: min(var(--max), calc(100% - 32px));
  min-height: 530px;
  margin: 0 auto 82px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 42%, #343943 0, #171a20 42%, #0d0f13 76%);
}
.fight-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
}
.fighter-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 25px;
  text-align: center;
}
.fighter-side img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.45));
}
.fighter-side > span {
  color: #89919c;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.fighter-side h1,
.fighter-side h2 {
  max-width: 100%;
  margin: 7px 0 0;
  font: 900 clamp(29px, 3.3vw, 46px) / 0.88 var(--display);
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.fighter-side > strong {
  margin-top: 8px;
  color: #ff485c;
  font: 900 22px/1 var(--display);
}
.fight-center {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px 18px;
  border-inline: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.fight-center small {
  color: #8d949f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fight-center > b {
  margin: 15px 0;
  color: var(--red);
  font: 900 italic 60px/0.8 var(--display);
}
.fight-center > span {
  font: 900 17px/1.1 var(--display);
  text-transform: uppercase;
}
.fight-center time {
  margin: 9px 0 24px;
  color: #969eaa;
  font-size: 10px;
}
.fight-center .button {
  padding: 0 15px;
  font-size: 12px;
}
.profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fighter-profile {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.fighter-photo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 430px;
  background: radial-gradient(circle at 50% 45%, #3b414c, #1b1f26 60%, #121419 61%);
}
.fighter-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: contain;
  object-position: center bottom;
}
.fighter-copy {
  padding: 28px;
}
.fighter-copy > span {
  color: #ff5366;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.fighter-copy h3 {
  margin: 7px 0 2px;
  font: 900 32px/0.95 var(--display);
  text-transform: uppercase;
}
.fighter-copy > strong {
  font: 900 24px/1 var(--display);
}
.fighter-copy dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 21px 0;
}
.fighter-copy dl div {
  padding: 9px;
  border: 1px solid var(--line);
  border-right: 0;
  border-bottom: 0;
}
.fighter-copy dl div:nth-child(2n) {
  border-right: 1px solid var(--line);
}
.fighter-copy dl div:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}
.fighter-copy dt {
  color: #747c87;
  font-size: 8px;
  text-transform: uppercase;
}
.fighter-copy dd {
  margin: 2px 0 0;
  font-size: 11px;
  font-weight: 700;
}
.fighter-copy p {
  color: #929aa5;
  font-size: 11px;
}
.fighter-copy > a {
  color: #ff5063;
  font-size: 10px;
  font-weight: 700;
}
.analysis {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.analysis article {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.analysis h2 {
  font-size: 40px;
}
.analysis p {
  font-size: 13px;
}
.analysis .lead {
  color: #f0f2f5;
  font-size: 17px;
  line-height: 1.55;
}
.facts-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  border: 1px solid var(--line);
}
.facts-mini > div {
  padding: 11px;
  border-right: 1px solid var(--line);
}
.facts-mini > div:last-child {
  border: 0;
}
.facts-mini b {
  display: block;
  margin-top: 2px;
  font: 700 12px/1.1 var(--display);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.related-grid a {
  display: flex;
  min-height: 105px;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-left: 3px solid var(--red);
  background: var(--panel);
}
.related-grid a:hover {
  background: var(--panel-2);
}
.related-grid span {
  color: #7e8692;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.related-grid b {
  margin-top: 8px;
  font: 900 18px/1.05 var(--display);
  text-transform: uppercase;
}
.related .text-link {
  display: inline-flex;
  margin-top: 18px;
}
.plain-hero {
  padding: 80px max(16px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #1c2027, #0d0f13 60%, #310711);
}
.plain-hero h1 {
  max-width: 900px;
}
.plain-hero p {
  max-width: 760px;
  color: #a4abb6;
}
.legal {
  padding: 45px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.legal h2 {
  margin-top: 42px;
  font-size: 32px;
}
.legal h2:first-child {
  margin-top: 0;
}
.legal a {
  color: #ff5265;
  text-decoration: underline;
}
.legal li {
  margin: 7px 0;
}
.site-footer {
  position: relative;
  padding: 58px 0 22px;
  border-top: 1px solid var(--line);
  background: #07080a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 45px;
  width: min(var(--max), calc(100% - 32px));
  margin: auto;
}
.footer-grid > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}
.footer-grid h2 {
  margin: 0 0 8px;
  color: #fff;
  font: 900 17px/1 var(--display);
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  color: #8f97a2;
  font-size: 11px;
}
.footer-grid a:hover {
  color: #fff;
}
.footer-brand .brand {
  margin-bottom: 10px;
}
.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: #777f8a;
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid #1c2026;
  color: #5f6671;
  font-size: 9px;
}
.telegram-modal[hidden] {
  display: none;
}
.telegram-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  padding: 16px;
  place-items: center;
  background: rgba(2, 3, 5, 0.86);
  backdrop-filter: blur(10px);
}
.modal-card {
  position: relative;
  width: min(470px, 100%);
  padding: 42px;
  border: 1px solid #343943;
  border-top: 4px solid var(--blue);
  background: #12151a;
  text-align: center;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.6);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #424852;
  background: transparent;
  cursor: pointer;
}
.modal-close span {
  position: absolute;
  top: 17px;
  left: 9px;
  width: 20px;
  height: 2px;
  transform: rotate(45deg);
  background: #fff;
}
.modal-close span + span {
  transform: rotate(-45deg);
}
.modal-icon {
  width: 64px;
  margin: 0 auto 18px;
}
.modal-card small {
  color: #53bce9;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.modal-card h2 {
  margin: 10px 0;
  font: 900 37px/0.95 var(--display);
  text-transform: uppercase;
}
.modal-card p {
  margin: 0 0 23px;
  color: #959da8;
  font-size: 13px;
}
.not-found {
  display: flex;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 16px;
  text-align: center;
}
.not-found > span {
  color: var(--red);
  font: 900 150px/0.75 var(--display);
}
.not-found h1 {
  margin: 26px 0 4px;
  font: 900 52px/1 var(--display);
  text-transform: uppercase;
}
.not-found p {
  color: var(--muted);
}
.not-found > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.player-page {
  background: #050609;
}
.player-page main {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(4, 5, 8, 0.76), rgba(4, 5, 8, 0.94)),
    url("/assets/img/ufc331-hero.webp") center/cover;
}
.player-page main::after {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 5px
  );
  content: "";
  pointer-events: none;
}
.live-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.live-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(239, 35, 60, 0.18);
}
.player-center {
  z-index: 1;
  width: min(650px, 100%);
  padding: 35px;
  text-align: center;
}
.player-center > img {
  width: 130px;
  margin: 0 auto 22px;
}
.player-center > small {
  display: block;
  color: #a3aab5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.player-center h1 {
  margin: 14px 0;
  font: 900 clamp(38px, 7vw, 64px) / 0.9 var(--display);
  text-transform: uppercase;
}
.player-countdown b {
  display: block;
  margin: 25px 0;
  color: #ff4055;
  font: 900 clamp(28px, 5vw, 46px) / 1 var(--display);
}
.player-center p {
  margin-top: 20px;
  color: #777f8a;
  font-size: 9px;
}
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 560px;
  }
  .event-panel {
    padding: 34px;
  }
  .event-panel dl {
    grid-template-columns: repeat(4, 1fr);
  }
  .event-panel dl div,
  .event-panel dl div:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }
  .event-panel dl div:last-child {
    border-right: 0;
  }
  .fight-row {
    grid-template-columns: minmax(0, 1fr) 32px minmax(0, 1fr) 175px 16px;
  }
  .fighter-profile {
    grid-template-columns: 1fr;
  }
  .fighter-photo {
    min-height: 300px;
  }
  .fighter-photo img {
    height: 330px;
    min-height: 0;
  }
  .fighter-copy {
    padding: 24px;
  }
}
@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
  }
  .header-telegram {
    display: none;
  }
  .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: #0d0f13;
  }
  .site-header.menu-open .nav {
    display: flex;
  }
  .nav a {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
  }
  .nav a::after {
    display: none;
  }
  .mobile-ad {
    display: block;
    width: min(333px, calc(100% - 32px));
    margin: 14px auto 0;
    border: 1px solid var(--line);
  }
  .event-strip {
    grid-template-columns: 1fr 1fr;
  }
  .event-strip > div:nth-child(2) {
    border-right: 0;
  }
  .event-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .editorial,
  .analysis {
    grid-template-columns: 1fr;
  }
  .fight-hero {
    grid-template-columns: 1fr 140px 1fr;
    min-height: 430px;
  }
  .fighter-side {
    padding: 16px 8px;
  }
  .fighter-side img {
    height: 270px;
  }
  .fight-center {
    padding: 16px 8px;
  }
  .fight-center .button {
    display: none;
  }
  .profiles {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  body {
    font-size: 14px;
  }
  .hero {
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
  }
  .hero-visual {
    min-height: 530px;
  }
  .hero-copy {
    right: 20px;
    bottom: 28px;
    left: 20px;
  }
  .hero-copy h1 {
    font-size: 62px;
  }
  .hero-copy h1 small {
    font-size: 14px;
  }
  .hero-copy > p {
    font-size: 27px;
  }
  .event-panel {
    padding: 26px 20px;
  }
  .event-panel h2 {
    font-size: 32px;
  }
  .event-panel dl {
    grid-template-columns: 1fr 1fr;
  }
  .event-panel dl div,
  .event-panel dl div:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .event-panel dl div:nth-child(2n) {
    border-right: 0;
  }
  .event-panel dl div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .event-strip {
    width: 100%;
    margin-bottom: 65px;
    border-right: 0;
    border-left: 0;
  }
  .event-strip > div {
    padding: 13px;
  }
  .event-strip b {
    font-size: 17px;
  }
  .event-strip .countdown b {
    font-size: 19px;
  }
  .section {
    width: calc(100% - 24px);
    margin-bottom: 68px;
  }
  .section-head h2 {
    font-size: 38px;
  }
  .story-grid article {
    padding: 24px;
  }
  .watch-note {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }
  .watch-note .button {
    width: 100%;
  }
  .player-shell iframe {
    height: 430px;
  }
  .card-group-title {
    padding: 16px;
  }
  .card-group-title h3 {
    font-size: 24px;
  }
  .card-group-title time {
    font-size: 14px;
  }
  .fight-row {
    grid-template-columns: minmax(0, 1fr) 24px minmax(0, 1fr);
    min-height: 116px;
    gap: 5px;
    padding: 10px 7px;
  }
  .fight-person,
  .fight-person-right {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .fight-person img {
    width: 58px;
    height: 58px;
  }
  .fight-person b {
    max-width: 110px;
    font-size: 15px;
    white-space: normal;
  }
  .fight-person small {
    font-size: 8px;
  }
  .fight-meta,
  .fight-row > i {
    display: none;
  }
  .editorial-main,
  .editorial > aside,
  .analysis article,
  .legal {
    padding: 26px 20px;
  }
  .fight-hero {
    width: 100%;
    grid-template-columns: 1fr 94px 1fr;
    margin-bottom: 65px;
    border-right: 0;
    border-left: 0;
  }
  .fighter-side {
    min-width: 0;
  }
  .fighter-side img {
    height: 220px;
  }
  .fighter-side h1,
  .fighter-side h2 {
    font-size: 23px;
  }
  .fighter-side > strong {
    font-size: 17px;
  }
  .fight-center small {
    font-size: 7px;
  }
  .fight-center > b {
    font-size: 42px;
  }
  .fight-center > span {
    font-size: 12px;
  }
  .fight-center time {
    font-size: 8px;
  }
  .fighter-profile {
    grid-template-columns: 1fr;
  }
  .fighter-photo {
    min-height: 260px;
  }
  .fighter-photo img {
    height: 300px;
  }
  .analysis h2 {
    font-size: 34px;
  }
  .facts-mini {
    grid-template-columns: 1fr;
  }
  .facts-mini > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .facts-mini > div:last-child {
    border-bottom: 0;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .plain-hero {
    padding-top: 58px;
    padding-bottom: 58px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .modal-card {
    padding: 38px 22px;
  }
  .modal-card h2 {
    font-size: 33px;
  }
}
@media (min-width: 1400px) {
  .desktop-skin,
  .skin-link {
    display: block;
  }
  .site-header,
  main,
  .site-footer {
    position: relative;
    width: min(1240px, 68vw);
    margin-inline: auto;
  }
  .site-header {
    z-index: 70;
  }
  .site-header .header-inner,
  .site-footer .footer-grid,
  .site-footer .footer-bottom {
    width: min(var(--max), calc(100% - 32px));
  }
  main {
    z-index: 1;
    background: var(--bg);
  }
  .site-footer {
    z-index: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* 2026-09-15 refinement: official UFC palette, portrait assets and tighter rhythm */
:root {
  --bg: #f4f4f4;
  --panel: #fff;
  --panel-2: #f0f0f2;
  --panel-3: #18181f;
  --red: #d20a0a;
  --red-dark: #9d0000;
  --text: #18181f;
  --muted: #666b73;
  --line: #d4d5d8;
  --blue: #229ed9;
}
body {
  background: var(--bg);
  color: var(--text);
}
body::before {
  background:
    linear-gradient(rgba(24, 24, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 24, 31, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
}
.site-header {
  border-bottom: 1px solid #dedfe2;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.site-header .brand img {
  filter: invert(1);
}
.nav a {
  color: #363941;
}
.nav a:hover,
.nav a.active {
  color: #08090b;
}
.header-telegram {
  border-color: #d7d8dc;
  background: #fff;
  color: #18181f;
}
.menu-toggle {
  border-color: #c9cbd0;
}
.menu-toggle span {
  background: #18181f;
}
.hero {
  margin-top: 22px;
  border-color: #cacbd0;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}
.hero-visual > img {
  filter: saturate(0.98) contrast(1.04);
}
.hero-shade {
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(5, 5, 7, 0.18) 48%,
    rgba(5, 5, 7, 0.9) 100%
  );
}
.hero-copy {
  color: #fff;
}
.event-panel {
  background: #18181f;
  color: #fff;
}
.event-panel > p {
  color: #c0c3c9;
}
.event-panel dl {
  border-color: #3c3d43;
}
.event-panel dl div {
  border-color: #3c3d43;
}
.event-panel dt {
  color: #9b9da4;
}
.event-strip {
  border-color: #cfd0d3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.event-strip > div {
  border-color: #d9dade;
  background: #fff;
}
.event-strip small {
  color: #737780;
}
.event-strip .countdown {
  background: #d20a0a;
}
.event-strip .countdown b,
.event-strip .countdown small {
  color: #fff;
}
.section {
  margin-bottom: 64px;
}
.section-head {
  border-color: #cfd1d5;
}
.section-head > p,
.story-grid p {
  color: #646a73;
}
.story-grid {
  border-color: #d3d4d7;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
}
.story-grid article {
  border-color: #d7d8db;
  background: #fff;
}
.story-grid article > b {
  color: #e5e5e7;
}
.story-grid h3 {
  color: #18181f;
}
.player-shell {
  border-color: #18181f;
  background: #08090b;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}
.watch-note p {
  color: #686d75;
}
.card-group {
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.055);
}
.card-group-title {
  border-bottom-color: #d20a0a;
  background: #18181f;
  color: #fff;
}
.card-group-title span {
  color: #ff6a6a;
}
.fight-list {
  border-color: #d2d3d6;
}
.fight-row {
  border-color: #d8d9dc;
  background: #fff;
}
.fight-row:hover {
  background: #f3f3f4;
}
.fight-person img {
  width: 78px;
  height: 78px;
  border: 2px solid #18181f;
  background: #ececee;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.13);
}
.fight-person b {
  color: #18181f;
}
.fight-person small,
.fight-meta small {
  color: #656a73;
}
.fight-row > em,
.fight-row > i {
  color: #d20a0a;
}
.editorial-main {
  border-color: #d4d5d8;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
}
.editorial-main p,
.legal p,
.legal li,
.analysis p {
  color: #5e636b;
}
.editorial > aside {
  border-color: #8e0000;
  background: linear-gradient(150deg, #d20a0a, #720000);
  color: #fff;
}
.editorial > aside > p {
  color: #ffe1e1;
}
.faq.section {
  margin-bottom: 0;
  padding-bottom: 24px;
}
.faq details {
  border-color: #d2d3d6;
  background: #fff;
}
.faq details:last-child {
  border-color: #d2d3d6;
}
.faq details p {
  color: #60656d;
}
.faq summary::after {
  color: #d20a0a;
}
.breadcrumbs {
  color: #6f747c;
}
.breadcrumbs b {
  color: #18181f;
}
.fight-hero {
  border-color: #303138;
  background: radial-gradient(circle at 50% 42%, #343439 0, #18181f 45%, #0b0b0e 78%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.17);
}
.fight-hero::after {
  background: linear-gradient(90deg, transparent, #d20a0a, transparent);
}
.fighter-side > strong,
.fight-center > b {
  color: #e20c0c;
}
.fight-center .button-red {
  background: #d20a0a;
}
.fighter-profile {
  min-height: 430px;
  grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
  border-color: #cfd0d3;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
}
.fighter-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
    url("/assets/img/octagon-card-bg.webp");
  background-position: center;
  background-size: cover;
}
.fighter-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #d20a0a;
  content: "";
}
.fighter-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  max-width: none;
  object-fit: cover;
  object-position: center 34%;
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.45));
  transform: scale(1.025);
}
.fighter-copy {
  background: #fff;
}
.fighter-copy h3,
.fighter-copy > strong {
  color: #18181f;
}
.fighter-copy > span,
.fighter-copy > a {
  color: #d20a0a;
}
.fighter-copy dl div {
  border-color: #d7d8db;
}
.fighter-copy dt {
  color: #777c84;
}
.fighter-copy p {
  color: #5f646c;
}
.analysis article,
.legal {
  border-color: #d2d3d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.045);
}
.analysis .lead {
  color: #18181f;
}
.facts-mini {
  border-color: #d4d5d8;
}
.facts-mini > div {
  border-color: #d4d5d8;
}
.related-grid a {
  border-left-color: #d20a0a;
  background: #18181f;
  color: #fff;
}
.related-grid a:hover {
  background: #25252c;
}
.plain-hero {
  border-color: #292a30;
  background: linear-gradient(120deg, #18181f, #0c0c0f 62%, #450000);
  color: #fff;
}
.site-footer {
  margin-top: 0;
  border-top: 0;
  background: #18181f;
  color: #fff;
}
.site-footer .brand img {
  filter: none;
}
.footer-grid a:not(.brand),
.footer-brand p {
  color: #b2b5bb;
}
.footer-bottom {
  border-color: #34353b;
  color: #858991;
}
.telegram-modal {
  background: rgba(0, 0, 0, 0.82);
}
.modal-card {
  border-color: #34353b;
  border-top-color: #d20a0a;
  background: #18181f;
  color: #fff;
}
.modal-card p {
  color: #b2b5bb;
}
.modal-card small {
  color: #ff5757;
}
.modal-card .button-blue {
  background: #d20a0a;
}

@media (max-width: 1050px) {
  .fighter-profile {
    grid-template-columns: 1fr;
  }
  .fighter-photo {
    min-height: 340px;
  }
  .fighter-photo img {
    height: 340px;
    min-height: 340px;
    object-position: center 30%;
  }
}
@media (max-width: 820px) {
  .nav {
    border-color: #d5d6da;
    background: #fff;
  }
  .nav a {
    border-color: #dedfe2;
  }
  .mobile-ad {
    border-color: #cfd0d3;
  }
  .fight-row {
    background: #fff;
  }
}
@media (max-width: 620px) {
  .section {
    margin-bottom: 48px;
  }
  .faq.section {
    padding-bottom: 16px;
  }
  .fight-person img {
    width: 64px;
    height: 64px;
  }
  .fighter-profile {
    min-height: 0;
  }
  .fighter-photo {
    min-height: 300px;
  }
  .fighter-photo img {
    height: 300px;
    min-height: 300px;
  }
  .fighter-copy {
    padding: 24px 20px;
  }
}
@media (min-width: 1400px) {
  main {
    background: #f4f4f4;
  }
}

/* 2026-09-16 information architecture and editorial redesign */
.site-header .header-inner {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 80px;
  gap: 24px;
  width: min(1360px, calc(100% - 36px));
}
.nav-shell {
  display: contents;
}
.brand-center {
  grid-column: 2;
  grid-row: 1;
  width: 86px;
  justify-self: center;
}
.brand-center img {
  width: 86px;
}
.nav-left {
  grid-column: 1;
  grid-row: 1;
  justify-content: flex-start;
}
.nav-right {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
}
@media (min-width: 1101px) {
  .site-header .header-inner {
    grid-template-columns: minmax(190px, 240px) 86px minmax(190px, 240px);
    justify-content: center;
    gap: 28px;
  }
  .nav-left {
    justify-content: flex-end;
  }
  .nav-right {
    justify-content: flex-start;
  }
}
.nav {
  gap: clamp(12px, 1.35vw, 24px);
}
.nav a,
.nav-dropdown > button {
  position: relative;
  display: flex;
  height: 80px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #303239;
  font: 700 11px/1 var(--display);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}
.nav a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  background: #d20a0a;
  content: "";
  transition: transform 0.2s;
}
.nav a:hover::after,
.nav a.active::after,
.nav-dropdown:hover > button::after,
.nav-dropdown.open > button::after {
  transform: scaleX(1);
}
.nav a:hover,
.nav a.active,
.nav-dropdown > button:hover {
  color: #08090b;
}
.nav-dropdown {
  position: relative;
  height: 80px;
}
.dropdown-menu {
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 90;
  display: grid;
  width: 370px;
  padding: 10px;
  border-top: 3px solid #d20a0a;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 0.18s;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown-menu a {
  display: block;
  height: auto;
  padding: 14px 16px;
  border-bottom: 1px solid #e1e2e5;
}
.dropdown-menu a:last-child {
  border: 0;
}
.dropdown-menu a::after {
  display: none;
}
.dropdown-menu b {
  display: block;
  font: 900 15px/1.1 var(--display);
  text-transform: uppercase;
}
.dropdown-menu small {
  display: block;
  margin-top: 5px;
  color: #737780;
  font: 400 11px/1.3 var(--body);
  letter-spacing: 0;
  text-transform: none;
}
.menu-toggle {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.fight-intro {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 58px;
  padding: 54px 50px 0;
  border-top: 4px solid #d20a0a;
  background: #18181f;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}
.fight-intro > h1 {
  max-width: 880px;
  margin: 12px 0 10px;
  font: 900 clamp(44px, 6vw, 72px) / 0.92 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.fight-intro > p {
  max-width: 760px;
  margin: 0 0 38px;
  color: #bbbfc7;
  font-size: 15px;
}
.fight-intro-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  border-top: 1px solid #36373d;
}
.fight-intro-grid > article {
  padding: 30px 0 32px;
}
.fight-intro-grid > article:last-child {
  text-align: right;
}
.fight-intro-grid small {
  color: #9498a1;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.fight-intro-grid h2 {
  margin: 6px 0;
  font: 900 clamp(26px, 3vw, 40px) / 0.95 var(--display);
  text-transform: uppercase;
}
.fight-intro-grid strong {
  color: #f02626;
  font: 900 22px/1 var(--display);
}
.fight-intro-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border-inline: 1px solid #36373d;
  text-align: center;
}
.fight-intro-center b {
  color: #e20c0c;
  font: 900 italic 42px/0.9 var(--display);
}
.fight-intro-center span {
  margin-top: 8px;
  font: 700 13px/1.15 var(--display);
  text-transform: uppercase;
}
.fight-intro-center time {
  margin-top: 7px;
  color: #a2a6ae;
  font-size: 10px;
}
.profiles {
  align-items: stretch;
}
.fighter-profile {
  display: block;
  min-height: 0;
  border-top: 4px solid #18181f;
}
.fighter-copy {
  height: 100%;
  padding: 34px;
}
.fighter-copy h3 {
  font-size: 38px;
}
.fighter-copy dl {
  margin: 25px 0;
}
.fighter-copy dl div {
  min-height: 62px;
  padding: 12px;
}
.fighter-copy p {
  font-size: 13px;
  line-height: 1.7;
}

.directory-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 62px;
  border-bottom: 4px solid #d20a0a;
  background: #18181f;
  color: #fff;
}
.directory-hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 54px;
}
.directory-hero-copy > span,
.section-kicker {
  color: #ef3131;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.directory-hero h1 {
  max-width: 740px;
  margin: 12px 0 18px;
  font: 900 clamp(48px, 6vw, 78px) / 0.88 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.directory-hero p {
  max-width: 680px;
  margin: 0;
  color: #bec1c8;
  font-size: 16px;
}
.directory-hero-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 45px;
  border-left: 1px solid #37383e;
  background: #0d0d10;
  text-align: center;
}
.directory-hero-stat strong {
  font: 900 92px/0.8 var(--display);
}
.directory-hero-stat span {
  margin-top: 15px;
  color: #ef3131;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.media-feature {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  overflow: hidden;
  border: 1px solid #cfd0d3;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.media-feature > img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}
.media-feature-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 38px;
}
.media-feature h2 {
  margin: 11px 0 13px;
  font: 900 39px/0.95 var(--display);
  text-transform: uppercase;
}
.media-feature p {
  color: #61666e;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.meta-line span {
  padding: 7px 9px;
  background: #ececef;
  color: #454950;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.schedule-grid,
.content-grid,
.news-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.content-card,
.event-card,
.result-card,
.prose-card {
  padding: 30px;
  border: 1px solid #d1d2d5;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.04);
}
.content-card h2,
.content-card h3,
.event-card h2,
.event-card h3,
.result-card h2,
.result-card h3,
.prose-card h2,
.prose-card h3 {
  margin: 9px 0 12px;
  font: 900 27px/0.98 var(--display);
  text-transform: uppercase;
}
.content-card p,
.event-card p,
.result-card p,
.prose-card p {
  color: #60656d;
  font-size: 13px;
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d20a0a;
  font: 900 13px/1 var(--display);
  text-transform: uppercase;
}
.event-card dl,
.result-card dl {
  margin: 20px 0;
}
.event-card dl div,
.result-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-top: 1px solid #e0e1e3;
}
.event-card dt,
.result-card dt {
  color: #777c84;
  font-size: 10px;
  text-transform: uppercase;
}
.event-card dd,
.result-card dd {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  text-align: right;
}
.source-note {
  margin-top: 20px;
  padding: 17px 20px;
  border-left: 4px solid #d20a0a;
  background: #fff;
  color: #555a62;
  font-size: 12px;
}
.source-note a,
.content-card a,
.event-card a,
.result-card a,
.prose-card a {
  color: #d20a0a;
  font-weight: 700;
}
.news-card {
  overflow: hidden;
  border: 1px solid #d1d2d5;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
}
.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.news-card-copy {
  padding: 25px;
}
.news-card time {
  color: #777c84;
  font-size: 10px;
}
.news-card h2,
.news-card h3 {
  margin: 9px 0 12px;
  font: 900 26px/0.98 var(--display);
  text-transform: uppercase;
}
.news-card p {
  color: #60656d;
  font-size: 13px;
}
.news-card a {
  color: #d20a0a;
  font-size: 11px;
  font-weight: 700;
}
.fighter-directory {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.fighter-tile {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px;
  border: 1px solid #d4d5d8;
  background: #fff;
}
.fighter-tile img {
  width: 72px;
  height: 72px;
  border: 2px solid #18181f;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  background: #eee;
}
.fighter-tile small {
  display: block;
  color: #d20a0a;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.fighter-tile b {
  display: block;
  margin-top: 3px;
  font: 900 17px/1 var(--display);
}
.fighter-tile span {
  display: block;
  margin-top: 5px;
  color: #747983;
  font-size: 9px;
}
.data-list {
  border: 1px solid #d1d2d5;
  background: #fff;
}
.data-list-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.2fr) minmax(0, 1fr) 150px;
  align-items: center;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid #dedfe2;
}
.data-list-row:last-child {
  border: 0;
}
.data-list-row > strong {
  color: #d20a0a;
  font: 900 23px/1 var(--display);
}
.data-list-row h2,
.data-list-row h3 {
  margin: 0;
  font: 900 20px/1 var(--display);
  text-transform: uppercase;
}
.data-list-row p {
  margin: 3px 0 0;
  color: #737780;
  font-size: 10px;
}
.data-list-row > span {
  font-size: 11px;
  font-weight: 700;
}
.data-list-row > a {
  color: #d20a0a;
  font-size: 10px;
  font-weight: 700;
  text-align: right;
}
.article-page {
  width: min(900px, calc(100% - 32px));
  margin: 34px auto 64px;
}
.article-hero {
  overflow: hidden;
  background: #18181f;
  color: #fff;
}
.article-hero img {
  width: 100%;
  max-height: 510px;
  object-fit: cover;
}
.article-hero-copy {
  padding: 42px;
}
.article-hero h1 {
  margin: 10px 0 14px;
  font: 900 clamp(42px, 6vw, 67px) / 0.9 var(--display);
  text-transform: uppercase;
}
.article-hero p {
  color: #c2c5cb;
  font-size: 16px;
}
.article-body {
  padding: 48px;
  border: 1px solid #d1d2d5;
  border-top: 0;
  background: #fff;
}
.article-body h2 {
  margin: 42px 0 12px;
  font: 900 32px/1 var(--display);
  text-transform: uppercase;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p,
.article-body li {
  color: #555b63;
  font-size: 15px;
  line-height: 1.8;
}
.article-body a {
  color: #d20a0a;
  font-weight: 700;
  text-decoration: underline;
}
.article-byline {
  color: #777c84;
  font-size: 11px;
}
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.legal-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.legal-links a {
  padding: 18px;
  border: 1px solid #d1d2d5;
  background: #fff;
  font-weight: 700;
}
.intent-faq details {
  border: 1px solid #d5d6d9;
  border-bottom: 0;
  background: #fff;
}
.intent-faq details:last-child {
  border-bottom: 1px solid #d5d6d9;
}
.intent-faq summary {
  padding: 19px 48px 19px 20px;
  font-weight: 700;
  cursor: pointer;
}
.intent-faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: #60656d;
}
.footer-grid-expanded {
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 34px;
}
.social-links {
  display: flex !important;
  flex-flow: row wrap !important;
  gap: 7px !important;
  margin-top: 12px;
}
.social-links a {
  padding: 6px 8px;
  border: 1px solid #3a3b41;
  color: #d0d2d6 !important;
  font-size: 9px !important;
  text-transform: uppercase;
}
.footer-note {
  margin: 8px 0 0;
  color: #8b8f97;
  font-size: 10px;
}
.site-footer .footer-grid h2 {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .site-header .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .brand-center {
    grid-column: 1;
  }
  .menu-toggle {
    display: flex;
    grid-column: 2;
  }
  .nav-shell {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    z-index: 90;
    display: none;
    padding: 12px 18px 20px;
    border-bottom: 1px solid #d5d6da;
    background: #fff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  }
  .site-header.menu-open .nav-shell {
    display: block;
  }
  .nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .nav a,
  .nav-dropdown > button {
    width: 100%;
    height: 48px;
    border-bottom: 1px solid #e0e1e3;
  }
  .nav a::after,
  .nav-dropdown > button::after {
    display: none;
  }
  .nav-dropdown {
    height: auto;
  }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 4px 0;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }
  .dropdown-menu a {
    height: auto;
    padding: 10px 14px;
    background: #f2f2f3;
  }
  .footer-grid-expanded {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .fighter-directory {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 820px) {
  .directory-hero,
  .media-feature {
    grid-template-columns: 1fr;
  }
  .directory-hero-copy {
    padding: 38px 28px;
  }
  .directory-hero-stat {
    min-height: 190px;
    border-top: 1px solid #37383e;
    border-left: 0;
  }
  .schedule-grid,
  .content-grid,
  .news-grid,
  .result-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fighter-directory {
    grid-template-columns: 1fr 1fr;
  }
  .fight-intro {
    padding: 38px 24px 0;
  }
  .fight-intro-grid {
    grid-template-columns: 1fr;
  }
  .fight-intro-grid > article,
  .fight-intro-grid > article:last-child {
    text-align: center;
  }
  .fight-intro-center {
    order: 3;
    border: 0;
    border-top: 1px solid #36373d;
  }
  .footer-grid-expanded {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .nav {
    grid-template-columns: 1fr;
  }
  .directory-hero {
    width: 100%;
    margin-top: 0;
  }
  .directory-hero h1 {
    font-size: 45px;
  }
  .directory-hero-stat strong {
    font-size: 74px;
  }
  .schedule-grid,
  .content-grid,
  .news-grid,
  .result-grid,
  .prose-grid,
  .legal-links {
    grid-template-columns: 1fr;
  }
  .fighter-directory {
    grid-template-columns: 1fr;
  }
  .media-feature > img {
    min-height: 240px;
  }
  .media-feature-copy {
    padding: 28px 22px;
  }
  .fight-intro {
    width: 100%;
    margin-bottom: 46px;
    padding: 34px 20px 0;
  }
  .fight-intro > h1 {
    font-size: 42px;
  }
  .data-list-row {
    grid-template-columns: 55px 1fr;
  }
  .data-list-row > span,
  .data-list-row > a {
    grid-column: 2;
    text-align: left;
  }
  .article-page {
    width: 100%;
    margin-top: 0;
  }
  .article-hero-copy,
  .article-body {
    padding: 30px 20px;
  }
  .footer-grid-expanded {
    grid-template-columns: 1fr;
  }
}

.site-header .menu-toggle {
  position: relative;
  z-index: 110;
  display: flex !important;
}
.site-header .menu-toggle span {
  display: block;
  background: #18181f;
}
.nav-dropdown > button::before {
  order: 2;
  margin-left: 7px;
  color: #d20a0a;
  content: "▾";
  font:
    900 11px/1 Arial,
    sans-serif;
}
.nav-dropdown.open > button::before {
  content: "▴";
}
@media (min-width: 1101px) {
  .site-header .menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1100px) {
  .nav-dropdown > button::before {
    margin-left: auto;
  }
}

/* Round 5: intent-separated fighter profiles, event results and player contrast */
.player-page,
.player-page main {
  color: #fff;
}
.player-page .live-label {
  color: #fff;
}
.player-page .player-center h1 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.9);
}
.player-page .player-center > small {
  color: #f0f1f3;
}
.player-page .player-center p {
  color: #d4d7dc;
}
.player-page main {
  background:
    linear-gradient(rgba(3, 4, 7, 0.68), rgba(3, 4, 7, 0.9)),
    url("/assets/img/ufc331-hero.webp") center/cover;
}
.player-page main {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(3, 4, 7, 0.88), rgba(3, 4, 7, 0.7) 48%, rgba(3, 4, 7, 0.88)),
    url("/assets/img/ufc331-hero.webp") center/cover;
}
.player-page .live-label {
  padding: 10px 14px;
  border-color: #ff7187;
  background: #680018;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-shadow: 0 1px 2px #160008;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.player-page .live-label i {
  animation: live-pulse 1.25s ease-in-out infinite;
  background: #ff4765;
  box-shadow: 0 0 0 5px rgba(255, 71, 101, 0.24);
}
.player-page .player-center {
  max-width: 650px;
  padding: 42px 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(5, 6, 9, 0.5);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}
.player-page .player-center > small {
  color: #fff;
  font-size: 10px;
  text-shadow: 0 1px 2px #000;
}
.player-page .player-center h1 {
  color: #fff;
  text-shadow: 0 3px 18px #000;
}
.player-page .player-countdown b {
  padding: 10px 14px;
  color: #fff;
  background: #a80024;
  text-shadow: 0 1px 2px #260009;
}
.player-page .player-center p {
  color: #fff;
  font-size: 11px;
  text-shadow: 0 1px 2px #000;
}
.player-page .button-blue {
  min-width: 292px;
  min-height: 64px;
  justify-content: center;
  border: 2px solid #8bdcff;
  background: #229ed9;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
}
.player-page .button-blue:hover,
.player-page .button-blue:focus-visible {
  background: #168bc3;
  color: #fff;
  transform: translateY(-2px);
}
.player-page .button-blue img {
  width: 32px;
  height: 32px;
  margin: 0 11px 0 0;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.42;
    transform: scale(0.72);
  }
}
:root {
  --body: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}
.athlete-hero {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
  overflow: hidden;
  border-bottom: 4px solid #d20a0a;
  background: #18181f;
  color: #fff;
}
.athlete-avatar {
  display: flex;
  min-height: 360px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 22px 12px 0;
  background: radial-gradient(circle at 50% 42%, #3d4049 0, #202127 50%, #0f1014 78%);
}
.athlete-avatar img {
  display: block;
  align-self: flex-end;
  width: min(100%, 300px);
  height: auto;
  max-height: 338px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.45));
}
.athlete-summary {
  padding: 48px 54px;
}
.athlete-summary h1 {
  margin: 12px 0 5px;
  font: 900 clamp(52px, 6vw, 78px) / 0.88 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.athlete-meta {
  margin: 0;
  color: #a7abb2;
  font-size: 12px;
  text-transform: uppercase;
}
.athlete-record {
  display: block;
  margin: 15px 0;
  color: #ef233c;
  font: 900 32px/1 var(--display);
}
.athlete-summary > p:last-of-type {
  max-width: 720px;
  color: #c4c7cd;
}
.athlete-summary .button {
  margin-top: 12px;
}
.athlete-avatar img {
  width: 100%;
  height: 338px;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
}
.athlete-stats dl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  border-top: 3px solid #d20a0a;
  border-left: 1px solid #d1d2d5;
  background: #fff;
}
.athlete-stats dl > div {
  min-height: 92px;
  padding: 20px;
  border-right: 1px solid #d1d2d5;
  border-bottom: 1px solid #d1d2d5;
}
.athlete-stats dt {
  color: #777c84;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.athlete-stats dd {
  margin: 6px 0 0;
  color: #18181f;
  font: 900 18px/1.1 var(--display);
}
.athlete-article {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.athlete-article > article,
.athlete-article > aside {
  padding: 40px;
  border: 1px solid #d1d2d5;
  background: #fff;
}
.athlete-article > aside {
  border-top: 4px solid #d20a0a;
}
.athlete-article h2 {
  margin: 10px 0 18px;
  color: #18181f;
  font: 900 clamp(32px, 4vw, 48px) / 0.92 var(--display);
  text-transform: uppercase;
}
.athlete-article p {
  color: #565b63;
}
.source-box {
  padding: 25px 30px;
  border-left: 4px solid #d20a0a;
  background: #fff;
}
.source-box b {
  font: 900 20px/1 var(--display);
  text-transform: uppercase;
}
.source-box p {
  margin: 8px 0;
  color: #60656d;
}
.source-box a {
  color: #d20a0a;
  font-weight: 700;
}
.result-hero {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-height: 520px;
  margin: 0 auto 34px;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.result-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 6, 8, 0.97) 0,
    rgba(5, 6, 8, 0.76) 52%,
    rgba(5, 6, 8, 0.16) 100%
  );
  content: "";
}
.result-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  justify-content: center;
  flex-direction: column;
  width: min(650px, 70%);
  padding: 55px;
}
.result-hero h1 {
  margin: 13px 0 18px;
  font: 900 clamp(50px, 6vw, 80px) / 0.86 var(--display);
  text-transform: uppercase;
}
.result-hero p {
  margin: 0;
  color: #d0d3d8;
  font-size: 16px;
}
.result-summary-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 72px;
  border-top: 3px solid #d20a0a;
  border-left: 1px solid #d1d2d5;
  background: #fff;
}
.result-summary-grid > div {
  padding: 18px;
  border-right: 1px solid #d1d2d5;
  border-bottom: 1px solid #d1d2d5;
}
.result-summary-grid small {
  display: block;
  color: #777c84;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-summary-grid b {
  display: block;
  margin-top: 5px;
  color: #18181f;
  font: 900 15px/1.15 var(--display);
}
.result-table {
  border: 1px solid #d1d2d5;
  background: #fff;
}
.result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 24px;
  min-height: 94px;
  padding: 18px 24px;
  border-bottom: 1px solid #dedfe2;
}
.result-row:last-child {
  border: 0;
}
.result-row span {
  color: #d20a0a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.result-row h3 {
  margin: 6px 0 0;
  color: #18181f;
  font: 900 21px/1.1 var(--display);
  text-transform: uppercase;
}
.result-row h3 em {
  margin: 0 8px;
  color: #d20a0a;
  font-style: normal;
}
.result-method {
  text-align: right;
}
.result-method b {
  display: block;
  color: #18181f;
  font-size: 12px;
}
.result-method small {
  color: #6d727a;
  font-size: 10px;
}
.result-archive {
  display: grid;
  gap: 14px;
}
.result-archive-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 210px;
  min-height: 190px;
  border: 1px solid #c9cace;
  background: #fff;
}
.result-archive-card > time {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid #d4d5d8;
  color: #18181f;
}
.result-archive-card > time b {
  color: #d20a0a;
  font: 900 44px/0.8 var(--display);
}
.result-archive-card > time span {
  margin-top: 12px;
  font: 900 12px/1.05 var(--display);
  text-align: center;
  text-transform: uppercase;
}
.result-archive-card > div {
  padding: 28px;
}
.result-archive-card h2 {
  margin: 9px 0 4px;
  font: 900 30px/0.95 var(--display);
  text-transform: uppercase;
}
.result-archive-card p {
  margin: 0;
  color: #747981;
  font-size: 11px;
}
.status-pill {
  display: inline-block;
  padding: 5px 8px;
  border: 1px solid #18181f;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.archive-main {
  margin-top: 20px;
  padding: 12px;
  border: 1px solid #d5d6d9;
  background: #f7f7f7;
}
.archive-main small {
  display: block;
  color: #777c84;
  font-size: 8px;
  text-transform: uppercase;
}
.archive-main b {
  font-size: 12px;
}
.result-archive-card > aside {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border-left: 1px solid #d4d5d8;
  text-align: center;
}
.result-archive-card > aside small {
  color: #777c84;
  font-size: 8px;
  text-transform: uppercase;
}
.result-archive-card > aside b {
  font: 900 15px/1.1 var(--display);
}
.result-archive-card > aside .button {
  margin-top: 10px;
  padding-inline: 10px;
}
.news-article {
  width: min(920px, calc(100% - 32px));
  margin: 20px auto 80px;
  border: 1px solid #d1d2d5;
  background: #fff;
}
.news-article > header {
  padding: 54px 60px 38px;
}
.news-article h1 {
  margin: 13px 0 20px;
  font: 900 clamp(48px, 6vw, 72px) / 0.88 var(--display);
  text-transform: uppercase;
}
.news-article .lead {
  color: #4f545c;
  font-size: 18px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 25px;
  color: #777c84;
  font-size: 10px;
}
.article-cover {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}
.article-body {
  padding: 52px 60px;
}
.article-body h2 {
  margin: 42px 0 12px;
  font: 900 34px/0.95 var(--display);
  text-transform: uppercase;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body p,
.article-body li {
  color: #4f545c;
}
.article-body li {
  margin: 6px 0;
}
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.article-actions .button-ghost {
  border-color: #222;
  color: #18181f;
}
.article-source {
  margin-top: 42px;
  padding: 22px;
  border-left: 4px solid #d20a0a;
  background: #f4f4f4;
}
.article-source p {
  margin: 6px 0;
}
.article-source a {
  color: #d20a0a;
  font-weight: 700;
}
.article-schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0;
  border-top: 3px solid #d20a0a;
  border-left: 1px solid #d1d2d5;
}
.article-schedule > div {
  padding: 20px;
  border-right: 1px solid #d1d2d5;
  border-bottom: 1px solid #d1d2d5;
}
.article-schedule small {
  color: #777c84;
  text-transform: uppercase;
}
.article-schedule b {
  display: block;
  margin: 5px 0;
  font: 900 22px/1 var(--display);
}
.article-schedule p {
  margin: 0;
  font-size: 11px;
}
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.link-cloud a {
  padding: 9px 12px;
  border: 1px solid #d2d3d6;
  background: #fff;
  color: #34363b;
  font-size: 11px;
}
.link-cloud a:hover {
  border-color: #d20a0a;
  color: #d20a0a;
}
@media (max-width: 900px) {
  .athlete-hero {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .athlete-avatar {
    min-height: 310px;
  }
  .athlete-avatar img {
    width: 210px;
    height: 210px;
  }
  .athlete-summary {
    padding: 38px;
  }
  .athlete-stats dl {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-summary-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .result-archive-card {
    grid-template-columns: 90px minmax(0, 1fr);
  }
  .result-archive-card > aside {
    grid-column: 1/-1;
    border-top: 1px solid #d4d5d8;
    border-left: 0;
  }
  .result-row {
    grid-template-columns: 1fr 220px;
  }
}
@media (max-width: 620px) {
  .player-page .live-label {
    top: 14px;
    left: 14px;
  }
  .player-page .player-center {
    width: calc(100% - 28px);
    padding: 34px 18px;
  }
  .player-page .button-blue {
    width: 100%;
    min-width: 0;
  }
  .athlete-hero {
    width: 100%;
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
  .athlete-avatar {
    min-height: 272px;
    padding-top: 18px;
  }
  .athlete-avatar img {
    width: 252px;
    max-height: 254px;
  }
  .athlete-summary {
    padding: 30px 22px;
  }
  .athlete-summary h1 {
    font-size: 48px;
  }
  .athlete-stats dl {
    grid-template-columns: 1fr 1fr;
  }
  .athlete-stats dl > div {
    padding: 15px;
  }
  .athlete-article {
    grid-template-columns: 1fr;
  }
  .athlete-article > article,
  .athlete-article > aside {
    padding: 28px 22px;
  }
  .result-hero {
    width: 100%;
    min-height: 470px;
  }
  .result-hero-copy {
    min-height: 470px;
    width: 100%;
    padding: 38px 22px;
  }
  .result-hero h1 {
    font-size: 48px;
  }
  .result-summary-grid {
    grid-template-columns: 1fr 1fr;
  }
  .result-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }
  .result-method {
    text-align: left;
  }
  .result-archive-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .result-archive-card > div {
    padding: 20px 16px;
  }
  .result-archive-card h2 {
    font-size: 23px;
  }
  .news-article {
    width: 100%;
    margin-top: 0;
  }
  .news-article > header,
  .article-body {
    padding: 32px 20px;
  }
  .news-article h1 {
    font-size: 46px;
  }
  .article-schedule {
    grid-template-columns: 1fr;
  }
  .article-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .article-actions .button {
    width: 100%;
  }
}
@media (max-width: 620px) {
  .athlete-avatar img {
    width: 100%;
    height: 254px;
    max-height: none;
  }
}
@media (min-width: 621px) and (max-width: 900px) {
  .athlete-avatar img {
    width: 100%;
    height: 288px;
    max-height: none;
    object-fit: cover;
    object-position: center bottom;
  }
}

/* PageSpeed round: responsive LCP media, deferred player and WCAG contrast */
.hero-visual > picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-visual > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.player-shell iframe:not([src]) {
  background: #06070a url("/assets/brand/ufc-logo.svg") center/140px auto no-repeat;
}
.event-strip small {
  color: #676b72;
}
.section-head span,
.eyebrow,
.plain-hero > span,
.directory-hero-copy > span,
.section-kicker {
  color: #bd0b20;
}
.story-grid article > b {
  color: #777b82;
}
.fight-person small {
  color: #676c74;
}
.button-blue {
  background: #0879aa;
}
.button-blue:hover,
.button-blue:focus-visible {
  background: #06648e;
}
.breadcrumbs {
  color: #626872;
}
.breadcrumbs b {
  color: #24272d;
}

/* Editorial news hub */
.news-hub-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 30px auto 38px;
  padding: 52px 58px;
  border-top: 5px solid #d20a0a;
  background: #18181f;
  color: #fff;
}
.news-hub-hero h1 {
  max-width: 920px;
  margin: 12px 0 18px;
  font: 900 clamp(50px, 7vw, 92px) / 0.86 var(--display);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.news-hub-hero p {
  max-width: 820px;
  margin: 0;
  color: #c7cad0;
  font-size: 17px;
  line-height: 1.65;
}
.news-hub-hero .section-kicker {
  color: #ff5264;
}
.news-hub {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 80px;
}
.news-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-day-group {
  margin-top: 58px;
}
.news-day-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid #18181f;
}
.news-day-head h2 {
  margin: 0;
  font: 900 42px/0.9 var(--display);
  text-transform: uppercase;
}
.news-day-head span {
  color: #5d626a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-archive-grid .news-feed-copy {
  min-height: 285px;
}
.news-pagination {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 3px solid #18181f;
}
.news-pagination a,
.news-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd1d5;
  background: #fff;
  color: #18181f;
  font-size: 12px;
  font-weight: 800;
}
.news-pagination a:hover,
.news-pagination a:focus-visible,
.news-pagination span[aria-current="page"] {
  border-color: #d20a0a;
  background: #d20a0a;
  color: #fff;
}
.news-page-numbers {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.news-page-direction:first-child {
  justify-self: start;
}
.news-page-direction:last-child {
  justify-self: end;
}
.news-feed-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #d1d2d5;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.055);
}
.news-feed-lead {
  grid-column: span 2;
  grid-row: span 2;
}
.news-feed-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}
.news-feed-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-feed-card:hover .news-feed-media img {
  transform: scale(1.025);
}
.news-feed-copy {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.news-feed-lead .news-feed-copy {
  min-height: 320px;
  padding: 36px;
}
.news-feed-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #5d626a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-feed-meta span {
  color: #d20a0a;
}
.news-feed-card h2 {
  margin: 16px 0 12px;
  font: 900 29px/0.95 var(--display);
  text-transform: uppercase;
}
.news-feed-lead h2 {
  font-size: clamp(40px, 5vw, 64px);
}
.news-feed-card h2 a {
  color: #18181f;
}
.news-feed-card p {
  margin: 0 0 22px;
  color: #5c6169;
  font-size: 13px;
  line-height: 1.65;
}
.news-feed-lead p {
  max-width: 720px;
  font-size: 16px;
}
.news-feed-more {
  margin-top: auto;
  color: #d20a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-feed-more span {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.news-feed-more:hover span {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .news-feed-grid,
  .news-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-feed-lead {
    grid-column: span 2;
    grid-row: auto;
  }
}
@media (max-width: 620px) {
  .news-hub-hero {
    width: 100%;
    margin-top: 0;
    padding: 38px 22px;
  }
  .news-hub-hero h1 {
    overflow-wrap: anywhere;
    font-size: clamp(38px, 12vw, 46px);
  }
  .news-hub {
    width: 100%;
  }
  .news-feed-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .news-day-group {
    margin-top: 42px;
  }
  .news-day-head {
    padding: 0 20px 12px;
  }
  .news-day-head h2 {
    font-size: 32px;
  }
  .news-pagination {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 24px 20px 0;
  }
  .news-page-numbers {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .news-page-direction {
    grid-row: 2;
  }
  .news-page-direction:last-child {
    grid-column: 2;
  }
  .news-feed-lead {
    grid-column: auto;
  }
  .news-feed-copy,
  .news-feed-lead .news-feed-copy {
    min-height: 0;
    padding: 24px 20px;
  }
  .news-feed-card h2,
  .news-feed-lead h2 {
    font-size: 31px;
  }
  .news-feed-card p,
  .news-feed-lead p {
    font-size: 14px;
  }
}
@media (max-width: 620px) {
  :root {
    --display: "Arial Narrow", Arial, sans-serif;
  }
  .hero-visual > picture > img {
    object-position: center top;
  }
  .player-shell iframe:not([src]) {
    background-size: 110px auto;
  }
}
@media (max-width: 1100px) {
  .site-header .menu-toggle {
    position: absolute !important;
    top: 18px;
    right: 18px;
    z-index: 110;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header .menu-toggle span {
    display: block !important;
    background: #18181f;
  }
}

/* Fighter media correction: preserve official portrait proportions instead of stretching square cutouts. */
.fight-person img {
  object-fit: cover;
  object-position: center 24%;
}
.athlete-avatar {
  position: relative;
  isolation: isolate;
}
.athlete-avatar img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: none;
}
.article-body .button.button-red {
  color: #fff;
  text-decoration: none;
}
.article-body .button.button-red:hover,
.article-body .button.button-red:focus-visible {
  color: #fff;
  text-decoration: none;
}

/* Keep the desktop navigation grouped symmetrically around the UFC logo. */
@media (min-width: 1101px) {
  .site-header .header-inner {
    width: min(760px, calc(100% - 36px));
    grid-template-columns: minmax(190px, 240px) 86px minmax(190px, 240px);
    justify-content: center;
    column-gap: 28px;
  }
  .site-header .nav-left {
    justify-content: flex-end;
  }
  .site-header .nav-right {
    justify-content: flex-start;
  }
}
