/* ─────────────────────────────────────────────
   Bandeau "Arène en direct" sur la home.
   DA alignée sur le reste de la home : fond #080818,
   accents violets (#9146ff), chiffres en Antonio.
   Sobre, sans gros gradient ni bordure dorée.
   ───────────────────────────────────────────── */

.arena-live-strip {
  background: #080818;
  border-bottom: 1px solid rgba(145, 70, 255, .1);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.arena-live-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%,
    rgba(145, 70, 255, .07) 0%, transparent 70%);
  pointer-events: none;
}

.arena-live-strip__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
}

/* ─── Bloc texte (gauche) ───────────────────────────── */
.arena-live-strip__main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.arena-live-strip__icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(145, 70, 255, .08);
  border: 1px solid rgba(145, 70, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: .92;
}

.arena-live-strip__text { min-width: 0; }

.arena-live-strip__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Poppins', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  margin-bottom: 6px;
}

.arena-live-strip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3b6b;
  box-shadow: 0 0 6px rgba(255, 59, 107, .7);
  animation: arenaLiveDotPulse 1.6s ease-in-out infinite;
}
@keyframes arenaLiveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(1.35); }
}

.arena-live-strip__eyebrow-label { color: rgba(255, 255, 255, .55); }

.arena-live-strip__new-pill {
  display: inline-block;
  font-family: 'Antonio', 'Poppins', sans-serif;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ffb347;
  color: #1a0e0e;
  margin-left: 2px;
}

.arena-live-strip__title {
  margin: 0 0 4px 0;
  font-family: 'Antonio', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1.15;
}

.arena-live-strip__sub {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
  max-width: 46ch;
}

/* Petite ligne "+75 pts | +60 ✨ par victoire" sous la description.
   Compacte, accent doré sur les chiffres pour rappeler la couleur de
   récompense, mais sans surcharger la DA. */
.arena-live-strip__reward {
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
}
.arena-live-strip__reward-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 215, 0, .1);
  border: 1px solid rgba(255, 215, 0, .25);
  color: #ffd24a;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.arena-live-strip__reward-pill--powder {
  background: rgba(145, 70, 255, .12);
  border-color: rgba(145, 70, 255, .35);
  color: #c9a4ff;
}
.arena-live-strip__reward-text {
  color: rgba(255, 255, 255, .38);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .66rem;
}

/* ─── Stats (centre) ─────────────────────────────────── */
.arena-live-strip__stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.arena-live-strip__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 6px 18px;
}

.arena-live-strip__stat + .arena-live-strip__stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  height: 64%;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent, rgba(145, 70, 255, .22), transparent);
}

.arena-live-strip__num {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}
.arena-live-strip__num.is-pulse {
  animation: arenaLiveNumPulse .55s ease;
}
@keyframes arenaLiveNumPulse {
  0%   { transform: scale(1); color: #fff; }
  50%  { transform: scale(1.12); color: #b77dff; }
  100% { transform: scale(1); color: #fff; }
}

.arena-live-strip__lbl {
  font-family: 'Poppins', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .38);
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}

/* ─── CTA (droite) ───────────────────────────────────── */
.arena-live-strip__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.arena-live-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 8px;
  background: rgba(145, 70, 255, .14);
  border: 1px solid rgba(145, 70, 255, .35);
  color: #fff;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.arena-live-strip__cta:hover {
  background: rgba(145, 70, 255, .25);
  border-color: rgba(145, 70, 255, .6);
}
.arena-live-strip__cta-arrow {
  font-size: 1rem;
  opacity: .8;
  transition: transform .2s ease;
}
.arena-live-strip__cta:hover .arena-live-strip__cta-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.arena-live-strip__cta-soft {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, .4);
  font-size: .68rem;
  text-decoration: none;
  text-align: center;
  letter-spacing: .04em;
  transition: color .2s ease;
}
.arena-live-strip__cta-soft:hover { color: rgba(255, 255, 255, .8); }

/* Variante "ça bouge" : on illumine juste la bordure du CTA, sans surcharge. */
.arena-live-strip__inner.is-hot .arena-live-strip__cta {
  background: rgba(145, 70, 255, .22);
  border-color: rgba(145, 70, 255, .7);
  box-shadow: 0 0 18px rgba(145, 70, 255, .25);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 960px) {
  .arena-live-strip__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .arena-live-strip__stats {
    justify-content: space-between;
    width: 100%;
  }
  .arena-live-strip__stat { flex: 1; min-width: 0; }
  .arena-live-strip__cta-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .arena-live-strip__cta { flex: 1; }
}

@media (max-width: 520px) {
  .arena-live-strip { padding: 22px 16px; }
  .arena-live-strip__main { gap: 12px; }
  .arena-live-strip__icon { width: 36px; height: 36px; font-size: 18px; }
  .arena-live-strip__stat { padding: 4px 8px; }
  .arena-live-strip__num { font-size: 1.5rem; }
  .arena-live-strip__lbl { font-size: .56rem; }
}
