body.empire-match-page {
  background: transparent !important;
  background-color: transparent !important;
  overflow-x: hidden;
  --empire-sidebar-w: 380px;
  --empire-nav-h: 68px;
  --empire-clappr-blue: #2563eb;
  --empire-clappr-blue-light: #3b82f6;
  --stream-chat-w: 100%;
  --empire-match-banner: none;
  padding-top: 0 !important;
}

/* Ancien calque bannière / BeIN — désactivé, fond = index */
.empire-match-bg,
.empire-match-bg.empire-match-bg--bein,
body.empire-match-page--bein .empire-match-bg {
  display: none !important;
}

body.empire-match-page #lmds-particles {
  opacity: 1;
  z-index: 0 !important;
}

body.empire-match-page .app-container,
body.empire-match-page #main-content-wrapper,
body.empire-match-page #empire-match-root,
body.empire-match-page .chrome {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

body.empire-match-page .lmds-ppv-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
}

body.empire-match-page .topbar,
body.empire-match-page .topbar.full-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
}

body.empire-match-page .topbar__bg {
  background: transparent !important;
  opacity: 0 !important;
}

body.empire-match-page .app-container,
body.empire-match-page #main-content-wrapper {
  padding-top: 0 !important;
}

#empire-match-root {
  width: 100%;
  margin: 0;
  padding: var(--empire-nav-h) 0 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: transparent;
}

.empire-stream__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--empire-sidebar-w);
  gap: 8px;
  align-items: start;
  min-height: calc(100vh - var(--empire-nav-h));
  padding: 4px 14px 14px;
  box-sizing: border-box;
  background: transparent;
}

/* —— Player —— */

.empire-stream__player-col {
  min-width: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.empire-stream__player {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--empire-nav-h) - 12px);
  min-height: 280px;
  background: #000;
  overflow: hidden;
  border-radius: 10px;
}

/* Bannière titre match — police LMDS+ (Insatiable / resident-primary) */
.empire-osd {
  position: absolute;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.empire-osd__close {
  pointer-events: auto;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: background 0.2s ease, transform 0.15s ease;
}

.empire-osd__close:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.05);
}

/* Toujours cliquable au-dessus du lecteur en mode immersif */
body.empire-match-immersive .empire-osd__close {
  position: fixed !important;
  top: calc(var(--empire-nav-h, 68px) + 10px) !important;
  left: 14px !important;
  z-index: 500 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.empire-osd__banner {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  max-width: min(92%, 720px);
  padding: 0.35rem 0.2rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #fff;
  font-family: resident-primary-font, resident-tertiary-font, Impact,
    "Arial Narrow", sans-serif;
  font-size: clamp(1.15rem, 3.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 0 2px rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s ease,
    transform 1.1s ease,
    visibility 1.1s;
}

.empire-osd__banner.is-on {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.empire-osd__banner.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-4px);
  transition:
    opacity 1.8s ease,
    transform 1.8s ease,
    visibility 1.8s;
}

.empire-osd__live,
.empire-osd__live-dot,
.empire-osd.is-controls .empire-osd__live,
.empire-osd.is-controls .empire-osd__live.is-leaving {
  display: none !important;
}

@keyframes empire-osd-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

html.lmds-spa-loading #main-content-wrapper {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
body.empire-match-immersive {
  overflow: hidden !important;
  /* garder le fond site (particules / couleur résidente), pas un noir plat */
  background: transparent !important;
  background-color: var(--background-color, #262626) !important;
}

body.empire-match-immersive .footer,
body.empire-match-immersive .empire-stream__sidebar,
body.empire-match-immersive .empire-stream__counter,
body.empire-match-immersive .lmds-offers,
body.empire-match-immersive .empire-offers {
  display: none !important;
}

/* Particules / fond visibles derrière la nav transparente */
body.empire-match-immersive #lmds-particles {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Nav desktop L1 — transparente comme sur l’accueil (logo bleu sur le fond) */
body.empire-match-immersive .topbar,
body.empire-match-immersive .topbar.full-topbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 400 !important;
  background: transparent !important;
  box-shadow: none !important;
  border-bottom: none !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

body.empire-match-immersive .topbar__bg {
  opacity: 0 !important;
  background: transparent !important;
}

/* Logo bleu + bouton IPTV toujours visibles */
body.empire-match-immersive .topbar .logo,
body.empire-match-immersive .topbar .logo img,
body.empire-match-immersive .topbar .logo .lmds-logo-img,
body.empire-match-immersive .lmds-ppv-logo,
body.empire-match-immersive .lmds-logo-img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  display: block !important;
}

body.empire-match-immersive .topbar__main-menu,
body.empire-match-immersive .topbar__functionalities,
body.empire-match-immersive [data-test-id="sign-up-btn"].l1-iptv-btn {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.empire-match-immersive [data-test-id="sign-up-btn"].l1-iptv-btn {
  border-color: #3d8bff !important;
  color: #3d8bff !important;
  background: transparent !important;
}

/* Nav mobile PPV — semi-transparente pour laisser voir le fond */
body.empire-match-immersive .lmds-ppv-header {
  z-index: 400 !important;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(8, 8, 16, 0.45) !important;
}

body.empire-match-immersive #empire-match-root,
body.empire-match-immersive #main-content-wrapper,
body.empire-match-immersive .app-container,
body.empire-match-immersive .chrome {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  min-height: 100vh !important;
  background: transparent !important;
}

body.empire-match-immersive .empire-stream--immersive,
body.empire-match-immersive .empire-stream__player {
  position: fixed !important;
  top: var(--empire-nav-h, 68px) !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: calc(100vh - var(--empire-nav-h, 68px)) !important;
  min-height: calc(100vh - var(--empire-nav-h, 68px)) !important;
  max-height: none !important;
  border-radius: 0 !important;
  z-index: 200 !important;
  background: #000 !important;
}

@media (max-width: 980px) {
  body.empire-match-immersive {
    --empire-nav-h: 58px;
  }

  /* Sur mobile la vraie nav = header PPV (logo bleu), pas la topbar L1 */
  body.empire-match-immersive .topbar,
  body.empire-match-immersive .topbar.full-topbar {
    display: none !important;
  }

  body.empire-match-immersive .lmds-ppv-header {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 58px !important;
    z-index: 400 !important;
  }
}

@media (max-width: 720px) {
  .empire-osd__banner {
    top: 52px;
    font-size: clamp(1rem, 5vw, 1.35rem);
    max-width: 90%;
    white-space: normal;
  }

  .empire-osd__close {
    top: 10px;
    left: 10px;
  }
}

.empire-stream__jw,
.empire-stream__clappr {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.empire-stream__jw--ready,
.empire-stream__clappr--ready {
  opacity: 1;
}

.empire-stream__jw .jwplayer,
.empire-stream__jw .jw-reset,
.empire-stream__jw .jw-wrapper,
.empire-stream__clappr .clappr-container,
.empire-stream__clappr [data-player] {
  width: 100% !important;
  height: 100% !important;
}

.empire-stream__preroll {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000 center/cover no-repeat;
  transition: opacity 0.35s ease;
}

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

.empire-stream__preroll--fade {
  opacity: 0;
}

.empire-stream__preroll--gone {
  pointer-events: none;
  visibility: hidden;
}

.empire-stream__preroll--empty {
  display: grid;
  place-items: center;
}

.empire-stream__preroll-loader {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: empire-spin 0.8s linear infinite;
}

@keyframes empire-spin {
  to {
    transform: rotate(360deg);
  }
}

.empire-stream__poster-msg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: #111;
}

.empire-stream__counter {
  position: absolute;
  top: auto;
  bottom: 58px;
  left: auto;
  right: 14px;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  overflow: visible;
}

.empire-stream__counter--pulse {
  animation: empire-counter-pulse 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.empire-stream__counter--up,
.empire-stream__counter--down {
  border: 0;
}

@keyframes empire-counter-pulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

.empire-stream__counter-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  color: #ef4444;
  background: none;
  box-shadow: none;
  line-height: 0;
  opacity: 0.95;
}

.empire-stream__counter-num {
  position: relative;
  top: 0.5px;
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  min-width: 1.2ch;
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "ss01" 1;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  vertical-align: middle;
}

.empire-stream__counter-num-track {
  position: relative;
  display: block;
  height: 100%;
  min-width: 1.2ch;
}

.empire-stream__counter-num-val {
  display: block;
  white-space: nowrap;
  will-change: transform, opacity;
}

.empire-stream__counter-num-val--out {
  position: absolute;
  left: 0;
  top: 0;
  animation: empire-num-slide-out 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.empire-stream__counter-num-val--in {
  animation: empire-num-slide-in 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes empire-num-slide-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(110%);
  }
}

@keyframes empire-num-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-110%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.empire-stream__counter--up .empire-stream__counter-num {
  color: #f87171;
}

.empire-stream__counter--down .empire-stream__counter-num {
  color: #b91c1c;
}

.empire-stream__counter-label {
  display: none !important;
}

.empire-stream__counter-pop-host {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  width: 0;
  height: 0;
  overflow: visible;
}

.empire-stream__counter-pop {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #ef4444;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  animation: empire-viewer-pop 1.15s ease-out forwards;
  pointer-events: none;
}

.empire-stream__counter-pop--down {
  color: #fca5a5;
  animation-name: empire-viewer-pop-down;
}

@keyframes empire-viewer-pop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(8px) scale(0.7);
  }
  18% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.15);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-22px) scale(1);
  }
}

@keyframes empire-viewer-pop-down {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) scale(0.7);
  }
  18% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px) scale(1);
  }
}

@media (max-width: 720px) {
  .empire-stream__counter {
    top: auto;
    left: auto;
    right: 10px;
    bottom: 52px;
    gap: 6px;
  }

  .empire-stream__counter-eye svg {
    width: 18px;
    height: 18px;
  }

  .empire-stream__counter-num {
    font-size: 1.05rem;
  }
}

/* —— Sidebar IKZ —— */

.empire-stream__sidebar {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--empire-nav-h) - 12px);
  max-height: calc(100vh - var(--empire-nav-h) - 12px);
  background: transparent;
  border-left: none;
  overflow: hidden;
  border-radius: 10px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

.empire-sidebar__scroll {
  flex: 0 0 auto;
  overflow: visible;
}

.empire-sidebar__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px 10px;
}

.empire-sidebar__title {
  margin: 0;
  color: #fff;
  font-family: resident-primary-font, Roboto-Bold, arial, Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.empire-sidebar__share {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.empire-sidebar__share:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.empire-sidebar__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 14px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.empire-sidebar__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.55);
}

.empire-sidebar__live--off .empire-sidebar__live-dot {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.empire-sidebar__live--off {
  color: rgba(255, 255, 255, 0.55);
}

.empire-sidebar__section {
  padding: 0 16px 16px;
}

.empire-sidebar__label {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-weight: 500;
}

.empire-sidebar__player-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.empire-sidebar__player-btn {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.empire-sidebar__player-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.empire-sidebar__player-btn[data-empire-player="clappr"].empire-sidebar__player-btn--active,
.empire-sidebar__player-btn[data-empire-player="jw"].empire-sidebar__player-btn--active {
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--empire-clappr-blue) 0%,
    var(--empire-clappr-blue-light) 100%
  );
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.empire-sidebar__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding: 12px 16px 8px;
}

.empire-sidebar__stat {
  min-width: 0;
  padding: 12px 8px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.empire-sidebar__stat-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.empire-sidebar__stat-value {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.empire-sidebar__iptv-slot {
  margin: 0 16px 14px;
}

.empire-sidebar__iptv-slot:not([hidden]) {
  min-height: 120px;
}

.empire-sidebar__help {
  flex: 0 0 auto;
  margin-top: auto;
  border-top: none;
  background: transparent;
}

.empire-sidebar__chat {
  flex: 1 1 auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
  overflow: hidden;
  border-top: none;
}

.empire-sidebar__chat-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 8px;
  flex-shrink: 0;
}

.empire-sidebar__chat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 600;
}

.empire-sidebar__chat-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.empire-sidebar__chat-wrap > .stream-col-chat,
.empire-sidebar__chat-wrap > .empire-ppv-chat {
  flex: 1 1 auto;
  min-height: 0;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  background: transparent !important;
  border: 0 !important;
}

body.empire-match-page .empire-ppv-chat > .lkz-chat-head {
  display: flex !important;
}

body.empire-match-page .empire-sidebar__chat-head {
  display: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-body,
body.empire-match-page .empire-ppv-chat .lkz-chat-compose,
body.empire-match-page .empire-ppv-chat .lkz-chat-messages {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-messages {
  padding: 8px 10px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-compose {
  padding: 8px 10px 10px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: transparent !important;
}

body.empire-match-page .empire-sidebar__chat-wrap .stream-col-chat,
body.empire-match-page .empire-sidebar__chat-wrap .stream-col-chat.lkz-live-chat {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-hint {
  display: block !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-hint[hidden] {
  display: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-input {
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 12px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 6px !important;
  color: #fff !important;
  font-size: 13px !important;
  box-shadow: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-send {
  width: 42px !important;
  min-width: 42px !important;
  min-height: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  background: #3b82f6 !important;
  color: #061018 !important;
  font-size: 0 !important;
  box-shadow: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-send--confirm {
  width: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  font-size: 0 !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-send svg {
  display: block !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-gif-wrap,
body.empire-match-page .empire-ppv-chat .lkz-chat-gif-btn,
body.empire-match-page .empire-ppv-chat .lkz-chat-gif-panel {
  display: none !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-msg {
  padding: 3px 8px 3px 6px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
}

body.empire-match-page .empire-ppv-chat .lkz-chat-msg:hover,
body.empire-match-page .empire-ppv-chat .lkz-chat-msg--highlight {
  background: rgba(255, 255, 255, 0.06) !important;
}

.empire-sidebar__promo {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 64px 12px 20px;
  flex: 1 1 auto;
  min-height: 0;
}

.empire-iptv-card {
  position: relative;
  display: block;
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0a1a33;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: empire-iptv-float 3.6s ease-in-out infinite;
}

.empire-iptv-card:hover,
.empire-iptv-card:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 36px rgba(37, 99, 246, 0.35);
  outline: none;
}

.empire-iptv-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0b2a55;
}

.empire-iptv-card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: empire-iptv-shine 4.2s ease-in-out infinite;
}

@keyframes empire-iptv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes empire-iptv-shine {
  0%,
  35% {
    transform: translateX(-120%);
  }
  55%,
  100% {
    transform: translateX(120%);
  }
}

.empire-sidebar__help {
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  margin-top: 4px;
}

.empire-sidebar__help-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s ease;
}

.empire-sidebar__help-toggle:hover {
  background: transparent;
  color: #fff;
}

.empire-sidebar__help-play {
  display: inline;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #60a5fa;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.empire-sidebar__help-chevron {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, color 0.15s ease;
  font-size: 1.05rem;
}

.empire-sidebar__help.is-open .empire-sidebar__help-chevron {
  transform: rotate(90deg);
  color: rgba(255, 255, 255, 0.65);
}

.empire-sidebar__help-body {
  display: none;
  padding: 0 4px 8px;
  flex-direction: column;
  gap: 8px;
  border-top: 0;
}

.empire-sidebar__help.is-open .empire-sidebar__help-body {
  display: flex;
  padding-top: 2px;
}

.empire-sidebar__help-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.empire-sidebar__help-line--muted {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
}

.empire-sidebar__help-link {
  display: inline;
  width: auto;
  max-width: none;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #93c5fd;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.empire-sidebar__help-link:hover {
  color: #fff;
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
}

/* Chat remplacé par promo IPTV — on masque l’ancien bloc s’il reste */
.empire-sidebar__chat {
  display: none !important;
}

body.empire-match-page #empire-match-root .empire-sidebar__help-line {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.card-lock,
.card-content__locked,
.card-lock--visible {
  display: none !important;
}

@media (max-width: 1100px) {
  .empire-stream__layout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 0 10px;
    min-height: 0;
    height: auto;
    align-content: start;
    overflow-x: hidden;
  }

  .empire-stream__player-col {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  /* Fond noir pur derrière le stream (pas de bleu / flou) */
  .empire-stream__player-col::before {
    display: none !important;
  }

  .empire-stream__player-col,
  .empire-stream__player,
  .empire-stream__player .empire-stream__jw,
  .empire-stream__player .empire-stream__clappr,
  .empire-stream__player .jwplayer,
  .empire-stream__player .jw-wrapper,
  .empire-stream__player .jw-media,
  .empire-stream__player .clappr-container,
  .empire-stream__player [data-player],
  .empire-stream__player video {
    background: #000 !important;
  }

  .empire-stream__player {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 56.25vw;
    min-height: 200px;
    max-height: none;
    border-radius: 0 !important;
    overflow: hidden;
    background: #000 !important;
  }

  /* Remplir le cadre SANS casser la barre JW (son / plein écran) */
  .empire-stream__player .empire-stream__jw,
  .empire-stream__player .empire-stream__clappr,
  .empire-stream__player .jwplayer,
  .empire-stream__player .jw-reset,
  .empire-stream__player .jw-wrapper,
  .empire-stream__player .clappr-container,
  .empire-stream__player [data-player] {
    border-radius: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .empire-stream__player .jwplayer,
  .empire-stream__player .jw-wrapper {
    position: absolute !important;
    inset: 0 !important;
  }

  .empire-stream__player .jw-media {
    position: absolute !important;
    inset: 0 !important;
  }

  .empire-stream__player .jw-controls,
  .empire-stream__player .jw-controlbar,
  .empire-stream__player .jw-display,
  .empire-stream__player .jw-overlays {
    border-radius: 0 !important;
    pointer-events: auto !important;
    z-index: 30 !important;
  }

  .empire-stream__player .jw-controls {
    height: auto !important;
    max-height: none !important;
  }

  .empire-stream__player video,
  .empire-stream__player .jw-video,
  .empire-stream__player .jw-media video {
    /* contain = lecture stable sur tel (cover cassait JW / iOS) */
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 0 !important;
  }

  /* Micro-espace : forcer le player bord à bord (pas de gap sous/à droite) */
  .empire-stream__player,
  .empire-stream__player-col {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
  }

  html,
  body.empire-match-page {
    overflow-x: hidden;
  }

  .empire-stream__sidebar {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 0;
    overflow: visible;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .empire-sidebar__head {
    padding: 6px 4px 4px;
    gap: 8px;
  }

  .empire-sidebar__title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .empire-sidebar__share {
    width: 30px;
    height: 30px;
  }

  .empire-sidebar__section {
    padding: 0 4px 6px;
  }

  .empire-sidebar__label {
    margin: 0 0 5px;
    font-size: 0.75rem;
  }

  .empire-sidebar__player-btn {
    height: 36px;
    font-size: 0.8rem;
  }

  .empire-sidebar__iptv-slot {
    margin: 0 4px 6px;
  }

  .empire-sidebar__iptv-slot[hidden] {
    display: none !important;
    margin: 0 !important;
    min-height: 0 !important;
  }

  .empire-sidebar__chat {
    flex: 0 0 auto !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0;
    overflow: visible;
  }

  .empire-sidebar__chat-head {
    display: none !important;
  }

  .empire-sidebar__chat-wrap,
  .empire-sidebar__chat-wrap > .stream-col-chat,
  .empire-sidebar__chat-wrap > .empire-ppv-chat {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

  body.empire-match-page .empire-ppv-chat.lkz-live-chat,
  body.empire-match-page .stream-col-chat.lkz-live-chat {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    display: flex !important;
    flex-direction: column !important;
  }

  body.empire-match-page .empire-ppv-chat .lkz-chat-body {
    flex: 0 1 auto !important;
    min-height: 72px !important;
    max-height: 42vh !important;
    overflow-y: auto !important;
  }

  body.empire-match-page .empire-ppv-chat .lkz-chat-compose {
    flex: 0 0 auto !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  body.empire-match-page {
    --empire-sidebar-w: 100%;
    /* Même hauteur que .lmds-ppv-header mobile (58px) */
    --empire-nav-h: 58px;
  }

  /* Navbar fixe : ne plus coller le stream sous/derrière la barre */
  body.empire-match-page #empire-match-root {
    padding-top: calc(
      var(--lmds-ppv-header-h, var(--empire-nav-h, 58px)) +
        env(safe-area-inset-top, 0px)
    ) !important;
  }

  body.empire-match-page .app-container,
  body.empire-match-page #main-content-wrapper {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .empire-stream__layout {
    gap: 10px;
    padding: 0 0 10px;
    min-height: 0;
    height: auto;
    align-content: start;
    overflow-x: hidden;
  }

  .empire-stream__player-col {
    margin: 0;
    padding: 0;
  }

  .empire-stream__player {
    height: 56.25vw;
    min-height: 200px;
    max-height: none;
    border-radius: 0 !important;
  }

  .empire-stream__sidebar {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    margin-top: 0 !important;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .empire-sidebar__scroll {
    flex: 0 0 auto;
  }

  /* Titre match comme sur PC, collé sous le stream */
  .empire-sidebar__head {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 2px 2px 2px;
    margin: 0;
  }

  .empire-sidebar__title {
    display: block !important;
    margin: 0 !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    color: #fff !important;
  }

  .empire-sidebar__share {
    display: grid !important;
    width: 32px;
    height: 32px;
  }

  .empire-sidebar__section {
    padding: 8px 2px 4px;
  }

  .empire-sidebar__label {
    display: block !important;
    margin: 0 0 8px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .empire-sidebar__player-btns {
    gap: 10px;
  }

  .empire-sidebar__player-btn {
    height: 40px;
    font-size: 0.86rem;
  }

  .empire-sidebar__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 12px;
    padding: 10px 2px 8px;
  }

  .empire-sidebar__iptv-slot[hidden] {
    display: none !important;
    margin: 0 !important;
    min-height: 0 !important;
  }

  .empire-sidebar__chat {
    display: none !important;
  }

  .empire-sidebar__promo {
    padding: 14px 2px 18px;
    gap: 14px;
  }

  .empire-iptv-card {
    margin-top: 4px;
    border-radius: 12px;
  }

  .empire-sidebar__help-toggle {
    padding: 14px 14px;
  }

  body.empire-match-page .lkz-chat-head {
    min-height: 36px !important;
    height: 36px !important;
    margin-top: 0 !important;
    flex: 0 0 auto !important;
  }

  body.empire-match-page .empire-ppv-chat .lkz-chat-body {
    flex: 1 1 auto !important;
    min-height: 36vh !important;
    max-height: none !important;
    overflow-y: auto !important;
  }

  body.empire-match-page .empire-ppv-chat .lkz-chat-messages {
    padding: 4px 6px !important;
  }

  body.empire-match-page .empire-ppv-chat .lkz-chat-compose {
    padding: 8px 6px 10px !important;
    margin-top: auto !important;
    flex: 0 0 auto !important;
  }

  body.empire-match-page .lkz-chat-pinned {
    padding: 2px 4px 4px !important;
  }

  body.empire-match-page .lkz-chat-pinned__toggle {
    padding: 4px 0 !important;
  }

  body.empire-match-page .lkz-chat-pinned__text {
    font-size: 13px !important;
  }

  body.empire-match-page .lkz-chat-hint {
    margin: 0 0 6px !important;
  }

  body.empire-match-page .lkz-chat-name-gate {
    margin: 0 0 6px !important;
    padding: 8px !important;
  }

  body.empire-match-page .lkz-chat-send-row {
    gap: 8px !important;
  }
}

/* CTA IPTV compact sous le lecteur */
.lmds-home-offers--cta {
  padding: 0.55rem 0 0.15rem !important;
  margin: 0 !important;
  font-family: inherit !important;
}

.lmds-home-offers--cta,
.lmds-home-offers--cta * {
  font-family: inherit !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

.lmds-stream-iptv-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #fff !important;
  background: linear-gradient(
    90deg,
    rgba(61, 139, 255, 0.18),
    rgba(61, 139, 255, 0.06)
  );
  border: 1px solid rgba(61, 139, 255, 0.35);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.lmds-stream-iptv-cta:hover {
  border-color: rgba(61, 139, 255, 0.65);
  background: linear-gradient(
    90deg,
    rgba(61, 139, 255, 0.28),
    rgba(61, 139, 255, 0.1)
  );
  transform: translateY(-1px);
}

.lmds-stream-iptv-cta__label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f4f7ff;
}

.lmds-stream-iptv-cta__price {
  margin-left: auto;
  font-size: 0.95rem;
  font-weight: 700;
  color: #6cb0ff;
  font-variant-numeric: tabular-nums;
}

.lmds-stream-iptv-cta__go {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.lmds-stream-iptv-cta__go::after {
  content: " →";
}

body.empire-match-page .lmds-home-offers--cta {
  padding: 0.45rem 0 0.1rem !important;
}

/* Offres IPTV — grille legacy */
.lmds-home-offers {
  --offer-blue: #3d8bff;
  --offer-blue-hot: #5ba3ff;
  --offer-blue-dim: rgba(61, 139, 255, 0.15);
  position: relative;
  z-index: 1;
  padding: 1.25rem 1rem 2.25rem;
  flex-shrink: 0;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lmds-home-offers:not(.lmds-home-offers--cta),
.lmds-home-offers:not(.lmds-home-offers--cta) * {
  font-family: inherit;
}

.lmds-offers-head {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  transition: none;
}

.lmds-home-offers.is-visible .lmds-offers-head {
  animation: lmds-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lmds-offers-heading {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #f4f7ff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: none;
}

.lmds-offers-sub {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
}

.lmds-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.lmds-pricing-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 375px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  background-color: #050507;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.016) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  filter: blur(6px);
  transition: transform 0.22s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.22s, box-shadow 0.22s;
}

.lmds-home-offers.is-visible .lmds-pricing-card {
  animation: lmds-card-in 0.75s cubic-bezier(0.16, 1, 0.3, 1)
    calc(var(--delay, 0) * 0.12s + 0.12s) both;
}

.lmds-home-offers.is-visible .lmds-pricing-pop {
  animation: lmds-card-in 0.75s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--delay, 0) * 0.12s + 0.12s) both,
    lmds-pop-glow 2.8s ease-in-out 1s infinite;
}

.lmds-pricing-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(61, 139, 255, 0.35);
  box-shadow: 0 16px 40px rgba(61, 139, 255, 0.18);
}

.lmds-pricing-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.lmds-pricing-card:hover::after {
  animation: lmds-shine-sweep 0.85s ease;
}

.lmds-pricing-card > a {
  margin-top: auto;
}

.lmds-pricing-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(39, 39, 42, 0.8);
  color: #71717a;
  animation: lmds-icon-float 3.2s ease-in-out infinite;
}

.lmds-pricing-icon svg {
  width: 20px;
  height: 20px;
}

.lmds-pricing-icon--hot {
  background: var(--offer-blue-dim);
  color: var(--offer-blue);
  box-shadow: 0 0 18px rgba(61, 139, 255, 0.25);
  animation: lmds-icon-pulse 2.2s ease-in-out infinite;
}

.lmds-pricing-badge {
  align-self: flex-start;
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4d4d8;
  background: rgba(39, 39, 42, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lmds-pricing-badge--hot {
  color: var(--offer-blue-hot);
  background: var(--offer-blue-dim);
  box-shadow: inset 0 0 0 1px rgba(61, 139, 255, 0.3);
}

.lmds-pricing-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 650;
  color: #f8fafc;
}

.lmds-pricing-desc {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.35;
  color: #71717a;
}

.lmds-pricing-pop .lmds-pricing-desc {
  color: #a1a1aa;
}

.lmds-pricing-price {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.lmds-pricing-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.lmds-pricing-euro {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.lmds-pricing-pop .lmds-pricing-euro {
  color: rgba(255, 255, 255, 0.8);
}

.lmds-pricing-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  font-size: 0.875rem;
}

.lmds-pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #d4d4d8;
  opacity: 0;
  transform: translateX(-8px);
}

.lmds-home-offers.is-visible .lmds-pricing-features li {
  animation: lmds-feat-in 0.45s ease calc(var(--delay, 0) * 0.12s + var(--i) * 0.05s + 0.35s) both;
}

.lmds-pricing-pop .lmds-pricing-features li {
  color: #fff;
}

.lmds-check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--offer-blue);
  filter: drop-shadow(0 0 4px rgba(61, 139, 255, 0.45));
}

.lmds-btn-soft {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lmds-btn-soft:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.lmds-btn-soft:active {
  transform: scale(0.97);
}

/* Carte populaire */
.lmds-pricing-pop {
  padding: 0;
  border: 1.5px solid var(--offer-blue);
  background-image: linear-gradient(
    rgba(61, 139, 255, 0.08) 0%,
    rgba(61, 139, 255, 0.025) 40%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: 0 0 0 1px rgba(61, 139, 255, 0.2),
    0 0 28px rgba(61, 139, 255, 0.22);
}

.lmds-pricing-pop:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(61, 139, 255, 0.45),
    0 20px 48px rgba(61, 139, 255, 0.28);
}

.lmds-pricing-ribbon {
  display: block;
  width: 100%;
  height: 26px;
  line-height: 16px;
  box-sizing: border-box;
  text-align: center;
  color: #061018;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 14.5px 14.5px 0 0;
  background: linear-gradient(90deg, #2f74e8, var(--offer-blue), #7ab4ff, var(--offer-blue));
  background-size: 220% 100%;
  animation: lmds-ribbon-flow 2.8s linear infinite;
}

.lmds-pricing-pop-inner {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.lmds-btn-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  color: #061018 !important;
  background: var(--offer-blue);
  overflow: hidden;
  box-shadow: 0 0 18px rgba(61, 139, 255, 0.45);
  animation: lmds-cta-pulse 2.4s ease-in-out infinite;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lmds-btn-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: lmds-cta-shine 2.6s ease-in-out infinite;
}

.lmds-btn-glow:hover {
  background: var(--offer-blue-hot);
  color: #061018 !important;
  box-shadow: 0 0 28px rgba(61, 139, 255, 0.65);
  transform: translateY(-1px);
}

.lmds-btn-glow:active {
  transform: scale(0.96);
}

@keyframes lmds-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes lmds-card-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes lmds-feat-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lmds-shine-sweep {
  from {
    left: -120%;
  }
  to {
    left: 140%;
  }
}

@keyframes lmds-icon-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes lmds-icon-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 12px rgba(61, 139, 255, 0.2);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(61, 139, 255, 0.45);
  }
}

@keyframes lmds-pop-glow {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(61, 139, 255, 0.2),
      0 0 22px rgba(61, 139, 255, 0.18);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(61, 139, 255, 0.45),
      0 0 36px rgba(61, 139, 255, 0.35);
  }
}

@keyframes lmds-ribbon-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes lmds-cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 14px rgba(61, 139, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 28px rgba(61, 139, 255, 0.7);
  }
}

@keyframes lmds-cta-shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes lmds-title-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 1280px) {
  .lmds-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .lmds-pricing-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .lmds-pricing-grid::-webkit-scrollbar {
    display: none;
  }
  .lmds-pricing-card {
    flex: 0 0 min(82vw, 300px);
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmds-home-offers *,
  .lmds-home-offers *::before,
  .lmds-home-offers *::after {
    animation: none !important;
    transition: none !important;
  }
  .lmds-pricing-card,
  .lmds-offers-head,
  .lmds-pricing-features li {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}


/* Placement sous le lecteur — largeur = colonne stream uniquement */
body.empire-match-page .lmds-home-offers {
  margin: 0;
  padding: 0.35rem 0 0.4rem;
  font-size: 14px;
  transform: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.empire-match-page .lmds-offers-head {
  margin-bottom: 1.15rem;
}

body.empire-match-page .lmds-offers-heading {
  font-size: 1.05rem;
  font-weight: 650;
  color: #f4f7ff;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: none;
}

body.empire-match-page .lmds-offers-sub {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

body.empire-match-page .lmds-pricing-grid {
  gap: 12px;
  max-width: none;
  width: 100%;
}

body.empire-match-page .lmds-pricing-card {
  min-height: 0;
  padding: 16px 14px 14px;
  border-radius: 12px;
}

body.empire-match-page .lmds-pricing-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}

body.empire-match-page .lmds-pricing-icon svg {
  width: 15px;
  height: 15px;
}

body.empire-match-page .lmds-pricing-badge {
  margin-bottom: 0.55rem;
  padding: 0.22rem 0.5rem;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.empire-match-page .lmds-pricing-card h3 {
  font-size: 0.95rem;
  font-weight: 650;
  margin-bottom: 0.15rem;
}

body.empire-match-page .lmds-pricing-desc {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
}

body.empire-match-page .lmds-pricing-price {
  margin-bottom: 0.85rem;
}

body.empire-match-page .lmds-pricing-amount {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.empire-match-page .lmds-pricing-euro {
  font-size: 0.9rem;
  font-weight: 600;
}

body.empire-match-page .lmds-pricing-features {
  gap: 0.55rem;
  margin-bottom: 1.05rem;
  font-size: 0.8rem;
}

body.empire-match-page .lmds-check-icon {
  width: 14px;
  height: 14px;
}

body.empire-match-page .lmds-pricing-ribbon {
  height: 24px;
  line-height: 14px;
  padding: 5px 12px;
  font-size: 9px;
  border-radius: 13px 13px 0 0;
}

body.empire-match-page .lmds-pricing-pop-inner {
  padding: 14px 16px 16px;
}

body.empire-match-page .lmds-btn-soft,
body.empire-match-page .lmds-btn-glow {
  min-height: 40px;
  padding: 11px 12px;
  font-size: 0.82rem;
  border-radius: 10px;
}

body.empire-match-page .lmds-pricing-card:hover {
  transform: translateY(-4px) scale(1.01);
}

body.empire-match-page .lmds-pricing-pop:hover {
  transform: translateY(-5px) scale(1.015);
}

@media (max-width: 1023px) {
  body.empire-match-page .lmds-home-offers {
    display: none !important;
  }
}

/* Bannière fallback logos domicile / extérieur */
.l1-live-card .card-background.l1-dual-banner,
.l1-dual-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, #0b1f3a 0%, #132a4a 45%, #1a1030 100%);
  box-sizing: border-box;
  padding: 18px;
}
.l1-dual-banner__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}
.l1-dual-banner__vs {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.l1-dual-banner__ph {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.l1-dual-banner--overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}