.radio-bar {
  background-image: url('/assets/images/home-bg.webp');
  background-size: cover;
  background-position: center;
}

.stat-radio {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-radio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.radio-name {
  font-size: 13px;
  font-weight: 600;
}

.radio-bar {
  background-image: url('/assets/images/home-bg.webp');
  background-size: cover;
  background-position: center;
}

.radio-title {
  position: absolute;
  top: -40px;              /* ajuste finement */
  left: 0;
  font-size: 72px;
  font-weight: 800;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
  line-height: 1;
}

.radio-title .dot {
  color: #00c9ff;
  margin-right: 6px;
}


/* ===============================
   HOME â€“ DESKTOP NOW PLAYING
   =============================== */

.home-nowplaying {
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT */
.nowPlaying {
  font-size: 73px;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(255,255,255,0.18);
  pointer-events: none;
}

.nowPlaying .dot {
  color: #00c9ff;
  margin-right: 6px;
}

/* RIGHT */
.nowplaying-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.nowplaying-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  transition: transform .25s ease, box-shadow .25s ease;
}

.nowplaying-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.nowplaying-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Overlay gradient */
.nowplaying-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 60%);
}

.home-nowplaying {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 80px;
  padding: 40px 80px;
  background-color: #000000
}

/* colonne droite */
.nowplaying-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ðŸ”’ CONTRAINTE CRITIQUE */
.nowplaying-card {
  aspect-ratio: 1 / 1;
  max-width: 260px;   /* <-- clÃ© */
  margin: 0 auto;
}

.home-nowplaying {
  grid-template-columns: 420px 1fr;
}

/* Desktop : ce bloc ne perturbe rien */
@media (min-width: 992px) {
  .stat-open-modal {
    display: none;
  }
}

.home-desktop .random-carousel {
  margin-top: 60px;
  margin-bottom: 100px;
}


/* ===============================
   HOME â€“ SECTION TITLES
   =============================== */

.home-section-title {
  font-size: 73px;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(255,255,255,0.18);
  margin: 80px 0 40px;
  pointer-events: none;
}

.home-section-title .dot {
  color: #00c9ff;
  margin-right: 6px;
}

.home-deepcuts {
  width: 100%;
  padding: 120px 0;
}

.home-deepcuts-inner {
  max-width: 1400px;   /* ? clé */
  margin: 0 auto;
  padding: 0 80px;
}

.deepcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.deepcut-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.deepcut-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.deepcut-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent 60%);
}

.deepcut-title {
  font-size: 14px;
  font-weight: 600;
}

.deepcut-dj {
  font-size: 12px;
  opacity: .7;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  aspect-ratio: 1 / 1;   /* ? clé */
}

.mosaic-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.35)
  );
  pointer-events: none;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(56px, 7vw, 86px);
  font-weight: 800;
  line-height: 0.9;
  color: rgba(255,255,255,0.18);
  letter-spacing: -1px;
  margin: 0 0 32px 0;
  pointer-events: none;
  max-width: 700px;     /* évite qu’il traverse toute la zone */
  white-space: nowrap;
  opacity: 0.9;
}

.section-title .dot {
  color: #00c9ff;
  margin-right: 8px;
}


.radio-zone{
  position: relative;
  width: 100%;
  padding: 120px 0; /* le “fond” respire */
  background: radial-gradient(
    ellipse at center,
    rgba(255,255,255,0.03),
    rgba(0,0,0,0.95)
  );
}


.radio-zone-inner{
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;     /* garde ton alignement */
}


/* ? watermark : hors du flow */
.radio-zone .section-title{
  position: absolute;
  top: 20px;
  left: 80px;          /* aligne avec le padding du container */
  margin: 0;
  z-index: 1;
  white-space: nowrap;
}

/* les cartes AU-DESSUS du watermark */
.radio-zone .nowplaying-right{
  position: relative;
  z-index: 2;
  margin-top: 0;       /* le titre ne doit plus pousser le grid */
  /*padding-top: 80px;   /* espace “volontaire” sous le watermark */
  padding-left: 480px;
}

.radio-zone-inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

/* couche titre (watermark) */
.radio-title-layer {
  position: absolute;
  top: 30px;
  left: -40px;          /* ? clé : on sort du container */
  z-index: 1;
  pointer-events: none;
  transform: translateY(10px);
  filter: blur(0.2px);
}

/* couche contenu */
.radio-content {
  position: relative;
  z-index: 3;           /* toujours AU-DESSUS du watermark */
}

.home-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -50px;
}

@media (min-width: 992px) {
  .home-slider img {
    width: 800px;
    height: 600px;
    object-fit: cover;
    margin: 0 auto;
  }
}

@media (min-width: 992px) {
  .home-slider .swiper-slide {
    width: 800px !important;
    height: 600px;
  }

  .home-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===== HOME SLIDER DESKTOP ===== */
@media (min-width: 992px) {

  .random-carousel .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .carousel-card {
    /*width: 300px; */
  }

.carousel-img {
  position: relative;
  aspect-ratio: 4 / 5;        /* vertical, cohérent avec ton rendu */
  overflow: hidden;
  border-radius: 18px;
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ===== Bande nom dans le slider ===== */
.carousel-card {
  position: relative;
  background: transparent;   /* ? clé */
}

.carousel-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;

  padding: 8px 12px;
  border-radius: 10px;
  /*
  background: rgba(0,0,0,0.45);
 
  
   */
 background: rgba(0, 201, 255, 0.25); /* bleu BS très doux */
 
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: center;
}


.carousel-info h5 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  letter-spacing: 0.3px;
}

.carousel-card a {
  display: block;
  position: relative;
  line-height: 0;
}
.carousel-info {
  line-height: normal;
}


.carousel-img {
  aspect-ratio: 3 / 4; /* plus proche des photos DJ */
}
.carousel-img img {
  object-fit: cover;
  object-position: center top;
}