.elementor-7085 .elementor-element.elementor-element-5467124{--proradio-section-parallax:no;--proradio-section-parallax-speed:60;}/* Start custom CSS for html, class: .elementor-element-e2d140b *//* Masquer entièrement l'en-tête Pro.Radio */
.proradio-pageheader__radiochannel {
  display: none !important;
}

/* Carte principale du bloc Now Playing */
.rn-player {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 820px;
  margin: 60px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(15, 32, 68, 0.08);
  border: 1px solid rgba(15, 32, 68, 0.06);
}

/* Pochette de l'album */
.rn-player-artwork img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 6px 20px rgba(15, 32, 68, 0.18);
}

/* Zone texte à droite de la pochette */
.rn-player-info {
  flex: 1;
  min-width: 0;
}

/* Label doré avec point rouge clignotant */
.rn-player-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c49a5a;
  margin-bottom: 14px;
}

/* Point rouge clignotant */
.rn-player-dot {
  width: 9px;
  height: 9px;
  background: #e63946;
  border-radius: 50%;
  animation: rn-pulse 1.8s ease-in-out infinite;
}

@keyframes rn-pulse {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); 
  }
  50% { 
    opacity: 0.85; 
    box-shadow: 0 0 0 8px rgba(230, 57, 70, 0); 
  }
}

/* Titre du morceau */
.rn-player-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f2044;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

/* Nom de l'artiste */
.rn-player-artist {
  font-size: 17px;
  color: #5a6a82;
  font-weight: 500;
  margin-bottom: 4px;
}

/* Nom de l'album */
.rn-player-album {
  font-size: 14px;
  color: #8594a8;
  font-style: italic;
  margin-top: 2px;
  margin-bottom: 24px;
}

/* Masquer le bloc album s'il est vide */
.rn-player-album:empty {
  display: none;
}

/* Bouton Écouter en direct */
.rn-player-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0f2044;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(15, 32, 68, 0.2);
  font-family: inherit;
}

.rn-player-button:hover {
  background: #c49a5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 154, 90, 0.35);
}

.rn-player-button svg {
  flex-shrink: 0;
}

/* Adaptation mobile */
@media (max-width: 680px) {
  .rn-player {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 24px 20px;
    margin: 30px 20px;
  }
  .rn-player-label { 
    justify-content: center; 
  }
  .rn-player-title { 
    font-size: 22px; 
  }
  .rn-player-artwork img { 
    width: 200px; 
    height: 200px; 
  }
  .rn-player-button {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */