/* Live Streaming (FO) — style proche Billetterie / Donations (refine safe) */
.livestream-fo{
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.livestream-fo .ls-page-title{
  text-align:center;
  margin: 10px 0 18px;
  font-size: 28px;
  line-height: 1.1;
}

.livestream-fo .ls-card{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.livestream-fo .ls-screen-wrap{
  text-align:center;
}

/* Ecran: on garde <img> mais on force un remplissage "masque" propre */
.livestream-fo .ls-screen{
  display:inline-block;
  width: min(820px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.livestream-fo .ls-screen img{
  display:block;
  width:100%;
  height:100%;
  object-fit: cover;
}

.livestream-fo .ls-under{
  margin-top: 12px;
  text-align:center;
}

.livestream-fo .ls-under-title{
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.05;
}

.livestream-fo .ls-under-sub{
  margin-top: 6px;
  opacity: .9;
  line-height: 1.15;
}

/* Countdown (plus "sexy" sans changer la logique) */
.livestream-fo .ls-countdown-card{
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.livestream-fo .ls-countdown{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

.livestream-fo .cd-item{
  min-width: 92px;
  text-align:center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}

.livestream-fo .cd-num{
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0,0,0,0.55);
}

.livestream-fo .cd-label{
  margin-top: 6px;
  font-size: 12px;
  opacity: .85;
}

.livestream-fo .cd-sep{
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  opacity: .55;
  margin-top: -6px;
}

@media (max-width: 768px){
  .livestream-fo .ls-page-title{ font-size: 24px; }
  .livestream-fo .ls-card{ border-radius: 18px; }
  .livestream-fo .ls-screen{ border-radius: 16px; }
  .livestream-fo .cd-item{ min-width: 72px; padding: 10px 12px; }
  .livestream-fo .cd-num{ font-size: 32px; }
  .livestream-fo .cd-sep{ font-size: 28px; }
}
/* --- EVO13 HOTFIX cosmetics (requested) --- */

/* Remove hardcoded under-screen title ("LIVE VA COMMENCER") */
.livestream-fo .ls-under-title{
  display:none !important;
}

/* Tighten spacing now that title is hidden */
.livestream-fo .ls-under-sub{
  margin-top: 0 !important;
}

/* Countdown: pink theme-muted and not bold */
.livestream-fo .cd-num,
.livestream-fo .cd-sep,
.livestream-fo .cd-label{
  color: var(--theme-muted) !important;
  font-weight: 400 !important;
}

/* EVO19: countdown mobile single-line */
@media (max-width: 640px){
  .livestream-fo .ls-countdown{
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
  }
  .livestream-fo .cd-item{
    min-width: 0;
    flex: 1 1 0;
    padding: 10px 10px;
  }
  .livestream-fo .cd-num{
    font-size: 26px;
  }
  .livestream-fo .cd-label{
    font-size: 10px;
  }
  .livestream-fo .cd-sep{
    font-size: 20px;
    margin-top: -2px;
  }
}
