/* 
 Theme Name: Astra Child – Reloading
 Template: astra
 Theme URI: https://reloading-records.com/
 Description: Thème enfant Astra pour le label Reloading (CPT + effets custom).
 Author: Reloading Records
 Template: astra
 Version: 1.0.0
*/


/********************************************************
 * RELOADING – SINGLE ARTIST MODERNISÉ
 * Design horizontal split - différent de release
 ********************************************************/

/* Reset Astra */
.single-artist .site-content .ast-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.single-artist #primary {
    padding: 0;
    margin: 0;
}

.rl-artist-single {
    background: #000;
    width: 100vw;
}

/* ========================================
   HERO SPLIT 50/50
   ======================================== */

.rl-artist-banner {
    display: grid;
    grid-template-columns: 50% 50%;
    height: 75vh;
    background: #000;
    overflow: hidden;
}

/* Image gauche */
.rl-artist-banner__image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.rl-artist-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%);
    transition: all 0.6s ease;
}

.rl-artist-banner:hover .rl-artist-banner__image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.rl-artist-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(0,0,0,0.8) 100%);
}

.rl-artist-banner__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Contenu droite */
.rl-artist-banner__content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #222;
}

/* Role badge */
.rl-artist-banner__role {
    display: block;
    color: #ff003c;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

/* Nom artiste */
.rl-artist-banner__name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

/* Pays */
.rl-artist-banner__country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.rl-artist-banner__country svg {
    color: #ff003c;
}

/* Tagline */
.rl-artist-banner__tagline {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin: 0 0 30px;
    max-width: 400px;
}

/* Social links */
.rl-artist-banner__socials {
    display: flex;
    gap: 12px;
}

.rl-artist-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #333;
    color: #666;
    transition: all 0.3s ease;
}

.rl-artist-social:hover {
    background: #ff003c;
    border-color: #ff003c;
    color: #000;
    transform: translateY(-3px);
}

/* ========================================
   SECTION BIO + PLAYER (50/50)
   ======================================== */

.rl-artist-content {
    display: grid !important;
    grid-template-columns: 50% 50%;
    width: 100%;
    height: 75vh;
    border-top: 1px solid #222;
}

.rl-artist-bio {
    background: #050505;
    padding: 40px;
    border-right: 1px solid #222;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

.rl-artist-bio__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ff003c;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.rl-artist-bio__intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

.rl-artist-bio__intro p {
    margin: 0;
}

.rl-artist-bio__full {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.rl-artist-bio__full p {
    margin: 0 0 1.5rem;
}

/* Scrollbar custom */
.rl-artist-bio::-webkit-scrollbar {
    width: 4px;
}

.rl-artist-bio::-webkit-scrollbar-track {
    background: #111;
}

.rl-artist-bio::-webkit-scrollbar-thumb {
    background: #333;
}

.rl-artist-bio::-webkit-scrollbar-thumb:hover {
    background: #ff003c;
}

/* ========================================
   SECTION PLAYER (droite)
   ======================================== */

.rl-artist-player {
    background: #000;
    padding: 40px;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}

.rl-artist-player__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ff003c;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

/* Scrollbar custom */
.rl-artist-player::-webkit-scrollbar {
    width: 4px;
}

.rl-artist-player::-webkit-scrollbar-track {
    background: #111;
}

.rl-artist-player::-webkit-scrollbar-thumb {
    background: #333;
}

.rl-artist-player::-webkit-scrollbar-thumb:hover {
    background: #ff003c;
}

/* ========================================
   SECTION RELEASES
   ======================================== */

.rl-artist-releases {
    background: #050505;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.rl-artist-releases__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.rl-artist-releases__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #ff003c;
    margin: 0 0 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.rl-artist-releases__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Release card */
.rl-artist-release-card {
    display: block;
    text-decoration: none;
    background: #0a0a0a;
    border: 1px solid #222;
    transition: all 0.3s ease;
    overflow: hidden;
}

.rl-artist-release-card:hover {
    border-color: #ff003c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,0,60,0.2);
}

.rl-artist-release-card__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.rl-artist-release-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.4s ease;
}

.rl-artist-release-card:hover .rl-artist-release-card__cover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.rl-artist-release-card__cat {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 8px;
    background: rgba(0,0,0,0.8);
    border: 1px solid #ff003c;
    color: #ff003c;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
}

.rl-artist-release-card__info {
    padding: 15px;
}

.rl-artist-release-card__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* ========================================
   NAVIGATION ARTISTES
   ======================================== */

.rl-artist-nav-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 250px;
}

.rl-artist-nav-full__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    border-top: 1px solid #222;
}

.rl-artist-nav-full__item--prev {
    border-right: 1px solid #222;
}

.rl-artist-nav-full__item--empty {
    background: #050505;
}

.rl-artist-nav-full__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.15);
    transition: all 0.5s ease;
}

.rl-artist-nav-full__item:hover .rl-artist-nav-full__bg {
    filter: grayscale(50%) brightness(0.3);
    transform: scale(1.05);
}

.rl-artist-nav-full__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.rl-artist-nav-full__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.rl-artist-nav-full__item:hover .rl-artist-nav-full__label {
    color: #ff003c;
}

.rl-artist-nav-full__name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

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

@media (max-width: 1200px) {
    .rl-artist-releases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .rl-artist-banner {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }
    
    .rl-artist-banner__image {
        height: 40vh;
    }
    
    .rl-artist-banner__overlay {
        background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    }
    
    .rl-artist-banner__content {
        border-left: none;
        border-top: 1px solid #222;
        padding: 30px;
    }
    
    .rl-artist-banner__name {
        font-size: 2.5rem;
    }
    
    .rl-artist-content {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }
    
    .rl-artist-bio {
        border-right: none;
        border-bottom: 1px solid #222;
        height: auto !important;
        max-height: 50vh;
    }
    
    .rl-artist-player {
        height: auto !important;
        max-height: 50vh;
    }
    
    .rl-artist-nav-full {
        grid-template-columns: 1fr;
    }
    
    .rl-artist-nav-full__item--prev {
        border-right: none;
        border-bottom: 1px solid #222;
    }
    
    .rl-artist-nav-full__item {
        min-height: 150px;
    }
}

@media (max-width: 768px) {
    .rl-artist-banner__image {
        height: 35vh;
    }
    
    .rl-artist-banner__content {
        padding: 25px 20px;
    }
    
    .rl-artist-banner__name {
        font-size: 1.8rem;
    }
    
    .rl-artist-banner__tagline {
        font-size: 0.95rem;
    }
    
    .rl-artist-bio,
    .rl-artist-player {
        padding: 30px 20px;
        max-height: none;
    }
    
    .rl-artist-releases {
        padding: 50px 0;
    }
    
    .rl-artist-releases__inner {
        padding: 0 20px;
    }
    
    .rl-artist-releases__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .rl-artist-nav-full__item {
        min-height: 120px;
    }
    
    .rl-artist-nav-full__name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .rl-artist-banner__image {
        height: 30vh;
    }
    
    .rl-artist-banner__name {
        font-size: 1.5rem;
    }
    
    .rl-artist-banner__role {
        font-size: 0.65rem;
    }
    
    .rl-artist-banner__country {
        font-size: 0.8rem;
    }
    
    .rl-artist-releases__grid {
        grid-template-columns: 1fr;
    }
    
    .rl-artist-social {
        width: 40px;
        height: 40px;
    }
    
    .rl-artist-bio__title,
    .rl-artist-player__title {
        font-size: 0.7rem;
    }
    
    .rl-artist-nav-full__item {
        min-height: 100px;
    }
    
    .rl-artist-nav-full__name {
        font-size: 1rem;
    }
    
    .rl-artist-nav-full__label {
        font-size: 0.6rem;
    }
}

/********************************************************
 * Fil d'Ariane & Navigation artistes
 ********************************************************/

/* Fil d'Ariane */
.rl-breadcrumbs {
  margin: 0 0;
  padding: 0 5vw;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #222;
}

.rl-breadcrumbs a {
  color: #b3b3b3;
  text-decoration: none;
}

.rl-breadcrumbs a:hover {
  color: #ffffff;
}

.rl-breadcrumbs__sep {
  margin: 0 0.5rem;
}

.rl-breadcrumbs__current {
  color: #ffffff;
}

/* Nav artiste précédent / suivant */
.rl-artist-nav {
  margin: 3rem 5vw 0;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid #171717;
  padding-top: 1.5rem;
}

.rl-artist-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1.2rem;
  border: 1px solid #222;
  background: #050505;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.rl-artist-nav__link--prev {
  align-items: flex-start;
}

.rl-artist-nav__link--next {
  align-items: flex-end;
  text-align: right;
}

.rl-artist-nav__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #888;
  margin-bottom: 0.3rem;
}

.rl-artist-nav__name {
  font-size: 0.98rem;
  color: #f5f5f5;
}

.rl-artist-nav__link:hover {
  border-color: #ff003c;
  box-shadow: 0 0 24px rgba(255, 0, 60, 0.26);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .rl-breadcrumbs {
    padding: 0 6vw;
  }

  .rl-artist-nav {
    flex-direction: column;
  }

  .rl-artist-nav__link--next {
    align-items: flex-start;
    text-align: left;
  }
}
/* ========================================
   CARROUSEL ARTISTES - RELOADING RECORDS
   Hauteur fixe 600px + texte 200 caractères max
   ======================================== */

/* ===================================
   SECTION WRAPPER
   =================================== */
.rl-artists-carousel-section {
  height:100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 4fr;
}

/* ===================================
   TITRE SECTION "ARTISTES"
   Police Orbitron + Aligné à droite
   =================================== */
.rl-section-title-wrapper {
  text-align: right; /* Alignement à droite */
  margin-left: auto;
  margin-right: auto;
  width:100%;
}

.rl-section-title {
  font-family: 'Orbitron', sans-serif; /* Police tech/industrielle */
  font-size: clamp(4rem, 10vh, 7rem); /* Responsive : 4rem min, 8rem max */
  font-weight: 900; /* Extra bold */
  letter-spacing: 0.1em; /* Espacement des lettres */
  color: #ffffff; /* Rouge néon Reloading */
  text-transform: uppercase;
  margin: auto !important;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4); /* Glow effect */
}

/* ===================================
   CONTAINER PRINCIPAL DU CARROUSEL
   Hauteur fixe 600px
   =================================== */
.rl-artists-carousel {
  max-width: 1600px; /* Largeur max du conteneur */
  margin: 0 auto; /* Centrage horizontal */
  display: grid;
  grid-template-columns: 120px 1fr 120px; /* Gutters 120px + contenu central */
  gap: 0;
  align-items: center;
  position: relative;
  height:100vh; /* HAUTEUR FIXE */
}

/* ===================================
   GUTTERS (Images précédent/suivant)
   Affichées sur les côtés en parallaxe
   =================================== */
.rl-carousel-gutter {
  height: 100vh; /* Même hauteur que le carrousel */
  position: relative;
  overflow: hidden;
}

.rl-carousel-gutter__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.15); /* N&B assombri */
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Animation smooth */
  position: relative;
}

/* Bordure rouge subtile sur les gutters */
.rl-carousel-gutter__image{
  content: '';
  position: absolute;
  inset: 0;
  border-right:1px solid rgba(255, 255, 255, 1);
  border-left:1px solid rgba(255, 255, 255, 1);

}

/* ===================================
   CONTENU PRINCIPAL (Split 50/50)
   Texte à gauche | Image à droite
   =================================== */
.rl-carousel-main {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% texte / 50% image */
  gap: 0;
  height: 100vh; /* HAUTEUR FIXE */
  background: rgba(0, 0, 0, 0.8); /* Fond noir semi-transparent */
  transition: opacity 0.3s ease, transform 0.3s ease; /* Transition entre artistes */
}

/* Classe appliquée pendant la transition */
.rl-carousel-transitioning {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ===================================
   PARTIE TEXTE (Gauche)
   Infos artiste + bio
   =================================== */
.rl-carousel-content {
  padding: 40px 50px; /* Espacement interne */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrage vertical du contenu */
  border-right: 1px solid rgba(255, 255, 255, 1); /* Séparateur rouge vertical */
  overflow-y: auto; /* Scroll si contenu trop long */
}

/* Nom de l'artiste */
.rl-carousel-artist-name {
  font-size: clamp(1.8rem, 3.5vw, 3rem); /* Responsive */
  font-weight: 900; /* Extra bold */
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1; /* Interligne serré */
  width: 100%; /* PLEINE LARGEUR */
}

/* Meta infos (rôle + pays) */
.rl-carousel-artist-meta {
  display: flex;
  gap: 20px; /* Espacement entre rôle et pays */
  margin-bottom: 25px;
  font-size: clamp(0.8rem, 2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 100%; /* PLEINE LARGEUR */
}

/* Rôle de l'artiste (DJ, Producer, etc.) */
.rl-carousel-artist-role {
  color: #ff003c; /* Rouge néon */
  font-weight: 700;
}

/* Pays de l'artiste */
.rl-carousel-artist-country {
  color: #999; /* Gris clair */
}

/* Séparateur bullet entre rôle et pays */
.rl-carousel-artist-country::before {
  margin-right: 20px;
  color: #ff003c;
}

/* Biographie artiste - LIMITÉ À 200 CARACTÈRES */
.rl-carousel-artist-bio {
  color: #ccc; /* Gris moyen */
  font-size: clamp(0.9rem, 1.8vw, 0.95rem);
  line-height: 1.7; /* Interligne aéré pour la lecture */
  margin-bottom: 30px;
  width: 100%; /* PLEINE LARGEUR - pas de max-width */
  max-height: 200px; /* Limite en hauteur si texte trop long */
  overflow: hidden; /* Cache le dépassement */
  text-overflow: ellipsis; /* Ajoute "..." si tronqué */
}

/* Lien "Découvrir l'artiste" */
.rl-carousel-artist-link {
  display: inline-flex;
  align-items: center;
  gap: 10px; /* Espacement entre texte et flèche */
  color: #ff003c;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
  width: fit-content; /* Largeur adaptée au contenu */
}

/* Underline animé au hover */
.rl-carousel-artist-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* Commence invisible */
  height: 2px;
  background: #ff003c;
  transition: width 0.3s ease; /* Animation de gauche à droite */
}

/* Effet hover sur le lien */
.rl-carousel-artist-link:hover {
  color: #fff; /* Passe en blanc */
  transform: translateX(5px); /* Déplacement horizontal */
}

/* Underline s'étend au hover */
.rl-carousel-artist-link:hover::after {
  width: 100%;
}

/* ===================================
   IMAGE PRINCIPALE (Droite)
   Photo de l'artiste actuel
   =================================== */
.rl-carousel-image-main {
  position: relative;
  height: 100%; /* Prend toute la hauteur du conteneur */
  overflow: hidden; /* Cache le débordement sur zoom */
}

.rl-carousel-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Image de l'artiste */
.rl-carousel-current-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Recadrage pour remplir le conteneur */
  filter: grayscale(20%); /* Léger effet N&B */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Animation zoom smooth */
}

/* Zoom au hover sur l'image */
.rl-carousel-image-main:hover .rl-carousel-current-image {
  transform: scale(1.05); /* Agrandissement 5% */
}

/* ===================================
   NAVIGATION (Boutons + Compteur)
   Positionnée en bas du carrousel
   =================================== */
.rl-carousel-nav {
  position: absolute;
  bottom: 20px; /* 20px du bas du carrousel */
  left: 50%;
  transform: translateX(-50%); /* Centrage horizontal */
  display: flex;
  align-items: center;
  gap: 30px; /* Espacement entre boutons et compteur */
  z-index: 10; /* Au-dessus du contenu */
}

/* Boutons précédent/suivant */
.rl-carousel-btn {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid #ff003c; /* Bordure rouge */
  color: #ff003c;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden; /* Cache l'effet de remplissage */
}

/* Effet de remplissage au hover (background qui glisse) */
.rl-carousel-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ff003c;
  transform: translateX(-100%); /* Commence hors écran à gauche */
  transition: transform 0.3s ease;
  z-index: -1;
}

/* Hover sur les boutons */
.rl-carousel-btn:hover {
  color: #000; /* Texte/icône devient noir */
  border-color: #ff003c;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.5); /* Glow effect */
}

/* Le background rouge glisse au hover */
.rl-carousel-btn:hover::before {
  transform: translateX(0); /* Remplit le bouton */
}

/* Effet de pression au clic */
.rl-carousel-btn:active {
  transform: scale(0.95);
}

/* Compteur (ex: "1 / 5") */
.rl-carousel-counter {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
  min-width: 70px;
  text-align: center;
}

/* Numéro actuel (plus gros et rouge) */
.rl-carousel-current {
  color: #ff003c;
  font-size: 1.3rem;
}

/* Séparateur "/" */
.rl-carousel-separator {
  color: #666; /* Gris foncé */
  margin: 0 6px;
}

/* ===================================
   RESPONSIVE DESIGN
   Adaptations pour tablettes et mobiles
   =================================== */

/* Tablettes larges (< 1400px) */
@media (max-width: 1400px) {
  .rl-artists-carousel {
    grid-template-columns: 80px 1fr 80px; /* Gutters réduits à 80px */
  }
  
}

/* Tablettes (< 1024px) - Passage en colonne */
@media (max-width: 1024px) {
  .rl-artists-carousel {
    grid-template-columns: 1fr; /* Une seule colonne */
    height: auto; /* Hauteur flexible sur tablette */
  }
  
  /* Gutters cachés sur tablette/mobile */
  .rl-carousel-gutter {
    display: none;
  }
  
  /* Contenu empilé verticalement */
  .rl-carousel-main {
    grid-template-columns: 1fr; /* Texte au-dessus, image en dessous */
	height:auto;
  }
  
  /* Texte : plus de bordure droite, bordure en bas */
  .rl-carousel-content {
    padding: 35px 25px;
    border-right: none;
    border-bottom: 1px solid #222; /* Séparateur horizontal */
  }
  
  /* Image : hauteur fixe sur tablette */
  .rl-carousel-image-main {
    height: 400px;
  }
  
  /* Navigation : passage en position relative */
  .rl-carousel-nav {
    position: static; /* Plus en absolute */
    transform: none;
    margin-top: 20px;
    justify-content: center;
  }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  /* Réduction du padding section */
  .rl-artists-carousel-section {
    padding: 0;
	height:auto;
	border−left:1px solid #222;
  }

  .rl-carousel-main {
	border−left:1px solid #222;
  }
  /* Réduction padding contenu texte */
  .rl-carousel-content {
    padding: 25px 20px;
  }
  
  /* Nom artiste plus petit sur mobile */
  .rl-carousel-artist-name {
    font-size: 1.8rem;
  }
  
  /* Meta en colonne plutôt qu'en ligne */
  .rl-carousel-artist-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Suppression du bullet séparateur en mode colonne */
  .rl-carousel-artist-country::before {
    content: '';
    margin: 0;
  }
  
  /* Image plus petite sur mobile */
  .rl-carousel-image-main {
    height: 300px;
  }
}/* ========================================
   SECTION MUSIC - Layout 50/50
   ======================================== */

.rl-music-section {
  padding: 120px 0;
  background: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rl-music-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===================================
   PLAYER GAUCHE
   =================================== */
.rl-music-player {
  position: sticky;
  top: 40px;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,0,10,0.95) 100%);
  border: 2px solid #222;
  overflow: hidden;
}

.rl-player-cover {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  background: #111;
  overflow: hidden;
}

.rl-player-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.rl-music-player:hover .rl-player-cover-image {
  filter: grayscale(0%);
}

.rl-player-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-player-pulse {
  width: 100px;
  height: 100px;
  border: 4px solid #ff003c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.3; }
}

.rl-player-info {
  padding: 40px;
  border-bottom: 1px solid rgba(255, 0, 60, 0.3);
}

.rl-player-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.rl-player-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rl-player-artist {
  color: #ff003c;
  font-weight: 700;
}

.rl-player-count {
  color: #999;
}

.rl-player-count::before {
  content: '•';
  margin-right: 20px;
  color: #ff003c;
}

.rl-player-embed {
  min-height: 450px;
  background: #000;
}

.rl-player-embed iframe {
  width: 100%;
  height: 450px !important;
  border: none;
}

.rl-player-placeholder,
.rl-player-loading,
.rl-player-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  color: #666;
  text-align: center;
  padding: 60px 40px;
}

.rl-player-placeholder svg {
  margin-bottom: 30px;
  opacity: 0.4;
}

.rl-player-placeholder p {
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

.rl-player-loading {
  font-style: italic;
}

.rl-player-error {
  color: #ff003c;
}

/* ===================================
   CARDS DROITE
   =================================== */
.rl-music-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Navigation cards */
.rl-cards-nav {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ff003c;
}

.rl-cards-nav-btn {
  flex: 1;
  padding: 15px 25px;
  background: transparent;
  border: 2px solid #ff003c;
  color: #ff003c;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rl-cards-nav-btn:hover {
  background: rgba(255, 0, 60, 0.1);
  transform: translateY(-2px);
}

.rl-cards-nav-btn.active {
  background: #ff003c;
  color: #000;
}

/* Vues */
.rl-cards-view {
  display: none;
}

.rl-cards-view.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Grid artistes */
.rl-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

/* Card */
.rl-card {
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(20,0,10,0.95) 100%);
  border: 2px solid rgba(255, 0, 60, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.rl-card:hover {
  border-color: #ff003c;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.3);
}

.rl-card.active {
  border-color: #ff003c;
  box-shadow: 0 0 30px rgba(255, 0, 60, 0.5);
}

/* Card "Toutes les tracks" */
.rl-card-all {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.rl-card-icon {
  flex-shrink: 0;
}

/* Card artiste avec image */
.rl-card-thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  background: #111;
  overflow: hidden;
}

.rl-card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: all 0.3s ease;
}

.rl-card:hover .rl-card-thumbnail img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.rl-card-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rl-card:hover .rl-card-play-overlay {
  opacity: 1;
}

/* Contenu card */
.rl-card-content {
  padding: 25px;
}

.rl-card-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.rl-card-subtitle {
  color: #ff003c;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

.rl-card-count {
  color: #999;
  font-size: 0.85rem;
  margin: 0;
}

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

@media (max-width: 1200px) {
  .rl-music-section {
    padding: 80px 0;
  }
  
  .rl-music-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .rl-music-player {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .rl-music-section {
    padding: 60px 0;
  }
  
  .rl-cards-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  .rl-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .rl-card-all {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .rl-player-info {
    padding: 30px 25px;
  }
  
  .rl-player-title {
    font-size: 1.6rem;
  }
}
/********************************************************
 * Bas de page artiste : onglets ↔ SoundCloud en 50/50
 ********************************************************/

.rl-artist-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% / 50% */
  min-height: 50vh;
  border-top: 1px solid #222;
}

/* Colonne onglets */
.rl-artist-bottom__left {
  padding: 2rem 5vw 3rem 5vw;
}

/* On neutralise les marges par défaut des tabs si nécessaire */
.rl-artist-product__tabs {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Colonne SoundCloud */
.rl-artist-bottom__right {
  padding: 2rem 5vw 3rem 5vw; /* même padding horizontal que les tabs */
  border-left: 1px solid #222;
}

/* Bloc SoundCloud colonne droite */
.rl-artist-soundcloud-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Player */
.rl-artist-soundcloud__player {
  margin-top: 0.75rem;
  background: #050505;
  border: 1px solid #222;
  box-shadow: 0 0 24px rgba(255, 0, 60, 0.25);
  padding: 0.5rem;
}

.rl-artist-soundcloud__player iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

.rl-artist-soundcloud__error {
  font-size: 0.85rem;
  color: #ff8080;
  margin-top: 0.75rem;
}

/* Responsive */
@media (max-width: 960px) {
  .rl-artist-bottom {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }

  .rl-artist-bottom__left,
  .rl-artist-bottom__right {
    padding: 2rem 6vw;
    border-left: none;
  }
}
/********************************************************
 * RELOADING – Bas de page artiste : Tabs ↔ SoundCloud
 * Forcé en 2 colonnes 50/50 sur desktop
 ********************************************************/

/* Wrapper des deux colonnes (tabs + soundcloud) */
.single-artist .rl-artist-bottom {
  display: flex !important;         /* on écrase grid ou block */
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  border-top: 1px solid #222;
  width: 100%;
}

/* Colonnes gauche et droite = chacune 50% */
.single-artist .rl-artist-bottom__left,
.single-artist .rl-artist-bottom__right {
  flex: 0 0 50%;          /* occupe 50% */
  max-width: 50%;
  min-width: 0;           /* évite qu’un contenu force le wrap */
  box-sizing: border-box;
}

/* Colonne gauche : onglets Bio / Details */
.single-artist .rl-artist-bottom__left {
  padding: 2rem 5vw 3rem 5vw;
}

/* Colonne droite : SoundCloud, même padding horizontal que la gauche */
.single-artist .rl-artist-bottom__right {
  padding: 2rem 5vw 3rem 5vw;
  border-left: 1px solid #222;
}

/* On évite les marges parasites sur ce bloc de tabs dans la partie basse */
.single-artist .rl-artist-bottom__left .rl-artist-product__tabs {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Bloc SoundCloud */
.single-artist .rl-artist-soundcloud-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.single-artist .rl-artist-soundcloud__player {
  margin-top: 0.75rem;
  background: #050505;
  border: 1px solid #222;
  box-shadow: 0 0 24px rgba(255, 0, 60, 0.25);
  padding: 0.5rem;
}

.single-artist .rl-artist-soundcloud__player iframe {
  width: 100%;
  height: 340px;
  border: 0;
}

.single-artist .rl-artist-soundcloud__error {
  font-size: 0.85rem;
  color: #ff8080;
  margin-top: 0.75rem;
}

/* Responsive : on repasse en une seule colonne sur mobile */
@media (max-width: 960px) {
  .single-artist .rl-artist-bottom {
    flex-direction: column;
    margin-top: 2.5rem;
  }

  .single-artist .rl-artist-bottom__left,
  .single-artist .rl-artist-bottom__right {
    flex: 0 0 auto;
    max-width: 100%;
    padding: 2rem 6vw;
    border-left: none;
  }
}
/* ========================================
   FUMÉE EN SECTION
   ======================================== */

/* Section avec fumée confinée */
.rl-smoke-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Canvas fumée dans une section */
.rl-smoke-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  margin-block-start: 0;
  margin-block-end: 0;

}

.rl-smoke-canvas canvas {
  width: 100%;
  height: 100%;
  display: block; 

}

/* Contenu au-dessus de la fumée */
.rl-smoke-section > *:not(.rl-smoke-canvas) {
  position: relative;
  z-index: 1;
}

/* Fumée globale (existant) */
#smoke-bg {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

#smoke-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}
/********************************************************
 * RELOADING – Typo artiste = mode GÉANT
 ********************************************************/

/* Nom artiste : énorme + rouge */
.single-artist .rl-artist-product__name {
  font-size: clamp(2.5rem, 5vw, 5rem);  /* VRAIMENT gros */
  line-height: 1.02;
  color: #ff003c;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Ligne rôle / pays : taille bien au-dessus du corps de texte */
.single-artist .rl-artist-product__meta {
  font-size: clamp(1rem, 3vw, 1.7rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin-bottom: 1.4rem;
}

/* Tagline : très lisible, gros bloc descriptif */
.single-artist .rl-artist-product__tagline {
  font-size: clamp(1rem, 3vw, 1.7rem);
  line-height: 1.8;
  color: #ffffff;
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

/* Meta list (Role / Country) : boostée aussi */
.single-artist .rl-artist-product__meta-list {
  font-size: clamp(1rem, 3vw, 1.7rem);
}

.single-artist .rl-meta-label {
  font-size: clamp(1rem, 3vw, 1.7rem);
}

.single-artist .rl-meta-value {
  font-size: clamp(1rem, 3vw, 1.7rem);
}

/* Légèrement up sur tout le texte de la colonne de droite */
.single-artist .rl-artist-product__summary {
  font-size: clamp(1rem, 3vw, 1.7rem);
}
/* ========================================
   SECTION LAST RELEASE - HAUTEUR 100VH
   ======================================== */

/* ============================================
   RELEASES SECTION - Visualizer Three.js
   ============================================ */

.rl-releases-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    z-index: 1;
}

/* Canvas Three.js Visualizer */
.rl-visualizer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Wrapper contenu - PLEINE LARGEUR */
.rl-releases-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 80px 5%;
}

/* Header */
.rl-releases-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rl-releases-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.rl-releases-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff003c;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.rl-releases-view-all:hover {
    color: #fff;
}

.rl-releases-view-all svg {
    transition: transform 0.3s ease;
}

.rl-releases-view-all:hover svg {
    transform: translateX(5px);
}

/* Grille */
.rl-releases-grid-v3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Card */
.rl-release-card-v3 {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.rl-release-card-v3:hover {
    border-color: #ff003c;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 0, 60, 0.3);
}

.rl-release-card-v3__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Cover */
.rl-release-card-v3__cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.rl-release-card-v3__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.5s ease;
}

.rl-release-card-v3:hover .rl-release-card-v3__cover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

.rl-release-card-v3__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Overlay */
.rl-release-card-v3__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rl-release-card-v3:hover .rl-release-card-v3__overlay {
    opacity: 1;
}

.rl-release-card-v3__overlay svg {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.rl-release-card-v3:hover .rl-release-card-v3__overlay svg {
    transform: scale(1);
}

/* Catalog badge */
.rl-release-card-v3__catalog {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #ff003c;
    color: #ff003c;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Infos */
.rl-release-card-v3__info {
    padding: 20px;
}

.rl-release-card-v3__artist {
    display: block;
    font-size: 0.75rem;
    color: #ff003c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 600;
}

.rl-release-card-v3__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rl-release-card-v3__date {
    display: block;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Buy button */
.rl-release-card-v3__buy {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ff003c;
    color: #000;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 2;
}

.rl-release-card-v3__buy:hover {
    background: #fff;
    color: #ff003c;
    transform: scale(1.1);
}

/* Responsive Releases Section */
@media (max-width: 1200px) {
    .rl-releases-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .rl-releases-section {
        min-height: 100vh;
        height: auto;
        padding: 0;
    }
    
    .rl-releases-wrapper {
        padding: 80px 5%;
    }

    .rl-releases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .rl-releases-title {
        font-size: 2rem;
    }

    .rl-releases-grid-v3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .rl-release-card-v3__info {
        padding: 15px;
    }

    .rl-release-card-v3__title {
        font-size: 0.9rem;
    }

    .rl-release-card-v3__buy {
        width: 32px;
        height: 32px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .rl-releases-wrapper {
        padding: 60px 4%;
    }

    .rl-releases-title {
        font-size: 1.8rem;
    }

    .rl-releases-grid-v3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rl-release-card-v3 {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rl-release-card-v3__cover {
        aspect-ratio: 1;
    }

    .rl-release-card-v3__info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
    }

    .rl-release-card-v3__catalog {
        top: 8px;
        left: 8px;
        font-size: 0.55rem;
        padding: 3px 6px;
    }

    .rl-release-card-v3__buy {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 40px;
        border-radius: 0;
        grid-column: 1 / -1;
    }
}

/* ========================================
   SINGLE RELEASE - DESIGN IMMERSIF
   Inspiré labels techno modernes
   ======================================== */

.single-release .site-content .ast-container,
.single-release #primary {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.rl-release-single {
    background: #000;
    width: 100vw;
}

/* ========================================
   FULLSCREEN HERO
   ======================================== */

.rl-release-fullscreen {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rl-release-fullscreen__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(80px) saturate(0.5);
    opacity: 0.4;
    transform: scale(1.2);
}

.rl-release-fullscreen__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

/* Artwork centré */
.rl-release-fullscreen__artwork {
    margin-bottom: 30px;
}

.rl-release-fullscreen__artwork img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    transition: transform 0.6s ease;
}

.rl-release-fullscreen__artwork:hover img {
    transform: scale(1.03);
}

/* Featured badge */
.rl-release-fullscreen__featured {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    background: #ff003c;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rl-release-fullscreen__artwork {
    position: relative;
}

/* Infos */
.rl-release-fullscreen__info {
    max-width: 600px;
}

.rl-release-fullscreen__cat {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: #ff003c;
    margin-bottom: 20px;
}

.rl-release-fullscreen__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.rl-release-fullscreen__artist {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.rl-release-fullscreen__artist a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.rl-release-fullscreen__artist a:hover {
    color: #ff003c;
}

.rl-release-fullscreen__date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2em;
}

/* Scroll indicator */
.rl-release-fullscreen__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.rl-scroll-dot {
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

/* ========================================
   DETAILS SECTION
   ======================================== */

.rl-release-details {
    background: #000;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.rl-release-details__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.rl-release-details__desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
}

.rl-release-details__desc p {
    margin: 0 0 1.5rem;
}

/* Meta infos dans details */
.rl-release-details__meta {
    padding-top: 1.5rem;
    border-top: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rl-release-meta-item {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.rl-release-meta-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    min-width: 100px;
}

.rl-release-meta-value {
    color: #fff;
}

.rl-release-meta-value a {
    color: #ff003c;
    text-decoration: none;
}

.rl-release-meta-value a:hover {
    color: #fff;
}

.rl-release-details__actions {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Plateformes - utilise .rl-platform-btn existant */
.rl-release-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ========================================
   PLAYER SECTION
   ======================================== */

.rl-release-player {
    background: #050505;
    padding: 80px 0;
    border-top: 1px solid #222;
}

.rl-release-player__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.rl-release-player__title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
    margin: 0 0 30px;
}

/* ========================================
   NAVIGATION FULLWIDTH
   ======================================== */

.rl-release-nav-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.rl-release-nav-full__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    border-top: 1px solid #222;
}

.rl-release-nav-full__item--prev {
    border-right: 1px solid #222;
}

.rl-release-nav-full__item--empty {
    background: #050505;
}

.rl-release-nav-full__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.2);
    transition: all 0.5s ease;
}

.rl-release-nav-full__item:hover .rl-release-nav-full__bg {
    filter: grayscale(50%) brightness(0.35);
    transform: scale(1.05);
}

.rl-release-nav-full__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.rl-release-nav-full__label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.rl-release-nav-full__item:hover .rl-release-nav-full__label {
    color: #ff003c;
}

.rl-release-nav-full__name {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   RESPONSIVE SINGLE RELEASE
   ======================================== */

@media (max-width: 1024px) {
    .rl-release-details__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .rl-release-fullscreen__artwork img {
        width: 280px;
        height: 280px;
    }
    
    .rl-release-fullscreen__title {
        font-size: 1.8rem;
    }
    
    .rl-release-fullscreen__artist {
        font-size: 1rem;
    }
    
    .rl-release-details {
        padding: 60px 0;
    }
    
    .rl-release-details__grid {
        padding: 0 20px;
    }
    
    .rl-release-player {
        padding: 60px 0;
    }
    
    .rl-release-player__inner {
        padding: 0 20px;
    }
    
    .rl-release-nav-full {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .rl-release-nav-full__item--prev {
        border-right: none;
        border-bottom: 1px solid #222;
    }
    
    .rl-release-nav-full__item {
        min-height: 200px;
    }
    
    .rl-release-nav-full__name {
        font-size: 1.2rem;
    }
    
    .rl-release-platforms {
        flex-direction: column;
    }
    
    .rl-release-platforms .rl-platform-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rl-release-fullscreen__artwork img {
        width: 240px;
        height: 240px;
    }
    
    .rl-release-fullscreen__title {
        font-size: 1.5rem;
    }
}

/* ===========================================
   FUMÉE BACKGROUND ACCUEIL
   =========================================== */
.home #smoke-bg,
.page-template-default #smoke-bg {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: -1 !important;
}

/* ===========================================
   MUSIC PLAYER
   =========================================== */
.rl-music-player-section {
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 11fr;
}

/* Player principal */
.rl-player {
  border: 2px solid #fff;
  overflow: hidden;
  background-color: #180106;
}

.rl-player__cover {
  position: relative;
  width: 100%;
  padding-bottom: 45%;
  background: #111;
  overflow: hidden;
}

.rl-player__cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}

.rl-player__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-player__pulse {
  width: 100px;
  height: 100px;
  border: 4px solid #ff003c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.rl-player__info {
  padding: 30px;
  border-bottom: 1px solid #fff;
}

.rl-player__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px;
  letter-spacing: 0.02em;
}

.rl-player__meta {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rl-player__artist {
  color: #ff003c;
  font-weight: 700;
}

.rl-player__catalog {
  color: #999;
}

.rl-player__catalog::before {
  content: '•';
  margin-right: 20px;
  color: #ff003c;
}

.rl-player__embed {
  min-height: 166px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.rl-player__embed iframe {
  width: 100%;
  height: 166px;
  border: none;
}

/* Liste releases */
.rl-player-list {
  border: 2px solid #fff;
  padding: 20px;
  max-height: 800px;
  overflow-y: auto;
  background-color: #180106;
  z-index:1;
}

.rl-player-list__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff003c;
  background-color:#000;
  text-transform: uppercase;
  margin: 0 0 20px;
  letter-spacing: 0.1em;
}

.rl-player-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rl-player-item:hover,
.rl-player-item.active {
  background: rgba(255, 0, 60, 0.1);
  border-bottom-color: #ff003c;
}

.rl-player-item__cover {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
}

.rl-player-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rl-player-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rl-player-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.rl-player-item__artist {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .rl-music-player-section {
    grid-template-columns: 1fr;
  }
  
  .rl-player-list {
    max-height: 400px;
  }
}

/* ===========================================
   STROKES ROUGES ÉLÉMENTS IMPORTANTS
   =========================================== */

.rl-carousel-content {
  border-right-color: #222 !important;
}

/* Player */
.rl-player {
  border-color: #222 !important;
}

.rl-player-list {
  border-color: #222 !important;
}

.rl-player__info {
  border-bottom-color: #ff003c !important;
}

/* Player Audio HTML5 */
.rl-player__audio {
  padding: 30px;
  background: #000;
}

.rl-player__audio audio {
  width: 100%;
  height: 54px;
  background: #000;
  border-radius: 0;
}

.rl-player__audio audio::-webkit-media-controls-panel {
  background: #ff003c;
}

.rl-player__audio audio::-webkit-media-controls-play-button {
  background-color: #ff003c;
  border-radius: 50%;
}

.rl-player-item__number {
  width: 40px;
  height: 40px;
  background: rgba(255,0,60,0.1);
  border: 1px solid #ff003c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ff003c;
  flex-shrink: 0;
}

.rl-player-item.active .rl-player-item__number {
  background: #ff003c;
  color: #fff;
}

/* ===========================================
   PLATFORM BUTTONS (Release pages)
   =========================================== */
.rl-platform-btn {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.rl-platform-btn:hover {
  background: #ff003c;
  border-color: #ff003c;
  color: #000;
  transform: translateY(-2px);
}

/* ===========================================
   MUSIC PLAYER - PLEINE LARGEUR + TITRE
   =========================================== */

/* Section pleine largeur - Breakout du container Astra */
.rl-music-player-section {
  padding: 120px 0;
  background: #000;
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  overflow-x: hidden;
}

/* Titre MUSIC */
.rl-music-player-section::Before {
  content: 'MUSIC';
  z-index:1;
  display: flex;
  justify-content: center;
  align-items: center;      
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

/* Container grid - 1/3 player + 2/3 liste - PLEINE LARGEUR */
.rl-music-player-container {
  z-index:1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: 1fr 2fr; /* 33% player / 66% liste */
  align-items: start;
  box-sizing: border-box;
}

/* Player gauche - Pleine hauteur */
.rl-player {
  position: sticky;
  top: 40px;
  border: 2px solid #ff003c;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.rl-player__cover {
  position: relative;
  width: 100%;
  flex: 0 0 50%;
  background: #111;
  overflow: hidden;
}

.rl-player__cover-img {
  width: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.rl-player:hover .rl-player__cover-img {
  filter: grayscale(0%);
}

.rl-player__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rl-player__pulse {
  width: 100px;
  height: 100px;
  border: 4px solid #ff003c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.rl-player__info {
  padding: 30px;
  border-bottom: 1px solid #ff003c;
  flex-shrink: 0;
}

.rl-player__title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 15px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.rl-player__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rl-player__artist {
  color: #ff003c;
  font-weight: 700;
}

.rl-player__catalog {
  color: #999;
}

.rl-player__catalog::before {
  content: '•';
  margin-right: 20px;
  color: #ff003c;
}

.rl-player__audio {
  padding: 30px;
  background: #000;
  flex: 1;
  display: flex;
  align-items: center;
}


/* Liste droite - Scrollable */
.rl-player-list {
  border: 2px solid #ff003c;
  padding: 0px 20px;
  height: 100%;
  overflow-y: auto;
  background:#000000;
}

.rl-player-list__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff003c;
  text-transform: uppercase;
  margin: 0 0 20px;
  letter-spacing: 0.1em;
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.95);
  padding: 10px 0;
  z-index: 10;
}

.rl-player-list__items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background-color:#000000;
}

.rl-player-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.rl-player-item:hover,
.rl-player-item.active {
  background: rgba(255, 0, 60, 0.15);
  border-bottom-color: #ff003c;
}

.rl-player-item__number {
  width: 40px;
  height: 40px;
  background: rgba(255,0,60,0.1);
  border: 1px solid #ff003c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ff003c;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.rl-player-item.active .rl-player-item__number {
  background: #ff003c;
  color: #000;
}

.rl-player-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.rl-player-item__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rl-player-item__artist {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Scrollbar custom */
.rl-player-list::-webkit-scrollbar {
  width: 8px;
}

.rl-player-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.5);
}

.rl-player-list::-webkit-scrollbar-thumb {
  background: #ff003c;
  border-radius: 4px;
}

.rl-player-list::-webkit-scrollbar-thumb:hover {
  background: #ff0050;
}
.artist-title{
    writing-mode: vertical-rl;
    text-orientation: upright;
	letter-spacing:-1.0rem;
	display: flex;
    align-items: center;     /* centre verticalement */
    justify-content: center; /* centre horizontalement */
}
/* Responsive */
@media (max-width: 1200px) {
  .rl-music-player-container {
    grid-template-columns: 1fr;
    height: auto;
    gap: 30px;
  }
  
  .rl-player {
    position: relative;
    top: 0;
    height: auto;
  }
  
  .rl-player__cover {
    flex: 0 0 400px;
  }
  
  .rl-player-list {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .rl-music-player-section {
    padding: 60px 0;
  }
  
  .rl-music-player-section::before {
    font-size: 4rem;
  }
  
  .rl-player__cover {
    flex: 0 0 300px;
  }
  
  .rl-player__info {
    padding: 20px;
  }
  
  .rl-player__title {
    font-size: 1.4rem;
  }
  
  .rl-player-list {
    height: 400px;
  }
}
#grid-3d-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.grid-3d-section {
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;     /* centre verticalement */
    justify-content: center; /* centre horizontalement */
   height: 100vh;           /* optionnel : pleine hauteur */
}

}

.grid-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.grid-3d-section > * {
	position:absolute !important; 
    z-index: 1;
}
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

/* ===========================================
   BUY RELEASE BUTTON
   =========================================== */

.rl-buy-release {
  margin: 2rem 0;
}

.rl-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #ff003c;
  border: 2px solid #ff003c;
  color: #000;
  text-decoration: none;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.rl-buy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.rl-buy-btn:hover {
  background: transparent;
  color: #ff003c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 60, 0.4);
}

.rl-buy-btn:hover::before {
  left: 100%;
}

.rl-buy-btn svg {
  transition: transform 0.3s ease;
}

.rl-buy-btn:hover svg {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .rl-buy-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}