/* ============================================================
   CRÓNICAS KIMURA — Hoja de estilos
   Estilo: Oscuro + acentos fuego. Mobile-first.
   ============================================================ */

:root {
  --bg:        #0d0d0f;
  --bg-2:      #15151a;
  --bg-3:      #1d1d24;
  --surface:   #1a1a20;
  --border:    #2a2a33;
  --text:      #f2f2f4;
  --text-dim:  #a6a6b2;
  --fire:      #ff3b1f;   /* rojo fuego */
  --fire-2:    #ff7a18;   /* naranja */
  --gold:      #ffc733;   /* dorado/amarillo */
  --live:      #ff2d2d;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(0,0,0,.45);
  --maxw:      1240px;
  --head:      'Oswald', 'Arial Narrow', sans-serif;
  --body:      'Inter', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--head); text-transform: uppercase; line-height: 1.05; letter-spacing: .5px; }

::selection { background: var(--fire); color: #fff; }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  font-family: var(--head);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 1rem;
}
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-fire {
  background: linear-gradient(135deg, var(--fire), var(--fire-2));
  color: #fff;
  box-shadow: 0 6px 18px rgba(255,59,31,.35);
}
.btn-fire:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(255,59,31,.55); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--fire); color: var(--fire); transform: translateY(-3px); }

/* ============================= HEADER ============================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,15,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; }
.brand-name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.brand-name em { color: var(--fire); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--head);
  text-transform: uppercase;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-dim);
  transition: color .15s, background .15s;
}
.main-nav a:hover { color: var(--text); background: var(--bg-3); }

.live-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  background: var(--live);
  color: #fff !important;
}
.live-btn:hover { background: #ff4d4d !important; }
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff;
  animation: pulse 1.1s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 3px; background: var(--text);
  border-radius: 3px; transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================== INTRO HERO (VÍDEO) ====================== */
.intro-hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.intro-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,.55) 0%, rgba(13,13,15,.4) 45%, rgba(13,13,15,.95) 100%);
  z-index: 2;
}
.intro-overlay {
  position: relative;
  z-index: 3;
  padding: 24px;
  max-width: 880px;
}
.intro-kicker {
  color: var(--gold);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: clamp(.8rem, 2vw, 1rem);
  margin-bottom: 14px;
}
.intro-title {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 700;
  text-shadow: 0 4px 24px rgba(0,0,0,.7);
}
.intro-title span { color: var(--fire); }
.intro-sub {
  color: var(--text);
  margin: 18px auto 28px;
  max-width: 620px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.intro-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.intro-scroll {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: var(--text-dim);
  animation: bob 1.6s infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ====================== TICKER ====================== */
.ticker {
  display: flex;
  align-items: stretch;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label {
  background: var(--fire);
  color: #fff;
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 30px;
  padding-left: 100%;
  animation: ticker 26s linear infinite;
}
.ticker-track span { color: var(--text-dim); font-size: .95rem; }
.ticker-track strong { color: var(--gold); }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ====================== PÁGINA DE ARTÍCULO ====================== */
.post { display: block; }
.post-loading { max-width: 760px; margin: 60px auto; padding: 0 20px; color: var(--text-dim); text-align: center; }
.post-hero {
  width: 100%;
  height: clamp(220px, 42vw, 480px);
  overflow: hidden;
  position: relative;
}
.post-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0) 40%, rgba(13,13,15,.85) 100%);
}
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.post .post-wrap { margin-top: -60px; position: relative; z-index: 2; }
.post .post-wrap--solo { margin-top: 28px; }
.post-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-transform: none;
  line-height: 1.1;
  margin: 14px 0 16px;
}
.post-summary {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 8px;
  border-left: 3px solid var(--fire);
  padding-left: 16px;
}
.post-body { font-size: 1.1rem; line-height: 1.8; margin: 28px 0 36px; }
.post-body p { margin-bottom: 1.3em; color: #e7e7ea; }

/* Título grande dentro del artículo (peso fuerte; claro para leerse en fondo oscuro) */
.post-h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  text-transform: none;
  line-height: 1.2;
  margin: 1.6em 0 .5em;
}
/* Subtítulo: negrita y menor tamaño */
.post-h3 {
  font-size: clamp(1.15rem, 2.6vw, 1.4rem);
  font-weight: 700;
  color: var(--text);
  text-transform: none;
  line-height: 1.3;
  margin: 1.3em 0 .4em;
}
/* Imágenes dentro del artículo */
.post-figure { margin: 1.8em 0; }
.post-figure img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.post-figure figcaption {
  margin-top: 8px;
  color: var(--text-dim);
  font-size: .88rem;
  text-align: center;
  font-style: italic;
}
.post-back { margin-bottom: 50px; }
.post-notfound { text-align: center; padding: 80px 20px; }
.post-notfound .post-title { margin-bottom: 16px; }
.post-comments { margin-top: 10px; padding-bottom: 40px; }
.post-comments .block-head { margin-top: 20px; }

/* ====================== FRASE DE LA SEMANA ====================== */
.quote-band {
  background:
    linear-gradient(rgba(13,13,15,.82), rgba(13,13,15,.9)),
    radial-gradient(circle at 20% 30%, rgba(255,59,31,.18), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 18px;
}
.quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-label {
  display: inline-block;
  color: var(--gold);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 18px;
}
.quote-text {
  font-family: var(--head);
  font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  line-height: 1.25;
  color: var(--text);
  font-style: italic;
  text-transform: none;
  margin: 0 auto 16px;
  position: relative;
  padding: 0 10px;
}
.quote-text::before,
.quote-text::after {
  font-family: Georgia, serif;
  color: var(--fire);
  font-size: 3em;
  line-height: 0;
  opacity: .5;
}
.quote-text::before {
  content: "“";
  vertical-align: -.35em;
  margin-right: .05em;
}
.quote-text::after {
  content: "”";
  vertical-align: -.55em;
  margin-left: .05em;
}
.quote-author {
  display: block;
  font-family: var(--head);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fire);
  font-weight: 600;
  font-size: 1rem;
}

/* ====================== LAYOUT ====================== */
.layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 18px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

/* Encabezados de bloque */
.block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 3px solid var(--fire);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.block-head h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
.see-all { color: var(--fire); font-weight: 600; font-family: var(--head); letter-spacing: 1px; }
.see-all:hover { color: var(--gold); }

.section-flag {
  display: inline-block;
  color: var(--gold);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
}

.cat-tag {
  display: inline-block;
  background: var(--fire);
  color: #fff;
  font-family: var(--head);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ---------- HERO destacado ---------- */
.featured { margin-bottom: 50px; }
.featured-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featured-media { position: relative; display: block; overflow: hidden; }
.featured-media img {
  width: 100%;
  height: clamp(240px, 40vw, 460px);
  object-fit: cover;
  transition: transform .6s ease;
}
.featured-media:hover img { transform: scale(1.06); }
.badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--head); font-weight: 700;
  letter-spacing: 1.5px; font-size: .78rem;
  padding: 6px 12px; border-radius: 5px;
}
.badge-fire { background: var(--fire); color: #fff; }
.featured-body { padding: 26px clamp(20px, 4vw, 36px) 32px; }
.featured-body h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin: 14px 0 14px;
  text-transform: none;
}
.featured-body h2 a { transition: color .15s; }
.featured-body h2 a:hover { color: var(--fire); }
.featured-body p { color: var(--text-dim); margin-bottom: 18px; font-size: 1.05rem; }
.meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  color: var(--text-dim); font-size: .88rem; margin-bottom: 22px;
}
.meta strong { color: var(--text); }

/* ---------- Etiqueta de sección (MMA, Artes Marciales…) ---------- */
.section-tag {
  display: inline-block;
  background: rgba(255,199,51,.12);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--head);
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.tag-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.card-tags { margin-bottom: 10px; }

/* ---------- Autor (foto + nombre) ---------- */
.author-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 22px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fire);
  background: var(--bg);
  flex-shrink: 0;
}
.author-info { display: flex; flex-direction: column; line-height: 1.25; }
.author-name {
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text);
  font-size: 1rem;
}
.author-role { color: var(--text-dim); font-size: .82rem; }

/* Versión compacta para las tarjetas */
.author-byline-sm { margin: 14px 0 0; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.author-byline-sm .author-avatar { width: 36px; height: 36px; }
.author-byline-sm .author-name { font-size: .88rem; }
.author-byline-sm .author-role { font-size: .76rem; font-family: var(--head); letter-spacing: 1px; }

/* ====================== PÁGINA "TODAS LAS CRÓNICAS" ====================== */
.archive {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px 18px 70px;
}
.archive .block-head h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.chip {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: color .15s, background .15s, border-color .15s, transform .15s;
}
.chip:hover { color: var(--text); border-color: var(--fire); transform: translateY(-2px); }
.chip.active { background: var(--fire); border-color: var(--fire); color: #fff; }
@media (min-width: 992px) {
  .archive .card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Marcador para artículos sin imagen ---------- */
.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,59,31,.18), transparent 60%),
    linear-gradient(135deg, #20202a, #131318);
  position: relative;
}
.media-placeholder img {
  width: 44%;
  max-width: 160px;
  opacity: .9;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.5));
}
.featured-media .media-placeholder { height: clamp(240px, 40vw, 460px); }
.card-media .media-placeholder { height: 200px; }

/* ---------- Parrilla de tarjetas ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--fire); }
.card-media { position: relative; display: block; overflow: hidden; }
.card-media img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-media img { transform: scale(1.1); }
.card-media .cat-tag { position: absolute; top: 12px; left: 12px; }
.card-body { padding: 18px 18px 20px; }
.card--no-image .card-body { padding-top: 22px; }
.card--no-image .card-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.card-body h3 { font-size: 1.15rem; text-transform: none; line-height: 1.25; margin-bottom: 8px; }
.card-body h3 a:hover { color: var(--fire); }
.card-body p { color: var(--text-dim); font-size: .92rem; margin-bottom: 12px; }
.card-meta { color: var(--text-dim); font-size: .8rem; font-family: var(--head); letter-spacing: 1px; }

/* ---------- Vídeos ---------- */
.videos { margin-top: 50px; }
.videos-intro, .comments-intro { color: var(--text-dim); margin-bottom: 22px; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--fire); }
.video-thumb { position: relative; overflow: hidden; }
.video-thumb img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s; }
.video-card:hover .video-thumb img { transform: scale(1.08); }
.video-thumb::after {
  content: "▶";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: #fff;
  background: rgba(0,0,0,.3);
  opacity: .9;
  transition: background .25s;
}
.video-card:hover .video-thumb::after { background: rgba(255,59,31,.55); }
.video-meta { padding: 14px 16px 18px; }
.video-meta h3 { font-size: 1.05rem; text-transform: none; line-height: 1.25; }
.video-meta span { color: var(--text-dim); font-size: .82rem; font-family: var(--head); letter-spacing: 1px; }

/* ---------- Predicciones (votación) ---------- */
.predictions { margin-top: 50px; }
.pred-intro { color: var(--text-dim); margin-bottom: 22px; }
.pred-foot { margin-top: 16px; color: var(--text-dim); font-size: .82rem; text-align: center; }
.vote-list { display: flex; flex-direction: column; gap: 20px; }
.vote-fight {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px 16px;
}
.vote-tag {
  position: absolute;
  top: -10px; left: 18px;
  background: var(--gold);
  color: #1a1a1a;
  font-family: var(--head);
  font-size: .66rem; font-weight: 700; letter-spacing: 1.5px;
  padding: 3px 11px; border-radius: 20px;
}
.vote-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}
.vote-vs {
  align-self: center;
  font-family: var(--head);
  font-weight: 700;
  color: var(--fire);
  font-size: 1rem;
}
.vote-opt {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px 28px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: border-color .15s, transform .15s, background .15s;
}
.vote-opt:hover:not(:disabled) { border-color: var(--fire); transform: translateY(-2px); }
.vote-opt:disabled { cursor: default; }
.vote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 1.5rem; font-weight: 600;
}
.vote-initial { color: var(--fire); }
.vote-name { font-family: var(--head); font-weight: 600; font-size: .98rem; line-height: 1.15; }
.vote-pct { font-family: var(--head); font-weight: 700; font-size: 1.35rem; color: var(--text-dim); }
.vote-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: var(--bg-3); }
.vote-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--fire), var(--fire-2)); transition: width .5s ease; }
.vote-opt.chosen { border-color: var(--fire); background: rgba(255,59,31,.08); }
.vote-opt.chosen .vote-pct { color: var(--fire); }
.vote-fight.voted .vote-pct { color: var(--text); }
.vote-total { margin-top: 14px; text-align: center; color: var(--text-dim); font-size: .82rem; font-family: var(--head); letter-spacing: 1px; }
@media (max-width: 480px) {
  .vote-opt { padding: 12px 6px 26px; }
  .vote-avatar { width: 46px; height: 46px; font-size: 1.2rem; }
  .vote-name { font-size: .82rem; }
  .vote-pct { font-size: 1.1rem; }
}

/* ---------- Comentarios ---------- */
.comments { margin-top: 50px; }
#disqus_thread {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.disqus-fallback { color: var(--text-dim); }
.disqus-fallback a { color: var(--fire); text-decoration: underline; }

/* ====================== SIDEBAR ====================== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.widget-title {
  font-size: 1.2rem;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--fire);
}

/* Countdown */
.widget-countdown { background: linear-gradient(160deg, #201014, var(--surface)); }
.cd-event { font-family: var(--head); font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.cd-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 4px;
  text-align: center;
}
.cd-box span {
  display: block;
  font-family: var(--head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fire);
  line-height: 1;
}
.cd-box small { color: var(--text-dim); font-size: .68rem; text-transform: uppercase; letter-spacing: 1px; }
.cd-date { margin-top: 14px; color: var(--text-dim); font-size: .85rem; text-align: center; }

/* Cartelera */
.fight-card { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fight {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 12px 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, transform .2s;
}
.fight:hover { border-color: var(--fire); transform: translateX(3px); }
.fighter { display: flex; flex-direction: column; }
.fighter.f-right { text-align: right; }
.f-name { font-family: var(--head); font-weight: 600; font-size: .98rem; letter-spacing: .5px; }
.f-rec { color: var(--text-dim); font-size: .76rem; }
.vs { font-family: var(--head); font-weight: 700; color: var(--fire); font-size: .85rem; }
.fight-tag {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--bg-3); color: var(--text-dim);
  font-family: var(--head); font-size: .62rem; letter-spacing: 1.5px;
  padding: 3px 9px; border-radius: 20px; border: 1px solid var(--border);
  white-space: nowrap;
}
.fight-tag.tag-title { background: var(--gold); color: #1a1a1a; border-color: var(--gold); font-weight: 700; }

/* Eventos */
.event-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.event-list li { display: flex; gap: 14px; align-items: center; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.event-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ev-date {
  flex-shrink: 0;
  width: 56px; text-align: center;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--head); font-weight: 700; font-size: .85rem; color: var(--fire);
  padding: 8px 4px; line-height: 1.1;
}
.event-list strong { display: block; font-family: var(--head); letter-spacing: .5px; }
.event-list small { color: var(--text-dim); font-size: .8rem; }

/* Social */
.social-intro { color: var(--text-dim); font-size: .9rem; margin-bottom: 14px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.soc {
  font-family: var(--head); font-weight: 600; letter-spacing: 1px;
  text-align: center; padding: 11px 8px; border-radius: 8px;
  border: 1px solid var(--border); transition: transform .18s, background .18s, border-color .18s;
  font-size: .9rem;
}
.soc:hover { transform: translateY(-3px); border-color: var(--fire); }
.soc-yt:hover { background: #ff0000; color: #fff; }
.soc-ig:hover { background: linear-gradient(45deg,#f09433,#bc1888); color: #fff; }
.soc-tt:hover { background: #000; color: #fff; }
.soc-x:hover  { background: #fff; color: #000; }

/* Newsletter */
.widget-news p { color: var(--text-dim); font-size: .9rem; margin-bottom: 14px; }
.news-form input {
  width: 100%; padding: 12px 14px; margin-bottom: 10px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: var(--body); font-size: .95rem;
}
.news-form input:focus { outline: none; border-color: var(--fire); }
.news-msg { font-size: .85rem; margin-top: 8px; min-height: 1em; }
.news-msg.ok { color: var(--gold); }
.news-msg.err { color: var(--fire); }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); margin-top: 30px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 50px 18px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}
.footer-brand { max-width: 360px; }
.footer-logo { width: 70px; margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: .92rem; margin-bottom: 16px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-social a { color: var(--text-dim); font-family: var(--head); letter-spacing: 1px; font-size: .88rem; transition: color .15s; }
.footer-social a:hover { color: var(--fire); }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; color: var(--text-dim); margin-bottom: 10px; font-size: .92rem; transition: color .15s; }
.footer-col a:hover { color: var(--fire); }
.footer-cta p { color: var(--text-dim); font-size: .9rem; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  text-align: center; padding: 22px 18px;
  color: var(--text-dim); font-size: .85rem;
}
.footer-disclaimer { font-size: .78rem; margin-top: 6px; opacity: .7; }

/* Botón volver arriba */
.to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--fire); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer; z-index: 90;
  box-shadow: 0 6px 18px rgba(255,59,31,.4);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-4px); }

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

/* Tablet: parrilla 2 columnas */
@media (min-width: 600px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .footer-brand { grid-column: auto; }
}

/* Escritorio: layout 2 columnas con sidebar */
@media (min-width: 992px) {
  .layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }
  .sidebar { position: sticky; top: 86px; }
}

/* Menú móvil */
@media (max-width: 880px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 73px; right: 0;
    width: min(82vw, 320px);
    max-width: 100vw;
    height: calc(100vh - 73px);
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    gap: 4px;
    z-index: 105;
    overflow-y: auto;
  }
  .main-nav.open { display: flex; animation: navSlideIn .25s ease; }
  .main-nav a { padding: 14px 12px; font-size: 1.1rem; border-bottom: 1px solid var(--border); }
  .live-btn { justify-content: center; margin-top: 12px; }
}

@keyframes navSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
