.revo-ufc-page-shell {
  display: block;
  width: 100%;
}

.revo-ufc-public {
  --revo-ufc-ink: #05070d;
  --revo-ufc-panel: #0d111b;
  --revo-ufc-panel-soft: #151b28;
  --revo-ufc-paper: #f4f6f9;
  --revo-ufc-muted: #929cad;
  --revo-ufc-line: rgba(255, 255, 255, 0.13);
  --revo-ufc-red: #e22636;
  --revo-ufc-red-deep: #8e101d;
  --revo-ufc-blue: #397ce8;
  --revo-ufc-blue-deep: #123c8b;
  --revo-slides-per-view: 5;
  width: calc(100% - 50px);
  max-width: 1400px;
  margin: 0;
  padding: 0 0 65px;
  color: var(--revo-ufc-paper);
  font-family: "Barlow", Arial, sans-serif;
}

.revo-ufc-public *,
.revo-ufc-public *::before,
.revo-ufc-public *::after {
  box-sizing: border-box;
}

.revo-ufc-event-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding: 4px 8px;
  border: 1px solid var(--revo-ufc-line);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(226, 38, 54, 0.11), transparent 32%, transparent 68%, rgba(57, 124, 232, 0.11)), #090c13;
}

.revo-ufc-event-strip__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.revo-ufc-event-strip__identity>strong {
  overflow: hidden;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.revo-ufc-event-state {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: #c7ceda;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.revo-ufc-event-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b94a4;
}

.revo-ufc-event-state--live i {
  background: #2fe28a;
  box-shadow: 0 0 0 4px rgba(47, 226, 138, 0.13), 0 0 14px rgba(47, 226, 138, 0.72);
  animation: revo-ufc-live-pulse 1.8s ease-in-out infinite;
}

.revo-ufc-event-state--upcoming i {
  background: #f0b44b;
}

.revo-ufc-event-state--completed i {
  background: #7d8798;
}

@keyframes revo-ufc-live-pulse {
  50% {
    opacity: 0.48;
  }
}

.revo-ufc-event-strip__count {
  flex: 0 0 auto;
  margin-left: 8px;
  color: var(--revo-ufc-muted);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.revo-ufc-tabs {
  display: flex;
  gap: 2px;
  padding: 1px;
  border: 1px solid var(--revo-ufc-line);
  background: #05070c;
}

.revo-ufc-tab {
  position: relative;
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  overflow: hidden;
  border: 0;
  border-radius: 1px;
  color: #939cad;
  background: #10141d;
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.revo-ufc-tab::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--revo-ufc-red), var(--revo-ufc-blue));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.revo-ufc-tab span {
  overflow: hidden;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(12px, 1.05vw, 14px);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.revo-ufc-tab small {
  display: grid;
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #7f899b;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  line-height: 1;
}

.revo-ufc-tab:hover {
  color: #fff;
  background: #171c28;
}

.revo-ufc-tab.is-active {
  color: #07090e;
  background: var(--revo-ufc-paper);
  box-shadow: inset 4px 0 0 var(--revo-ufc-red), inset -4px 0 0 var(--revo-ufc-blue);
}

.revo-ufc-tab.is-active::before {
  transform: scaleX(1);
}

.revo-ufc-tab.is-active small {
  border-color: rgba(8, 11, 17, 0.18);
  color: #313846;
}

.revo-ufc-slider__stage {
  position: relative;
  padding: 0 58px;
}

.revo-ufc-slider__viewport {
  overflow: hidden;
  border-right: 1px solid var(--revo-ufc-line);
  border-bottom: 1px solid var(--revo-ufc-line);
  border-left: 1px solid var(--revo-ufc-line);
  background: var(--revo-ufc-ink);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.35);
  touch-action: pan-y;
}

.revo-ufc-slider__track {
  display: flex;
  align-items: stretch;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.revo-ufc-slide {
  flex: 0 0 calc(100% / var(--revo-slides-per-view));
  min-width: 0;
  padding: 0 5px;
}

.revo-ufc-bout-card {
  position: relative;
  display: grid;
  min-height: 410px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 7px;
  align-items: stretch;
  padding: 44px 9px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(226, 38, 54, 0.34) 0%, rgba(142, 16, 29, 0.1) 37%, transparent 50%),
    linear-gradient(255deg, rgba(57, 124, 232, 0.33) 0%, rgba(18, 60, 139, 0.09) 37%, transparent 50%),
    radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.08), transparent 36%),
    #0b0e16;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.revo-ufc-slide.is-current .revo-ufc-bout-card {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 3px 0 var(--revo-ufc-red), inset 0 -3px 0 var(--revo-ufc-blue);
}

.revo-ufc-bout-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 27%;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(280px) rotateX(58deg) scale(1.35);
  transform-origin: bottom;
}

.revo-ufc-bout-card__cage {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 88%;
  aspect-ratio: 1.05;
  background: rgba(255, 255, 255, 0.12);
  clip-path: polygon(24% 0, 76% 0, 100% 28%, 100% 72%, 76% 100%, 24% 100%, 0 72%, 0 28%);
  transform: translate(-50%, -46%);
}

.revo-ufc-bout-card__cage::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #0c1018;
  clip-path: inherit;
}

.revo-ufc-bout-card__number {
  position: absolute;
  top: 16px;
  right: 11px;
  left: auto;
  color: rgba(255, 255, 255, 0.43);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: none;
}

.revo-ufc-fighter {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.revo-ufc-fighter--red {
  grid-column: 1;
}

.revo-ufc-fighter--blue {
  grid-column: 2;
}

.revo-ufc-fighter__photo {
  position: relative;
  display: flex;
  width: 100%;
  height: 205px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.revo-ufc-fighter__photo::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -8px;
  left: 2%;
  height: 24px;
  border-radius: 50%;
  opacity: 0.78;
  filter: blur(8px);
}

.revo-ufc-fighter--red .revo-ufc-fighter__photo::after {
  background: rgba(226, 38, 54, 0.58);
}

.revo-ufc-fighter--blue .revo-ufc-fighter__photo::after {
  background: rgba(57, 124, 232, 0.58);
}

.revo-ufc-fighter__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 220%;
  max-width: none;
  height: auto;
  object-fit: initial;
  object-position: center bottom;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.58));
}

.revo-ufc-fighter__fallback {
  position: relative;
  z-index: 1;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.38);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 42px;
  font-weight: 900;
  clip-path: polygon(24% 0, 76% 0, 100% 28%, 100% 72%, 76% 100%, 24% 100%, 0 72%, 0 28%);
  background: rgba(255, 255, 255, 0.04);
}

.revo-ufc-fighter__identity {
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding-right: 2px;
  padding-left: 2px;
  padding-top: 10px;
  line-height: 0.9;
  text-transform: uppercase;
}

.revo-ufc-fighter__identity strong {
  max-width: 100%;
  overflow: hidden;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.revo-ufc-fighter__identity span {
  max-width: 100%;
  margin-top: 6px;
  overflow: hidden;
  color: #aab2c0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.revo-ufc-fighter__odds {
  display: inline-flex;
  min-width: 62px;
  min-height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 11px;
  margin-bottom: -25px !important;
  padding: 4px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(4, 6, 10, 0.72);
}

.revo-ufc-fighter--red .revo-ufc-fighter__odds {
  border-left: 3px solid var(--revo-ufc-red);
}

.revo-ufc-fighter--blue .revo-ufc-fighter__odds {
  border-right: 3px solid var(--revo-ufc-blue);
}

.revo-ufc-fighter__odds span {
  color: #7f899a;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.revo-ufc-fighter__odds strong {
  color: #fff;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.revo-ufc-versus {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  pointer-events: none;
  text-align: center;
  transform: translateX(-50%);
}

.revo-ufc-versus__weight,
.revo-ufc-versus__status {
  color: #9aa3b2;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.15;
  text-transform: uppercase;
}

.revo-ufc-versus__weight {
  position: absolute;
  top: 15px;
  left: 11px;
  width: calc(100% - 72px);
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  transform: none;
  white-space: nowrap;
}

.revo-ufc-versus__mark {
  position: absolute;
  top: 164px;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 2px;
  place-items: center;
  clip-path: polygon(24% 0, 76% 0, 100% 28%, 100% 72%, 76% 100%, 24% 100%, 0 72%, 0 28%);
  background: linear-gradient(135deg, var(--revo-ufc-red) 0%, #e9edf4 48%, #e9edf4 52%, var(--revo-ufc-blue) 100%);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.46));
  transform: translate(-50%, -50%);
}

.revo-ufc-versus__mark span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  clip-path: inherit;
  background: #080b12;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.revo-ufc-versus__status {
  position: absolute;
  top: 194px;
  left: 50%;
  color: #e6e9ef;
  font-size: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.revo-ufc-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 44px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: #0e131e;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.revo-ufc-slider__arrow--prev {
  left: 2px;
  border-left: 3px solid var(--revo-ufc-red);
}

.revo-ufc-slider__arrow--next {
  right: 2px;
  border-right: 3px solid var(--revo-ufc-blue);
}

.revo-ufc-slider__arrow:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: #1a2130;
}

.revo-ufc-slider__arrow:hover.revo-ufc-slider__arrow--prev {
  transform: translate(-2px, -50%);
}

.revo-ufc-slider__arrow:hover.revo-ufc-slider__arrow--next {
  transform: translate(2px, -50%);
}

.revo-ufc-slider__arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.revo-ufc-slider__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 13px 20px 8px;
}

.revo-ufc-slider__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #596172;
  box-shadow: 0 0 0 0 transparent;
  cursor: pointer;
  transition: width 170ms ease, border-radius 170ms ease, background-color 170ms ease, box-shadow 170ms ease;
}

.revo-ufc-slider__dot:hover {
  background: #b9c0cc;
}

.revo-ufc-slider__dot.is-active {
  width: 24px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--revo-ufc-red), var(--revo-ufc-blue));
  box-shadow: 0 0 15px rgba(94, 104, 255, 0.3);
}

.revo-ufc-public.has-one-slide .revo-ufc-slider__arrow,
.revo-ufc-public.has-one-slide .revo-ufc-slider__dots {
  display: none;
}

.revo-ufc-public button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

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

.revo-ufc-public--empty {
  min-height: 330px;
  display: grid;
  place-content: center;
  padding: 50px 24px;
  border: 1px solid var(--revo-ufc-line);
  text-align: center;
  background: linear-gradient(135deg, rgba(226, 38, 54, 0.12), transparent 42%), linear-gradient(315deg, rgba(57, 124, 232, 0.12), transparent 42%), #090c13;
}

.revo-ufc-public--empty>span {
  color: #e24654;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.revo-ufc-public--empty h1 {
  margin: 10px 0 5px;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  text-transform: uppercase;
}

.revo-ufc-public--empty p {
  color: var(--revo-ufc-muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .revo-ufc-public {
    --revo-slides-per-view: 3;
    width: calc(100% - 24px);
  }

  .revo-ufc-slider__stage {
    padding: 0 48px;
  }

  .revo-ufc-bout-card {
    min-height: 400px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 44px 10px 18px;
  }

  .revo-ufc-fighter__photo {
    height: 195px;
  }

  .revo-ufc-versus__mark {
    width: 46px;
    height: 46px;
  }

  .revo-ufc-versus__mark span {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .revo-ufc-public {
    --revo-slides-per-view: 1;
    width: calc(100% - 16px);
    padding-bottom: 35px;
  }

  .revo-ufc-event-strip {
    min-height: 34px;
    padding: 4px 6px;
  }

  .revo-ufc-event-strip__identity {
    gap: 8px;
  }

  .revo-ufc-event-state {
    font-size: 0;
  }

  .revo-ufc-event-state i {
    width: 8px;
    height: 8px;
  }

  .revo-ufc-event-strip__identity>strong {
    font-size: 14px;
  }

  .revo-ufc-event-strip__count {
    margin-left: 6px;
    font-size: 10px;
  }

  .revo-ufc-tabs {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .revo-ufc-tabs::-webkit-scrollbar {
    display: none;
  }

  .revo-ufc-tab {
    flex: 1 0 auto;
    min-height: 34px;
    padding: 4px 6px;
  }

  .revo-ufc-tab span {
    font-size: 12px;
  }

  .revo-ufc-tab small {
    flex-basis: 17px;
    width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .revo-ufc-slider__stage {
    padding: 0;
  }

  .revo-ufc-slide {
    padding: 0;
  }

  .revo-ufc-bout-card {
    min-height: 398px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 42px 18px 21px;
  }

  .revo-ufc-bout-card__cage {
    width: 68%;
  }

  .revo-ufc-fighter__photo {
    height: 215px;
  }

  .revo-ufc-fighter__photo img {
    width: 185%;
  }

  .revo-ufc-fighter__identity {
    padding-top: 8px;
  }

  .revo-ufc-fighter__identity strong {
    font-size: clamp(21px, 7vw, 30px);
  }

  .revo-ufc-fighter__identity span {
    margin-top: 6px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .revo-ufc-fighter__odds {
    min-width: 74px;
    min-height: 34px;
    gap: 2px;
    margin-top: 11px;
    padding: 4px 7px;
  }

  .revo-ufc-fighter__odds span {
    display: inline;
  }

  .revo-ufc-fighter__odds strong {
    font-size: 12px;
  }

  .revo-ufc-versus {
    padding: 0;
  }

  .revo-ufc-versus__weight {
    max-width: 180px;
    font-size: 8px;
    letter-spacing: 0.07em;
  }

  .revo-ufc-versus__mark {
    top: 168px;
    width: 55px;
    height: 55px;
  }

  .revo-ufc-versus__mark span {
    font-size: 20px;
  }

  .revo-ufc-versus__status {
    top: 203px;
    font-size: 8px;
  }

  .revo-ufc-slider__arrow {
    top: 49%;
    width: 36px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(5, 8, 13, 0.83);
  }

  .revo-ufc-slider__arrow--prev {
    left: 5px;
  }

  .revo-ufc-slider__arrow--next {
    right: 5px;
  }

  .revo-ufc-slider__arrow svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 400px) {
  .revo-ufc-event-strip__count {
    display: none;
  }

  .revo-ufc-bout-card {
    min-height: 370px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 8px;
  }

  .revo-ufc-fighter__photo {
    height: 186px;
  }

  .revo-ufc-versus__mark {
    top: 150px;
    width: 48px;
    height: 48px;
  }

  .revo-ufc-versus__mark span {
    font-size: 18px;
  }

  .revo-ufc-versus__status {
    top: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .revo-ufc-event-state--live i,
  .revo-ufc-slider__track {
    animation: none;
    transition: none;
  }
}

/* Upcoming-event index: the event art is the navigation, not decoration. */
.revo-ufc-events-index {
  padding-top: 18px;
}

.revo-ufc-events-index__header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 13px;
  align-items: baseline;
  margin: 0 0 16px;
  padding: 0 2px;
}

.revo-ufc-events-index__header>span {
  grid-row: span 2;
  align-self: stretch;
  display: flex;
  align-items: center;
  padding: 2px 10px;
  border-left: 3px solid var(--revo-ufc-red);
  border-right: 3px solid var(--revo-ufc-blue);
  color: #dce3ee;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
}

.revo-ufc-events-index__header h1 {
  margin: 0;
  color: var(--revo-ufc-paper);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(27px, 3.3vw, 42px);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.revo-ufc-events-index__header p {
  margin: 6px 0 0;
  color: var(--revo-ufc-muted);
  font-size: 13px;
  font-weight: 600;
}

.revo-ufc-events-index__list {
  display: grid;
  gap: 17px;
}

.revo-ufc-event-card {
  position: relative;
  min-height: clamp(280px, 31vw, 410px);
  overflow: hidden;
  border: 1px solid var(--revo-ufc-line);
  background: #0b1019;
  isolation: isolate;
}

.revo-ufc-event-card::before,
.revo-ufc-event-card::after {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 4px;
  content: "";
  pointer-events: none;
}

.revo-ufc-event-card::before {
  left: 0;
  background: linear-gradient(180deg, transparent 5%, var(--revo-ufc-red) 27%, var(--revo-ufc-red) 73%, transparent 95%);
}

.revo-ufc-event-card::after {
  right: 0;
  background: linear-gradient(180deg, transparent 5%, var(--revo-ufc-blue) 27%, var(--revo-ufc-blue) 73%, transparent 95%);
}

.revo-ufc-event-card__link {
  display: block;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.revo-ufc-event-card__picture,
.revo-ufc-event-card__picture img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.revo-ufc-event-card__picture img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
  transition: transform 430ms cubic-bezier(.2, .72, .2, 1), filter 430ms ease;
}

.revo-ufc-event-card__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 6, 11, 0.63), transparent 31%, transparent 69%, rgba(4, 6, 11, 0.63)),
    linear-gradient(180deg, rgba(3, 5, 9, 0.08) 5%, rgba(3, 5, 9, 0.22) 36%, rgba(3, 5, 9, 0.79) 100%);
  pointer-events: none;
}

.revo-ufc-event-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 58px 39px;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.revo-ufc-event-card__title {
  margin-bottom: 12px;
  color: #eff2f7;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(14px, 1.65vw, 21px);
  font-weight: 800;
  letter-spacing: 0.135em;
  line-height: 1;
  text-transform: uppercase;
}

.revo-ufc-event-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(34px, 5.4vw, 70px);
  font-weight: 900;
  letter-spacing: 0.018em;
  line-height: 0.86;
  text-transform: uppercase;
}

.revo-ufc-event-card h2>span {
  max-width: 42%;
  overflow-wrap: anywhere;
}

.revo-ufc-event-card h2 b {
  display: inline-grid;
  flex: 0 0 auto;
  width: clamp(38px, 4.3vw, 59px);
  height: clamp(38px, 4.3vw, 59px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-left: 3px solid var(--revo-ufc-red);
  border-right: 3px solid var(--revo-ufc-blue);
  border-radius: 50%;
  background: rgba(5, 8, 14, 0.74);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(10px, 1.15vw, 14px);
  letter-spacing: 0.04em;
}

.revo-ufc-event-card time {
  margin-top: 20px;
  color: #f3f6fb;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(10px, 1.15vw, 13px);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.revo-ufc-event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.revo-ufc-event-card__cta i {
  color: #a9c9ff;
  font-size: 18px;
  font-style: normal;
  line-height: 0;
  transition: transform 180ms ease;
}

.revo-ufc-event-card__link:hover .revo-ufc-event-card__picture img,
.revo-ufc-event-card__link:focus-visible .revo-ufc-event-card__picture img {
  filter: saturate(1.13) contrast(1.04);
  transform: scale(1.04);
}

.revo-ufc-event-card__link:hover .revo-ufc-event-card__cta i,
.revo-ufc-event-card__link:focus-visible .revo-ufc-event-card__cta i {
  transform: translateX(5px);
}

.revo-ufc-event-card__link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -7px;
}

.revo-ufc-events-index__empty,
.revo-ufc-event-detail__notice {
  padding: 25px 28px;
  border: 1px solid var(--revo-ufc-line);
  background: linear-gradient(100deg, rgba(226, 38, 54, 0.09), transparent 45%, rgba(57, 124, 232, 0.09)), #0a0e16;
}

.revo-ufc-events-index__empty strong,
.revo-ufc-event-detail__notice strong {
  display: block;
  color: var(--revo-ufc-paper);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.revo-ufc-events-index__empty p,
.revo-ufc-event-detail__notice p {
  margin: 6px 0 0;
  color: var(--revo-ufc-muted);
  font-size: 14px;
}

.revo-ufc-event-detail {
  padding-top: 22px;
}

.revo-ufc-event-detail__back {
  display: inline-flex;
  margin: 0 0 14px;
  color: #dbe4f1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.revo-ufc-event-detail__back:hover,
.revo-ufc-event-detail__back:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.revo-ufc-event-card--static {
  min-height: clamp(290px, 34vw, 440px);
}

.revo-ufc-event-detail__notice {
  border-top: 0;
}

@media (max-width: 700px) {
  .revo-ufc-events-index {
    padding-top: 12px;
  }

  .revo-ufc-events-index__header {
    column-gap: 10px;
    margin-bottom: 12px;
  }

  .revo-ufc-events-index__header>span {
    padding-inline: 7px;
    font-size: 8px;
  }

  .revo-ufc-events-index__header h1 {
    font-size: 28px;
  }

  .revo-ufc-events-index__header p {
    margin-top: 4px;
    font-size: 12px;
  }

  .revo-ufc-events-index__list {
    gap: 12px;
  }

  .revo-ufc-event-card,
  .revo-ufc-event-card--static {
    min-height: 250px;
  }

  .revo-ufc-event-card__content {
    padding: 34px 30px 29px;
  }

  .revo-ufc-event-card__title {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.11em;
  }

  .revo-ufc-event-card h2 {
    gap: 10px;
    font-size: clamp(31px, 10vw, 47px);
  }

  .revo-ufc-event-card h2>span {
    max-width: 41%;
  }

  .revo-ufc-event-card h2 b {
    width: 37px;
    height: 37px;
    border-left-width: 2px;
    border-right-width: 2px;
    font-size: 9px;
  }

  .revo-ufc-event-card time {
    margin-top: 15px;
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  .revo-ufc-event-card__cta {
    margin-top: 14px;
    font-size: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .revo-ufc-event-card__picture img,
  .revo-ufc-event-card__cta i {
    transition: none;
  }
}

/* Event names read vertically as a fight poster: red corner, VS, blue corner. */
.revo-ufc-event-card {
  min-height: clamp(325px, 35vw, 450px);
}

.revo-ufc-event-card--static {
  min-height: clamp(335px, 37vw, 470px);
}

.revo-ufc-event-card h2 {
  flex-direction: column;
  gap: clamp(13px, 1.5vw, 20px);
}

.revo-ufc-event-card h2>span {
  max-width: 100%;
  line-height: 0.82;
}

.revo-ufc-event-card h2 b {
  position: relative;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: clamp(10px, 1.1vw, 14px);
  line-height: 1;
}

.revo-ufc-event-card h2 b::before,
.revo-ufc-event-card h2 b::after {
  position: absolute;
  top: 50%;
  width: clamp(58px, 16vw, 190px);
  height: 1px;
  background: rgba(255, 255, 255, 0.82);
  content: "";
}

.revo-ufc-event-card h2 b::before {
  right: calc(100% + 15px);
}

.revo-ufc-event-card h2 b::after {
  left: calc(100% + 15px);
}

@media (max-width: 700px) {

  .revo-ufc-event-card,
  .revo-ufc-event-card--static {
    min-height: 305px;
  }

  .revo-ufc-event-card__content {
    padding-top: 30px;
    padding-bottom: 27px;
  }

  .revo-ufc-event-card h2 {
    gap: 13px;
    font-size: clamp(42px, 13vw, 56px);
  }

  .revo-ufc-event-card h2 b::before,
  .revo-ufc-event-card h2 b::after {
    width: 72px;
  }
}

/* Standalone plugin screen: no theme chrome, only the event artwork. */
html {
  min-height: 100%;
  background: #05070d;
}

body.revo-ufc-embed-page {
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  background: #05070d;
}

body.revo-ufc-embed-page .revo-ufc-page-shell,
body.revo-ufc-embed-page .revo-ufc-public {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.revo-ufc-embed-page .revo-ufc-events-index {
  scroll-snap-type: y proximity;
}

body.revo-ufc-embed-page .revo-ufc-events-index__header {
  display: none;
}

body.revo-ufc-embed-page .revo-ufc-events-index__list {
  gap: 0;
}

body.revo-ufc-embed-page .revo-ufc-event-card,
body.revo-ufc-embed-page .revo-ufc-event-card--static {
  min-height: 100svh;
  border: 0;
  scroll-snap-align: start;
}

body.revo-ufc-embed-page .revo-ufc-event-card+.revo-ufc-event-card {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

body.revo-ufc-embed-page .revo-ufc-event-card__content {
  padding: 48px clamp(28px, 8vw, 120px);
}

body.revo-ufc-embed-page .revo-ufc-event-detail {
  position: relative;
  min-height: 100svh;
  padding: 0;
}

body.revo-ufc-embed-page .revo-ufc-event-detail__back {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 22px;
  margin: 0;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.37);
  background: rgba(5, 7, 13, 0.68);
  backdrop-filter: blur(10px);
}

body.revo-ufc-embed-page .revo-ufc-event-detail__notice {
  position: absolute;
  z-index: 4;
  right: clamp(16px, 4vw, 44px);
  bottom: clamp(16px, 4vw, 44px);
  left: clamp(16px, 4vw, 44px);
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 7, 13, 0.73);
  backdrop-filter: blur(13px);
}

@media (max-width: 700px) {
  body.revo-ufc-embed-page .revo-ufc-event-card__content {
    padding: 42px 28px;
  }

  body.revo-ufc-embed-page .revo-ufc-event-detail__back {
    top: 14px;
    left: 14px;
    padding: 8px 10px;
    font-size: 10px;
  }

  body.revo-ufc-embed-page .revo-ufc-event-detail__notice {
    right: 13px;
    bottom: 13px;
    left: 13px;
    padding: 16px 18px;
  }
}

/* Fight detail: the carousel is the whole standalone screen. */
body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  padding: clamp(14px, 2vw, 30px) 0 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 92, 144, 0.18), transparent 42%),
    linear-gradient(115deg, rgba(226, 38, 54, 0.1), transparent 28%, transparent 72%, rgba(57, 124, 232, 0.1)),
    #05070d;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
  width: min(100% - 32px, 1560px);
  margin-right: auto;
  margin-left: auto;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
  min-height: 46px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--revo-ufc-line);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-state {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
  flex: 0 0 auto;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
  display: flex;
  width: min(100%, 1680px);
  min-height: 0;
  flex: 1 1 auto;
  align-items: center;
  align-self: center;
  padding-top: clamp(16px, 2vw, 28px);
  padding-bottom: clamp(12px, 1.6vw, 22px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__viewport {
  width: 100%;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  min-height: clamp(410px, 54vh, 570px);
  padding-top: 24px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__number,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__weight,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__status {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  top: 50%;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  height: clamp(225px, 32vh, 330px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
  width: auto;
  max-width: 130%;
  height: 100%;
  object-fit: contain;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo .revo-ufc-fighter__odds {
  position: absolute;
  z-index: 3;
  top: 10px;
  min-width: 68px;
  min-height: 42px;
  margin: 0;
  padding: 5px 7px;
  background: rgba(5, 8, 14, 0.86);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__odds {
  left: 6px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__odds {
  right: 6px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity {
  padding-top: 12px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
  font-size: clamp(14px, 1.45vw, 25px);
  letter-spacing: 0.005em;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    min-height: clamp(410px, 58vh, 530px);
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    padding-top: 9px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip,
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs,
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
    width: min(100% - 16px, 1560px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 10px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    min-height: min(560px, calc(100svh - 162px));
    padding-top: 18px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
    height: clamp(210px, 36vh, 300px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
    height: 112%;
  }
}

/* Fight cards follow the compact broadcast-board composition of the reference. */
body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
  position: relative;
  padding: 18px 0 10px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(28, 45, 66, 0.18), transparent 45%),
    linear-gradient(135deg, #03070a 0%, #080e13 54%, #03070a 100%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
  position: relative;
  width: min(100% - 104px, 1560px);
  min-height: 106px;
  margin: 0 auto;
  padding: 8px 0 0;
  border: 0;
  background: transparent;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-state {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow {
  display: block;
  color: #e8ebef;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-top: 18px;
  border-radius: 99px;
  background: #e1191f;
  content: "";
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity>strong {
  max-width: 350px;
  margin-top: 9px;
  overflow: hidden;
  color: #9ca6b1;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
  position: absolute;
  top: 39px;
  right: 0;
  margin: 0;
  color: #9aa4ae;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
  position: absolute;
  z-index: 7;
  top: 38px;
  left: 50%;
  display: flex;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 4px;
  background: transparent;
  transform: translateX(-50%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
  flex: 0 0 clamp(105px, 8vw, 135px);
  min-height: 36px;
  padding: 5px 8px;
  border: 1px solid rgba(62, 103, 159, 0.48);
  border-radius: 5px;
  color: #aeb8c8;
  background: linear-gradient(180deg, rgba(15, 27, 42, 0.96), rgba(8, 15, 23, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 22px rgba(0, 0, 0, 0.18);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab::before {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab span {
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.025em;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab small {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab.is-active {
  border-color: #ee1f25;
  color: #fff;
  background: linear-gradient(180deg, #dc060b 0%, #94040a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 0 0 1px rgba(255, 22, 31, 0.1), 0 10px 24px rgba(85, 0, 5, 0.32);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
  width: min(100%, 1720px);
  flex: 1 1 auto;
  align-items: center;
  padding: 14px 10px 72px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__viewport {
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slide {
  padding: 0 8px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  height: clamp(520px, 67vh, 650px);
  min-height: clamp(520px, 67vh, 650px);
  padding: 0 9px 20px;
  overflow: hidden;
  border: 1px solid rgba(135, 151, 166, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(44, 61, 76, 0.42), transparent 44%),
    linear-gradient(180deg, rgba(11, 18, 24, 0.98), rgba(3, 8, 12, 0.99));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 17px 28px rgba(0, 0, 0, 0.28);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slide.is-current .revo-ufc-bout-card {
  border-color: rgba(191, 202, 211, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 17px 28px rgba(0, 0, 0, 0.32);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card::after,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__cage,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__number,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__weight,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__status {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter {
  justify-content: flex-start;
  padding: 0 3px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  width: 100%;
  height: 27.5%;
  min-height: 0;
  align-items: flex-start;
  overflow: hidden;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo::after {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
  width: 112%;
  max-width: none;
  height: auto;
  object-fit: initial;
  object-position: center top;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.56));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__fallback {
  width: 68px;
  height: 68px;
  margin-top: 18px;
  font-size: 32px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity {
  display: grid;
  min-height: 64px;
  padding: 15px 1px 0;
  place-items: start center;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
  display: -webkit-box;
  overflow: visible;
  color: #f0f2f4;
  font-size: clamp(15px, 1.2vw, 21px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 0.96;
  text-align: center;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
  position: relative;
  display: grid;
  width: calc(100% - 2px);
  min-height: 62px;
  margin-top: 28px;
  padding: 7px 8px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(5, 10, 15, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds span {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds strong {
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: 0.015em;
  line-height: 1;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__odds {
  border-color: rgba(241, 40, 45, 0.86);
  background: linear-gradient(100deg, rgba(150, 7, 12, 0.9), rgba(70, 6, 10, 0.88));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__odds {
  border-color: rgba(41, 119, 232, 0.82);
  background: linear-gradient(100deg, rgba(10, 42, 92, 0.9), rgba(5, 20, 49, 0.9));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  top: 19%;
  width: auto;
  height: auto;
  padding: 0;
  clip-path: none;
  background: transparent;
  filter: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark span {
  display: block;
  width: auto;
  height: auto;
  color: #ee1c23;
  clip-path: none;
  background: transparent;
  font-size: clamp(24px, 2.25vw, 36px);
  font-style: normal;
  letter-spacing: -0.05em;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow {
  top: auto;
  bottom: 12px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(163, 178, 193, 0.46);
  border-radius: 50%;
  background: rgba(7, 12, 17, 0.94);
  transform: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow--prev {
  left: 18px;
  border-left: 1px solid rgba(163, 178, 193, 0.46);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow--next {
  right: 18px;
  border-right: 1px solid rgba(163, 178, 193, 0.46);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow:hover.revo-ufc-slider__arrow--prev,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow:hover.revo-ufc-slider__arrow--next {
  transform: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
  width: min(100% - 104px, 1560px);
  min-height: 43px;
  margin: -54px auto 0;
  padding: 0;
  gap: 20px;
  pointer-events: auto;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dot,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dot.is-active {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3f4751;
  box-shadow: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dot.is-active {
  background: #dd171e;
  box-shadow: 0 0 13px rgba(221, 23, 30, 0.34);
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    width: min(100% - 64px, 1560px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
    gap: 8px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
    flex-basis: 180px;
    min-height: 56px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: clamp(500px, 65vh, 600px);
    min-height: clamp(500px, 65vh, 600px);
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    padding-top: 14px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    width: calc(100% - 28px);
    min-height: 90px;
    padding-top: 3px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow {
    font-size: 32px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow::after {
    margin-top: 12px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity>strong {
    max-width: 220px;
    margin-top: 6px;
    font-size: 10px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
    top: 36px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
    position: static;
    width: calc(100% - 28px);
    margin: 0 auto 10px;
    gap: 6px;
    transform: none;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
    flex: 1 1 0;
    min-width: 0;
    min-height: 48px;
    padding: 7px 5px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab span {
    font-size: 15px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
    padding: 8px 46px 66px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slide {
    padding: 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: min(610px, calc(100svh - 178px));
    min-height: min(610px, calc(100svh - 178px));
    padding-right: 12px;
    padding-left: 12px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
    font-size: clamp(21px, 6.3vw, 30px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
    min-height: 58px;
    margin-top: 23px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds strong {
    font-size: 31px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    top: 19%;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow {
    bottom: 8px;
    width: 42px;
    height: 42px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow--prev {
    left: 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow--next {
    right: 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
    width: calc(100% - 104px);
    margin-top: -50px;
    gap: 13px;
  }
}

/* Final reference pass: framed board, dense cards and bottom-anchored odds. */
body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
  width: 100%;
  min-height: 760px;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  border: 1px solid #1d2932;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(25, 43, 58, 0.22), transparent 48%),
    linear-gradient(145deg, #03070a 0%, #071016 52%, #03070a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
  width: min(100% - 64px, 1560px);
  min-height: 56px;
  padding-top: 6px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow {
  font-size: clamp(20px, 1.5vw, 23px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow::after {
  margin-top: 3px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity>strong {
  margin-top: 2px;
  font-size: 11px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
  top: 17px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
  top: 8px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
  width: min(100%, 1720px);
  flex: 1 1 auto;
  align-items: flex-start;
  padding: 8px 74px 74px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  height: clamp(535px, calc(100svh - 300px), 650px);
  min-height: 0;
  grid-template-rows: minmax(0, 1fr);
  padding: 0 9px;
  border-color: #33404a;
  background:
    radial-gradient(ellipse at 50% 17%, rgba(45, 62, 73, 0.35), transparent 42%),
    linear-gradient(180deg, #0a1217 0%, #070d11 48%, #050a0d 100%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter {
  height: auto;
  min-height: 0;
  grid-row: 1;
  padding: 0 4px;
  justify-content: flex-start;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  flex: 0 0 27.5%;
  width: 100%;
  height: 27.5%;
  min-height: 0;
  align-items: flex-start;
  overflow: hidden;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
  width: 116%;
  max-width: none;
  height: auto;
  object-fit: initial;
  object-position: center top;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity {
  display: grid;
  min-height: 54px;
  padding: 14px 0 0;
  place-items: start center;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
  display: block;
  width: 100%;
  overflow: hidden;
  color: #f4f5f6;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  margin: auto 0 38px;
  padding: 8px 5px;
  border-radius: 5px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds strong {
  font-size: clamp(27px, 2vw, 36px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds.is-unavailable {
  border-color: rgba(126, 143, 157, 0.3);
  background: rgba(10, 16, 21, 0.72);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds.is-unavailable strong {
  color: #606d78;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label {
  position: absolute;
  z-index: 3;
  right: 17px;
  bottom: 123px;
  left: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #75808a;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label::before,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label::after {
  height: 1px;
  flex: 1 1 auto;
  background: #2b343b;
  content: "";
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  top: 17.5%;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
  margin-top: -56px;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    min-height: 700px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: clamp(510px, calc(100svh - 285px), 610px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
    font-size: clamp(18px, 2.2vw, 25px);
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    width: calc(100% - 16px);
    height: auto;
    min-height: calc(100svh - 16px);
    margin: 8px;
    border-radius: 9px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    width: calc(100% - 28px);
    min-height: 86px;
    padding-top: 18px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
    top: 35px;
    font-size: 14px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
    position: static;
    margin-bottom: 12px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
    padding: 4px 46px 64px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: min(590px, calc(100svh - 190px));
    min-height: 490px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
    font-size: clamp(23px, 7vw, 31px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label {
    bottom: 116px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
    min-height: 60px;
    margin-bottom: 34px;
  }
}

/* Compact reference geometry: removed sections collapse instead of leaving gaps. */
body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
  display: block;
  width: 100% !important;
  height: auto;
  min-height: 0;
  margin: 0 !important;
  padding: 0 0 18px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
  width: calc(100% - 30px);
  min-height: 56px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
  flex-basis: clamp(105px, 8vw, 135px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 8px 6px 70px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  --revo-photo-crop-height: 160px;
  height: 430px;
  min-height: 430px;
  grid-template-rows: minmax(0, 1fr);
  padding: 0;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__status {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 50%;
  display: inline-flex;
  min-width: 88px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border: 1px solid #2c3740;
  border-radius: 5px;
  color: #eef1f3;
  background: linear-gradient(180deg, #182127, #0d1419);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 6px 16px rgba(0, 0, 0, 0.2);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__status--live {
  border-color: #e21b21;
  background: linear-gradient(180deg, #b4080e, #74050a);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter {
  height: auto;
  min-height: 0;
  grid-row: 1;
  padding: 0;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  flex: 0 0 var(--revo-photo-crop-height);
  width: 100%;
  height: var(--revo-photo-crop-height);
  margin-top: 52px;
  align-items: flex-start;
  overflow: hidden;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
  max-width: none;
  height: calc(var(--revo-photo-crop-height) / 0.275);
  object-fit: contain;
  object-position: center top;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity {
  min-height: 48px;
  padding-top: 13px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
  font-size: clamp(18px, 1.45vw, 24px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  top: 30.5%;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label {
  bottom: 105px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
  min-height: 62px;
  margin: auto 0 20px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__arrow {
  bottom: 10px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots {
  margin-top: -54px;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    --revo-photo-crop-height: 165px;
    height: 440px;
    min-height: 440px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    width: calc(100% - 16px);
    margin: 8px;
    padding-bottom: 14px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    min-height: 86px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
    padding: 4px 46px 62px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    --revo-photo-crop-height: 190px;
    height: 480px;
    min-height: 480px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
    margin-top: 50px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
    font-size: clamp(23px, 7vw, 31px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    top: 29.5%;
  }
}

/* Spanish betting plaques: compact broadcast-style overlays on each corner. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  height: 305px;
  min-height: 305px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__odds-label {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
  position: absolute;
  z-index: 6;
  top: 60px;
  display: flex;
  width: auto;
  min-width: 78px;
  min-height: 46px;
  margin: 0;
  padding: 5px 10px 6px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__odds {
  right: auto;
  left: 5px;
  border-color: rgba(255, 92, 96, 0.55);
  background: linear-gradient(135deg, rgba(181, 15, 23, 0.96), rgba(85, 5, 10, 0.92));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__odds {
  right: 5px;
  left: auto;
  border-color: rgba(91, 159, 255, 0.52);
  background: linear-gradient(225deg, rgba(20, 86, 184, 0.96), rgba(6, 31, 73, 0.92));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds strong {
  color: #fff;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.36);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds.is-unavailable {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(41, 46, 54, 0.94), rgba(15, 18, 23, 0.92));
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds.is-unavailable span {
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 315px;
    min-height: 315px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 340px;
    min-height: 340px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
    top: 58px;
    min-width: 84px;
    min-height: 48px;
  }
}

/* Fight poll: one compact choice per corner, with the split kept readable at five-up. */
.revo-ufc-fighter__vote {
  position: relative;
  z-index: 7;
  display: flex;
  width: calc(100% - 10px);
  min-width: 0;
  min-height: 36px;
  margin: 4px 1px 0;
  padding: 5px 7px;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #f6f7f8;
  background: #11181e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  line-height: 1;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
}

.revo-ufc-fighter__vote span {
  overflow: hidden;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.revo-ufc-fighter__vote strong {
  flex: 0 0 auto;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.revo-ufc-fighter--red .revo-ufc-fighter__vote {
  margin-left: 10px;
  border-color: rgba(255, 68, 74, 0.42);
  background: linear-gradient(100deg, rgba(108, 10, 16, 0.88), rgba(28, 16, 20, 0.92));
}

.revo-ufc-fighter--blue .revo-ufc-fighter__vote {
  margin-right: 10px;
  border-color: rgba(74, 142, 241, 0.42);
  background: linear-gradient(260deg, rgba(11, 52, 112, 0.88), rgba(14, 22, 34, 0.92));
}

.revo-ufc-fighter--red .revo-ufc-fighter__vote:not(:disabled):hover,
.revo-ufc-fighter--red .revo-ufc-fighter__vote.is-selected {
  border-color: #ff555b;
  background: linear-gradient(100deg, #a70911, #4c080d);
}

.revo-ufc-fighter--blue .revo-ufc-fighter__vote:not(:disabled):hover,
.revo-ufc-fighter--blue .revo-ufc-fighter__vote.is-selected {
  border-color: #5d9fff;
  background: linear-gradient(260deg, #1559b8, #082451);
}

.revo-ufc-fighter__vote:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.revo-ufc-fighter__vote:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.revo-ufc-fighter__vote.is-selected:disabled {
  opacity: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 5px 14px rgba(0, 0, 0, 0.3);
}

.revo-ufc-vote-meter {
  --revo-red-votes: 50%;
  position: absolute;
  z-index: 7;
  right: 13px;
  bottom: 27px;
  left: 13px;
  display: flex;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #202931;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.revo-ufc-vote-meter__red {
  width: var(--revo-red-votes);
  background: #ed252c;
  transition: width 240ms ease;
}

.revo-ufc-vote-meter__blue {
  flex: 1 1 auto;
  background: #2776e6;
}

.revo-ufc-vote-meter.is-empty span {
  background: #3a4650;
}

.revo-ufc-vote-summary {
  position: absolute;
  z-index: 7;
  right: 9px;
  bottom: 7px;
  left: 9px;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  overflow: hidden;
  color: #8f9ba5;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.revo-ufc-vote-summary span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.revo-ufc-vote-summary span:first-child {
  flex: 0 0 auto;
  color: #c8d0d6;
}

.revo-ufc-vote-summary i {
  flex: 0 0 auto;
  color: #4e5a64;
  font-style: normal;
}

.revo-ufc-bout-card.is-vote-busy .revo-ufc-fighter__vote {
  opacity: 0.55;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  height: 352px;
  min-height: 352px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__vote {
  flex: 0 0 36px;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 362px;
    min-height: 362px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 395px;
    min-height: 395px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__vote {
    min-height: 40px;
    padding-inline: 9px;
  }
.revo-ufc-fighter__vote{
  width: calc(100% - 5px);
}
  .revo-ufc-fighter--blue .revo-ufc-fighter__vote {
    margin-right: 0;
  }
  .revo-ufc-fighter--red .revo-ufc-fighter__vote{
    margin-left: 0;
  }

  .revo-ufc-fighter__vote span {
    font-size: 11px;
  }

  .revo-ufc-fighter__vote strong {
    font-size: 19px;
  }

  .revo-ufc-vote-summary {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .revo-ufc-fighter__vote,
  .revo-ufc-vote-meter__red {
    transition: none;
  }
}

/* Keep each betting quote in its own row, immediately above the portrait. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
  position: relative;
  inset: auto;
  z-index: 2;
  flex: 0 0 46px;
  min-width: 78px;
  min-height: 46px;
  margin: 52px 0 6px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__odds {
  align-self: flex-start;
  right: auto;
  left: auto;
  margin-left: -13px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__odds {
  align-self: flex-end;
  right: auto;
  left: auto;
  margin-right: -13px;
  border-right: 0;
  border-radius: 4px 0 0 4px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  z-index: 3;
  margin-top: 15px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
  z-index: 4;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  top: 160px;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    top: 162px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
    top: auto;
    flex-basis: 48px;
    margin-top: 50px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    top: 171px;
  }
}

/* Reserve a real footer below the vote buttons for the poll result. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
  height: 390px;
  min-height: 390px;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-vote-meter,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-vote-summary {
  pointer-events: none;
}

@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 395px;
    min-height: 395px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    height: 425px;
    min-height: 425px;
  }
}

/* Use the supplied transparent artwork for the central VS marker. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
  width: 58px;
  height: 61px;
  padding: 0;
  clip-path: none;
  background-color: transparent;
  background-image: url("../images/versus.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: none;
  pointer-events: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: none;
  border: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    width: 66px;
    height: 69px;
  }
}

/* Keep all carousel navigation together, above the slider stage hit area. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls {
  position: absolute;
  z-index: 12;
  bottom: 12px;
  left: 50%;
  display: flex;
  width: max-content;
  max-width: calc(100% - 48px);
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(-50%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__arrow {
  position: static;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  transform: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__arrow--prev,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__arrow--next {
  inset: auto;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__arrow:hover {
  transform: scale(1.04);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dots {
  position: relative;
  z-index: 1;
  display: flex;
  width: auto;
  min-height: 40px;
  flex: 0 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  pointer-events: auto;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot,
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot.is-active {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  touch-action: manipulation;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot::before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3f4751;
  content: "";
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot:hover::before {
  background: #aeb7bf;
  transform: scale(1.15);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot.is-active::before {
  background: #dd171e;
  box-shadow: 0 0 13px rgba(221, 23, 30, 0.42);
}

.revo-ufc-public.has-one-slide .revo-ufc-slider__controls {
  display: none;
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls {
    bottom: 10px;
    width: calc(100% - 20px);
    max-width: none;
    gap: 6px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__arrow {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot,
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot.is-active {
    width: 16px;
    height: 22px;
    flex-basis: 16px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dot::before {
    width: 8px;
    height: 8px;
  }
}

/* Soften the lower crop without changing the portrait's original height. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo {
  -webkit-mask-image: linear-gradient(to bottom,
      #000 0,
      #000 calc(100% - 30px),
      rgba(0, 0, 0, 0.86) calc(100% - 21px),
      rgba(0, 0, 0, 0.42) calc(100% - 9px),
      transparent 100%);
  mask-image: linear-gradient(to bottom,
      #000 0,
      #000 calc(100% - 30px),
      rgba(0, 0, 0, 0.86) calc(100% - 21px),
      rgba(0, 0, 0, 0.42) calc(100% - 9px),
      transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Let the existing status plaque carry the main event's hierarchy. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card--main-event .revo-ufc-bout-card__status {
  border-color: #e12a31;
  color: #ffffff;
  background: linear-gradient(180deg, #c8141d, #8b080e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 7px 16px rgba(161, 8, 16, 0.3);
  font-weight: 800;
  letter-spacing: 0.055em;
}

/* Keep large fight cards navigable without letting their pagination widen the layout. */
body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dots {
  width: max-content;
  max-width: min(360px, calc(100vw - 160px));
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  touch-action: pan-x;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dots::-webkit-scrollbar {
  display: none;
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots.has-overflow-after {
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 16px), transparent 100%);
  mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 16px), transparent 100%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots.has-overflow-before {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 100%);
}

body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__dots.has-overflow-before.has-overflow-after {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
}

/* Mobile carousel: keep two complete bouts visible without turning either into a crop. */
@media (max-width: 640px) {
  body.revo-ufc-embed-page .revo-ufc-public[data-revo-ufc-slider] {
    --revo-slides-per-view: 2;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__stage {
    padding: 4px 2px 62px;
    overflow: hidden;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: 1 1 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slide {
    padding: 0 3px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card {
    --revo-photo-crop-height: 126px;
    height: 328px;
    min-height: 328px;
    column-gap: 2px;
    padding: 0 4px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-bout-card__status {
    top: 10px;
    min-width: 70px;
    min-height: 25px;
    padding: 4px 6px;
    font-size: 10px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter {
    padding: 0 1px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds {
    flex-basis: 38px;
    min-width: 58px;
    min-height: 38px;
    padding: 4px 5px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__odds {
    margin: 40px 0 -18px -5px !important;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__odds {
    margin: 40px -5px -18px 0 !important;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds span {
    font-size: 6px;
    letter-spacing: 0.11em;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__odds strong {
    font-size: 16px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity {
    min-height: 44px;
    padding: 8px 1px 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(12px, 3.6vw, 15px);
    line-height: 0.96;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__identity span {
    margin-top: 3px;
    font-size: 7px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__vote {
    flex-basis: 32px;
    min-height: 32px;
    margin-top: 3px;
    padding: 4px;
    gap: 2px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__vote span {
    font-size: 12px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__vote strong {
    font-size: 14px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-versus__mark {
    top: 122px;
    width: 42px;
    height: 44px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-slider__controls .revo-ufc-slider__dots {
    max-width: min(176px, calc(100vw - 118px));
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-vote-meter {
    right: 7px;
    left: 7px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-vote-summary {
    right: 6px;
    left: 6px;
    font-size: 8px;
  }
}

/* Responsive event masthead: metadata first, then one stable segmented navigation row. */
@media (max-width: 900px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    position: relative;
    display: grid;
    width: calc(100% - 64px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: start;
    column-gap: 8px;
    margin: 0 auto;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(143, 160, 174, 0.16);
    background: transparent;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow {
    font-size: 18px;
    line-height: 0.9;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow::after {
    width: 18px;
    height: 2px;
    margin-top: 3px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity>strong {
    display: -webkit-box;
    width: 100%;
    max-width: 460px;
    margin-top: 2px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.2;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
    position: static;
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    align-self: start;
    justify-content: center;
    margin: 0;
    padding: 3px 6px;
    border: 1px solid rgba(124, 143, 158, 0.28);
    border-radius: 4px;
    color: #b4bec7;
    background: rgba(9, 16, 22, 0.76);
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    white-space: nowrap;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
    position: static;
    display: grid;
    width: calc(100% - 64px);
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    margin: 0 auto 4px;
    padding: 2px;
    overflow: visible;
    border: 1px solid #26343f;
    border-radius: 7px;
    gap: 2px;
    background: #071016;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transform: none;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
    width: auto;
    min-width: 0;
    min-height: 34px;
    flex: none;
    padding: 3px 4px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #9eabb6;
    background: transparent;
    box-shadow: none;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab:hover {
    color: #e9edf0;
    background: rgba(30, 44, 55, 0.62);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab.is-active,
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab.is-active:hover {
    border-color: #ee1f25;
    color: #ffffff;
    background: linear-gradient(180deg, #ce0b12 0%, #8f070c 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 5px 14px rgba(96, 1, 6, 0.28);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab span {
    font-size: 12px;
    letter-spacing: 0.035em;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab:focus-visible {
    z-index: 2;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }
}

@media (max-width: 640px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip {
    width: calc(100% - 28px);
    column-gap: 6px;
    padding: 10px 0;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow {
    font-size: 17px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__eyebrow::after {
    width: 16px;
    margin-top: 3px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__identity>strong {
    max-width: none;
    margin-top: 3px;
    font-size: 11px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
    min-height: 21px;
    padding: 3px 5px;
    letter-spacing: 0.045em;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tabs {
    width: calc(100% - 28px);
    margin-bottom: 4px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab {
    min-height: 34px;
    padding: 3px 2px;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-tab span {
    font-size: clamp(11px, 3vw, 12px);
    letter-spacing: 0.025em;
  }
}

@media (max-width: 360px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-event-strip__count {
    padding-inline: 4px;
  }
}

/* Keep paired portraits separated on narrow phones with a real percentage width. */
@media (max-width: 512px) {
  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter__photo img {
    width: 124%;
    max-width: 124%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--red .revo-ufc-fighter__photo img {
    margin-inline: 0 auto;
    transform: translate(-10%, 8px);
  }

  body.revo-ufc-embed-page [data-revo-ufc-slider] .revo-ufc-fighter--blue .revo-ufc-fighter__photo img {
    margin-inline: auto 0;
    transform: translate(10%, 8px);
  }
}

/* Official result: keep the winner marker compact so it does not disturb the card. */
.revo-ufc-fighter__outcome {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f6ca57 !important;
  font-size: 8px !important;
  font-weight: 900 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
}

.revo-ufc-fighter__outcome::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: currentColor;
  box-shadow: 0 0 9px rgba(246, 202, 87, 0.58);
  transform: rotate(45deg);
}

.revo-ufc-fighter.is-winner .revo-ufc-fighter__identity strong {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(246, 202, 87, 0.22);
}
