/* =========================================================
   HIT - Base (Negro/Blanco/Rojo)
   Regla: EL ROJO ES ACCIÓN
   ========================================================= */

:root{
  --bg: #0E0E0E;
  --panel: #1C1C1C;
  --panel-2: #1A1A1A;
  --text: #F2F2F2;
  --muted: #8A8A8A;
  --brand: #B11226;
  --brand-hover: #8F0E1E;

  --border: rgba(242,242,242,.10);
  --border-strong: rgba(242,242,242,.18);
  --shadow: 0 16px 44px rgba(0,0,0,.55);

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*{ box-sizing: border-box; }

html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

a:hover{
  text-decoration: underline;
}

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

.container{
  width: min(var(--container), 100% - 32px);
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.gold,
.accent{
  color: var(--text);
  border-bottom: 2px solid rgba(177,18,38,.55);
  padding-bottom: 2px;
}

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

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: var(--brand);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus{
  left:10px;
  z-index:9999;
  outline: 2px solid rgba(242,242,242,.35);
}

/* =========================================================
   PRELOADER
   ========================================================= */

.is-loading{
  overflow: hidden;
}

.preloader{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display:grid;
  place-items:center;
}

.preloader__inner{
  width: min(520px, 92vw);
  text-align:center;
  padding: 22px;
}

.preloader__logo-wrap{
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: #000;
  display:grid;
  place-items:center;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}

.preloader__logo{
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.preloader__text{
  margin: 0 0 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--muted);
}

.preloader__bar{
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(242,242,242,.04);
  overflow:hidden;
}

.preloader__bar-fill{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--brand), rgba(177,18,38,.70));
}

.preloader__wipe{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(177,18,38,.10), transparent 60%),
    linear-gradient(180deg, rgba(14,14,14,0), rgba(14,14,14,1));
  pointer-events:none;
}

.preloader.is-done{
  animation: preloaderFade .55s ease forwards;
}

@keyframes preloaderFade{
  to{
    opacity:0;
    visibility:hidden;
  }
}

/* =========================================================
   HEADER + NAV
   ========================================================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14,14,14,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none !important;
}

.brand__logo{
  height: 44px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.brand__name{
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

.nav__link{
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .04em;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav__link:hover{
  color: var(--text);
  background: rgba(242,242,242,.06);
  text-decoration:none;
}

.nav__link--cta{
  border: 1px solid rgba(177,18,38,.55);
  background: rgba(177,18,38,.10);
  color: var(--text);
}

.nav__link--cta:hover{
  border-color: rgba(177,18,38,.85);
  background: rgba(177,18,38,.16);
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(242,242,242,.04);
  cursor:pointer;
}

.nav-toggle__bar{
  display:block;
  width:20px;
  height:2px;
  background: var(--text);
  margin:5px auto;
  border-radius:99px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero{
  position: relative;
  min-height: 100svh;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  --p: 0;
}

.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(calc(1.02 + (var(--p) * .08)));
  transition: transform .08s linear;
}

.hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.86) 70%);
  opacity: calc(.85 + (var(--p) * .25));
  transition: opacity .08s linear;
}

.hero__gridlines{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(242,242,242,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(242,242,242,.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: .10;
  mix-blend-mode: overlay;
}

.hero__inner{
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 96px 0 56px;
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 340px);
  gap: 28px;
  align-items: center;
}

.hero__copy{
  max-width: 720px;
  position: relative;
  z-index: 2;
  transform: translateY(calc(var(--p) * 40px));
  opacity: calc(1 - (var(--p) * 1.1));
  transition: opacity .08s linear, transform .08s linear;
}

.hero__right{
  transform: translateY(calc(var(--p) * 40px));
  opacity: calc(1 - (var(--p) * 1.1));
  transition: opacity .08s linear, transform .08s linear;
}

.kicker{
  margin: 0 0 12px;
  color: var(--muted);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero__title{
  margin: 0 0 14px;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.05;
}

.hero__lead{
  margin: 0 0 22px;
  color: var(--text);
  opacity: .88;
  max-width: 58ch;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.hero__cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}

.mini-card{
  border: 1px solid var(--border);
  background: rgba(242,242,242,.03);
  border-radius: var(--radius);
  padding: 14px;
}

.mini-card__label{
  margin:0 0 6px;
  color: var(--muted);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.10em;
  font-size:12px;
}

.mini-card__value{
  margin:0;
  font-weight:900;
  color: var(--text);
}

.hero__poster{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
  position: relative;
  z-index: 2;
}

.hero__poster-card{
  width: min(100%, 320px);
  aspect-ratio: 3 / 4.2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #000;
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
  transition: transform .3s ease;
}

.hero__poster-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center top;
}

.hero__poster-card:hover{
  transform: translateY(-4px);
}

.hero__poster-badge{
  display:none;
}

/* =========================================================
   FEATURE CARD
   ========================================================= */

.feature{
  border: 1px solid rgba(177,18,38,.22);
  background: rgba(242,242,242,.03);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}

.feature__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(242,242,242,.08);
}

.tag{
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(177,18,38,.35);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.dot-live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color: var(--muted);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.dot-live span{
  width:10px;
  height:10px;
  border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(177,18,38,.16);
  animation: pulse 1.2s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{ transform: scale(1); opacity:1; }
  50%{ transform: scale(0.78); opacity:.6; }
}

.feature__media{
  position:relative;
  aspect-ratio: 16 / 10;
  background: #0f0f12;
}

.feature__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  opacity:.92;
}

.play{
  position:absolute;
  left:16px;
  bottom:16px;
  width:54px;
  height:54px;
  border-radius:18px;
  border:1px solid rgba(177,18,38,.55);
  background: rgba(0,0,0,.55);
  color: var(--text);
  font-size:18px;
  cursor:pointer;
}

.play:hover{
  border-color: rgba(177,18,38,.90);
  background: rgba(177,18,38,.18);
}

.feature__body{ padding:16px; }
.feature__title{ margin:0 0 8px; font-size:18px; }
.feature__text{ margin:0 0 12px; color: var(--muted); }
.feature__actions{ display:flex; gap:14px; flex-wrap:wrap; }

.link{
  color: var(--text);
  border-bottom: 1px solid rgba(177,18,38,.55);
  text-decoration:none;
}

.link:hover{
  border-bottom-color: rgba(177,18,38,.90);
}

/* =========================================================
   SECCIONES + GRID
   ========================================================= */

.section{
  padding: 64px 0;
}

.section--alt{
  background: var(--panel);
  border-top: 1px solid rgba(242,242,242,.06);
  border-bottom: 1px solid rgba(242,242,242,.06);
}

.section__header{
  margin-bottom: 22px;
}

.section__header--split{
  display:flex;
  gap:16px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}

.section__title{
  margin:0 0 8px;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section__subtitle{
  margin:0;
  color: var(--muted);
}

.section__footer{
  margin-top:18px;
  display:flex;
  justify-content:flex-end;
}

.grid{
  display:grid;
  gap:16px;
}

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

/* =========================================================
   BOTONES + CONTROLS
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(242,242,242,.04);
  color: var(--text);
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  text-decoration:none !important;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn:hover{
  border-color: var(--border-strong);
}

.btn--primary,
.btn--gold{
  background: var(--brand);
  border-color: rgba(177,18,38,.55);
  color: var(--text);
}

.btn--primary:hover,
.btn--gold:hover{
  background: var(--brand-hover);
  border-color: rgba(177,18,38,.85);
  text-decoration:none;
}

.btn--ghost{
  background: transparent;
  border-color: rgba(177,18,38,.55);
}

.btn--ghost:hover{
  border-color: rgba(177,18,38,.90);
  background: rgba(177,18,38,.10);
  text-decoration:none;
}

.btn--small{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

.controls{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.input input,
.select{
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(242,242,242,.04);
  color: var(--text);
  padding: 0 12px;
  outline:none;
}

.input input::placeholder{
  color: rgba(242,242,242,.45);
}

.input input:focus,
.select:focus{
  border-color: rgba(177,18,38,.80);
}

/* =========================================================
   EVENTOS
   ========================================================= */

#eventos{
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
}

#eventos .container{
  position: relative;
  z-index: 1;
}

.backmarquee{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  display:flex;
  align-items:flex-start;
  padding-top:0;
  transform: translateY(-34px);
  overflow:hidden;
}

.backmarquee__track{
  display:flex;
  gap:40px;
  width:max-content;
  white-space:nowrap;
  will-change:transform;
  animation: backMove 18s linear infinite;
  opacity:1;
}

.backmarquee__track span{
  font-weight:1000;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size: clamp(56px, 10vw, 180px);
  line-height:.9;
  color:#fff;
}

@keyframes backMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.event-card,
.card{
  border:1px solid var(--border);
  background: rgba(242,242,242,.03);
  border-radius:22px;
  overflow:hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.event-card{
  height:100%;
  display:flex;
  flex-direction:column;
}

.event-card:hover,
.card:hover{
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.event-card__media,
.card__media{
  position:relative;
  display:block;
  aspect-ratio: 16 / 10;
  background: #0f0f12;
  overflow:hidden;
}

.event-card__media img,
.card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.event-card__badge{
  position:absolute;
  left:12px;
  top:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(177,18,38,.40);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.event-card__body,
.card__body{
  padding:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
  flex:1;
}

.event-card__meta{
  margin:0;
  color: var(--muted);
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}

.event-card__title,
.card__title{
  margin:0;
  font-size:18px;
  line-height:1.15;
}

.card__text{
  margin:0 0 14px;
  color: var(--muted);
}

.card__meta{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-size:14px;
}

.event-card__actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.event-card__actions .btn{
  flex:1 1 140px;
  min-width:0;
  justify-content:center;
}

/* =========================================================
   RANKINGS
   ========================================================= */

.tabs{
  display:flex;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}

.tab{
  border:1px solid var(--border);
  background: rgba(242,242,242,.03);
  color: var(--muted);
  border-radius:999px;
  padding: 10px 12px;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
}

.tab:hover{
  border-color: var(--border-strong);
  color: var(--text);
}

.tab.is-active{
  border-color: rgba(177,18,38,.85);
  background: rgba(177,18,38,.12);
  color: var(--text);
}

.panel{
  display:none;
  margin-top:16px;
}

.panel.is-active{
  display:block;
}

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

.rank-card{
  border:1px solid rgba(177,18,38,.22);
  background: rgba(242,242,242,.03);
  border-radius: var(--radius);
  padding:16px;
}

.rank-card__title{
  margin:0 0 10px;
  text-transform:uppercase;
  letter-spacing:.10em;
  font-size:14px;
}

.rank-list{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:8px;
}

.rank-list li{
  display:flex;
  gap:10px;
  align-items:center;
}

.pos{
  width:38px;
  font-weight:900;
  color: rgba(177,18,38,.95);
}

.name{
  color: var(--muted);
}

.empty{
  border:1px dashed rgba(242,242,242,.18);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(242,242,242,.02);
}

/* =========================================================
   RESULTS / FIGHT CARD
   ========================================================= */

.results-hero{
  padding-top:36px;
  padding-bottom:22px;
}

.results-hero__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:18px;
  background:
    radial-gradient(800px 240px at left top, rgba(177,18,38,.16), transparent 60%),
    rgba(242,242,242,.03);
}

.results-hero__title{
  margin:0 0 10px;
  font-size: clamp(28px, 4.8vw, 56px);
  letter-spacing:.12em;
  text-transform:uppercase;
  line-height:.95;
}

.results-hero__meta{
  display:grid;
  gap:10px;
  min-width:260px;
}

.meta-pill{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 14px;
}

.meta-pill__label{
  display:block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--muted);
  font-weight:900;
  margin-bottom:4px;
}

.meta-pill__value{
  font-weight:900;
  color: var(--text);
}

.fightlist{
  display:grid;
  gap:22px;
}

.fight{
  position:relative;
  display:grid;
  grid-template-columns: 140px 1fr 140px;
  min-height:220px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(177,18,38,.10), rgba(255,255,255,.02) 35%, rgba(255,255,255,.03));
  border-radius:24px;
  overflow:hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.fight::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 180px at left center, rgba(177,18,38,.12), transparent 60%),
    radial-gradient(600px 180px at right center, rgba(177,18,38,.08), transparent 60%);
  pointer-events:none;
}

.fight:hover{
  transform: translateY(-4px);
  border-color: rgba(177,18,38,.40);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.fight--main{
  border:1px solid rgba(177,18,38,.55);
  background:
    linear-gradient(135deg, rgba(177,18,38,.18), rgba(255,255,255,.03) 38%, rgba(255,255,255,.02));
  box-shadow: 0 20px 55px rgba(0,0,0,.38);
}

.fight__side{
  position:relative;
  background:
    linear-gradient(180deg, rgba(177,18,38,.18), rgba(0,0,0,.12));
  display:flex;
  align-items:stretch;
}

.fight__side--left::after,
.fight__side--right::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:1px;
  background: rgba(255,255,255,.08);
}

.fight__side--left::after{ right:0; }
.fight__side--right::after{ left:0; }

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

.fight__center{
  position:relative;
  z-index:1;
  padding:26px 24px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  align-items:center;
  text-align:center;
}

.fight__topline{
  width:100%;
  display:flex;
  justify-content:center;
}

.fight__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius:999px;
  background: rgba(177,18,38,.18);
  border:1px solid rgba(177,18,38,.45);
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.fight__names{
  width:100%;
  display:grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items:center;
  gap:16px;
}

.fight__name{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.fight__name--right{
  text-align:right;
}

.fight__name h3{
  margin:0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height:1.05;
}

.fight__country{
  margin:0;
  color:#cfcfcf;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.fight__photo{
  width:90px;
  height:90px;
  border-radius:50%;
  overflow:hidden;
  border:2px solid rgba(177,18,38,.6);
  background:#111;
}

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

.fight__name--right .fight__photo img{
  transform: scaleX(-1);
}

.fight__vs{
  font-size:28px;
  font-weight:1000;
  letter-spacing:.18em;
  color: rgba(255,255,255,.92);
  text-align:center;
}

.fight__links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  text-align:center;
  width:100%;
  color: var(--muted);
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}

.fight__link{
  color: var(--muted);
  text-decoration:none;
  border-bottom:1px solid rgba(177,18,38,.35);
}

.fight__link:hover{
  color: var(--text);
  border-bottom-color: rgba(177,18,38,.80);
}

.fight__dot{
  opacity:.45;
}

.fight__summary{
  max-width:720px;
  color: rgba(242,242,242,.82);
  font-size:15px;
  line-height:1.6;
}

.fight__division{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  margin-top:2px;
  padding: 12px 16px;
  border-radius:14px;
  border:1px solid rgba(177,18,38,.30);
  background: rgba(177,18,38,.10);
  text-align:center;
}

.fight__division-text{
  font-size:12px;
  font-weight:1000;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#fff;
  text-align:center;
}

.fight__result{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 14px;
  border-radius:14px;
  font-size:12px;
  font-weight:1000;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#fff;
  display:flex;
  gap:10px;
  align-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.55);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

.fight__result--win{
  background: linear-gradient(135deg, rgba(177,18,38,.95), rgba(143,14,30,.95));
  border-color: rgba(177,18,38,.55);
}

.fight__result--loss{
  background: rgba(138,138,138,.28);
  border-color: rgba(242,242,242,.18);
}

.fight__result-sub{
  display:inline-block;
  margin-left:6px;
  opacity:.95;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:none;
}

.fight__cta{
  margin-top:4px;
  display:flex;
  justify-content:center;
}

.fight__watch-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius:14px;
  background: var(--brand);
  border:1px solid rgba(177,18,38,.55);
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-decoration:none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fight__watch-btn:hover{
  background: var(--brand-hover);
  border-color: rgba(177,18,38,.85);
  text-decoration:none;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(177,18,38,.22);
}

/* =========================================================
   SPONSORS STRIP
   ========================================================= */

.logos{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(242,242,242,.08);
  background: rgba(242,242,242,.02);
}

.logos__track{
  display:flex;
  gap:14px;
  padding:14px;
  width:max-content;
  animation: logosMove 16s linear infinite;
}

.logo-pill{
  min-width:260px;
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}

.logo-pill img{
  max-width:100%;
  max-height:90px;
  object-fit:contain;
}

@keyframes logosMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(177,18,38,.22);
  background:
    radial-gradient(900px 380px at 10% 0%, rgba(177,18,38,.14), transparent 60%),
    rgba(242,242,242,.02);
}

.bullets{
  margin:14px 0 0;
  padding-left:18px;
  color: var(--muted);
  display:grid;
  gap:8px;
}

.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--muted);
  font-size:14px;
  margin:10px 0;
}

.check input{
  margin-top:3px;
}

/* =========================================================
   REDES SOCIALES
   ========================================================= */

.social{
  display:flex;
  flex-direction:column;
  gap:28px;
  padding:40px 0;
}

.social__links{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}

.social-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px;
  border-radius:20px;
  background: rgba(242,242,242,.03);
  border:1px solid rgba(242,242,242,.10);
  text-decoration:none;
  transition: all .25s ease;
}

.social-card:hover{
  transform: translateY(-4px);
  border-color: rgba(177,18,38,.55);
  background: rgba(177,18,38,.08);
  text-decoration:none;
}

.social-card__icon{
  width:60px;
  height:60px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(242,242,242,.05);
  border:1px solid rgba(242,242,242,.12);
  flex-shrink:0;
}

.social-card__icon img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.social-card:hover .social-card__icon img{
  filter: brightness(0) saturate(100%) invert(18%) sepia(88%) saturate(2334%) hue-rotate(343deg) brightness(92%) contrast(96%);
}

.social-card__info h3{
  margin:0 0 4px;
  font-size:18px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.social-card__info p{
  margin:0;
  color: var(--muted);
  font-size:14px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer{
  border-top:1px solid rgba(242,242,242,.06);
  background:#0B0B0B;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding:22px 0;
  align-items:center;
}

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

.footer__logo{
  height:44px;
  width:auto;
  max-width:170px;
  object-fit:contain;
}

.footer__name{
  margin:0 0 2px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.footer__right{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted);
}

.footer__right a{
  color: var(--muted);
}

.footer__right a:hover{
  color: var(--text);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 980px){
  .hero{
    min-height:auto;
  }

  .hero__inner{
    min-height:auto;
    grid-template-columns: 1fr;
    gap:24px;
    padding:92px 0 44px;
  }

  .hero__copy{
    max-width:100%;
    text-align:center;
    margin:0 auto;
  }

  .hero__lead{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  .hero__actions{
    justify-content:center;
  }

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

  .hero__poster{
    justify-content:center;
  }

  .hero__poster-card{
    width:min(100%, 300px);
  }

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

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

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

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

  .fight__names{
    grid-template-columns: 1fr 60px 1fr;
  }

  .fight__name h3{
    font-size:20px;
  }
}

@media (max-width: 760px){
  .container{
    width: min(var(--container), 100% - 24px);
  }

  .nav-toggle{
    display:block;
  }

  .nav{
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    display:none;
    flex-direction:column;
    gap:6px;
    padding:14px;
    border-radius:18px;
    border:1px solid var(--border);
    background: rgba(28,28,28,.94);
    box-shadow: var(--shadow);
  }

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

  .nav__link{
    width:100%;
  }

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

  .hero__inner{
    min-height:auto;
    grid-template-columns: 1fr;
    gap:20px;
    padding:82px 0 34px;
  }

  .hero__copy{
    text-align:left;
  }

  .hero__title{
    font-size: clamp(30px, 9vw, 44px);
    line-height:1.04;
  }

  .hero__lead{
    font-size:15px;
    line-height:1.6;
  }

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

  .hero__actions .btn{
    width:100%;
  }

  .hero__cards{
    grid-template-columns: 1fr;
    gap:10px;
  }

  .hero__poster{
    width:100%;
  }

  .hero__poster-card{
    width:min(100%, 260px);
    aspect-ratio: 3 / 4.3;
    margin:0 auto;
  }

  .hero__poster-card img{
    object-fit: contain;
    object-position: center;
    background:#000;
  }

  #eventos{
    padding-top:54px;
    padding-bottom:54px;
  }

  .backmarquee{
    transform: translateY(-8px);
  }

  .backmarquee__track{
    opacity:1;
  }

  .backmarquee__track span{
    font-size: clamp(40px, 13vw, 72px);
  }

  .grid--3{
    grid-template-columns: 1fr;
    gap:16px;
  }

  .event-card{
    border-radius:18px;
  }

  .event-card__media{
    aspect-ratio: 16 / 9;
  }

  .event-card__body{
    padding:14px;
  }

  .event-card__meta{
    font-size:11px;
    line-height:1.4;
  }

  .event-card__title{
    font-size:18px;
  }

  .event-card__actions{
    flex-direction:column;
    gap:8px;
  }

  .event-card__actions .btn{
    width:100%;
    flex:none;
  }

  .fight{
    grid-template-columns: 1fr;
    min-height:auto;
  }

  .fight__side{
    min-height:70px;
  }

  .fight__side--right{
    display:none;
  }

  .fight__names{
    grid-template-columns: 1fr;
    gap:10px;
  }

  .fight__vs{
    font-size:22px;
  }

  .fight__center{
    padding:22px 16px 18px;
  }

  .fight__result{
    position:static;
    margin:14px;
    display:inline-flex;
    width:fit-content;
  }

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

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

  .footer__left{
    align-items:flex-start;
  }
}

@media (max-width: 420px){
  .container{
    width: min(var(--container), 100% - 22px);
  }

  .hero__inner{
    padding-top:76px;
  }

  .hero__title{
    font-size:28px;
  }

  .hero__lead{
    font-size:14px;
  }

  .hero__poster-card{
    width:min(100%, 220px);
  }

  .mini-card{
    padding:12px;
  }

  .event-card__body{
    padding:12px;
  }

  .btn{
    padding:11px 14px;
    font-size:12px;
  }

  .social-card{
    padding:16px;
    gap:14px;
  }

  .social-card__icon{
    width:52px;
    height:52px;
  }
}

/* =========================================================
   ACCESIBILIDAD
   ========================================================= */

@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fight__links{
  display:flex;
  justify-content:center;
  text-align:center;
  width:100%;
}

.fight__link{
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(177,18,38,.35);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.fight__link:hover{
  color: var(--text);
  border-bottom-color: rgba(177,18,38,.80);
}

}