/* ================= RESET ================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  position: relative;
  z-index: 0;
  font-family: 'Oswald', sans-serif;
  background: #050505;
  color: white;
}

/* ================= BACKGROUND ================= */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./img/background.jpg") center/cover no-repeat;
  z-index: -2;
  opacity: 0.35;
  animation: zoom 10s infinite alternate ease-in-out;
}

.bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

@keyframes zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* ================= HEADER ================= */
header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  z-index: 10;
}

header a {
  text-decoration: none;
  display: block;
}

.logo {
  width: 190px;
  display: block;
}

/* ================= NAV ================= */
nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

.menu-item {
  text-decoration: none;
  color: white;
  position: relative;
  overflow: hidden;
  height: 24px;
  display: inline-block;
}

.menu-item span {
  display: block;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-item .top  { color: #8A2BE2; }

.menu-item .bottom {
  position: absolute;
  top: 100%;
  left: 0;
  color: #FFA84D;
}

.menu-item:hover .top    { transform: translateY(-100%); }
.menu-item:hover .bottom { transform: translateY(-100%); }
.menu-item:hover         { text-shadow: 0 0 10px rgba(255,0,76,0.6); }

/* ================= BURGER ================= */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
  transition: 0.3s;
}

.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ================= OVERLAY MENU ================= */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 100;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ================= MOBILE NAV ================= */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  z-index: 150;
}

.mobile-nav.active { right: 0; }

.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 20px 0; }

.mobile-nav a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 20px;
}

.hero-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-logo {
  width: 320px;
  max-width: 80%;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
  opacity: 0;
  transform: scale(0.9);
  animation: logoFade 1.2s ease-out forwards;
}

@keyframes logoFade {
  to { opacity: 1; transform: scale(1); }
}

.title {
  font-size: 3rem;
  letter-spacing: 6px;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.4s;
}

.subtitle {
  font-size: 1rem;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.7s;
}

.subtitle-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

/* ================= WAVE HERO ================= */
.wave-hero {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  align-items: flex-start;
  margin-top: 6px;
  gap: 2px;
}

.wave-hero span {
  flex: 1;
  height: 100%;
  background: linear-gradient(to bottom, #fbe9bd, rgba(248,168,43,0.3));
  border-radius: 3px;
  transform-origin: top;
  animation: wave 1.2s infinite ease-in-out;
  box-shadow: 0 0 12px rgba(255,0,76,0.8);
  will-change: transform;
}

.wave-hero span:nth-child(1)  { animation-delay: 0s;    transform: scaleY(0.3); }
.wave-hero span:nth-child(2)  { animation-delay: 0.1s; }
.wave-hero span:nth-child(3)  { animation-delay: 0.2s; }
.wave-hero span:nth-child(4)  { animation-delay: 0.3s; }
.wave-hero span:nth-child(5)  { animation-delay: 0.4s; }
.wave-hero span:nth-child(6)  { animation-delay: 0.2s; }
.wave-hero span:nth-child(7)  { animation-delay: 0.1s; }
.wave-hero span:nth-child(8)  { animation-delay: 0.3s; }
.wave-hero span:nth-child(9)  { animation-delay: 0.2s; }
.wave-hero span:nth-child(10) { animation-delay: 0.4s; }
.wave-hero span:nth-child(11) { animation-delay: 0.3s; }
.wave-hero span:nth-child(12) { animation-delay: 0.2s; }
.wave-hero span:nth-child(13) { animation-delay: 0.1s; }
.wave-hero span:nth-child(14) { animation-delay: 0s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.2); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1; }
}

/* ================= CTA ================= */
.cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.cta-contact .text {
  position: relative;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
  display: block;
}

.cta-contact span {
  display: block;
  line-height: 1em;
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-contact .top    { color: white; }

.cta-contact .bottom {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #f8a82b;
}

.cta-contact:hover .top    { transform: translateY(-100%); }
.cta-contact:hover .bottom { transform: translateY(-100%); }

/* ================= INSTAGRAM BUTTON ================= */
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  margin-top: 20px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.insta-icon svg { fill: #f8a82b; }

.insta-btn .text {
  position: relative;
  overflow: hidden;
  height: 1em;
  line-height: 1em;
  display: block;
}

.insta-btn span {
  display: block;
  line-height: 1em;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.insta-btn .top { color: white; }

.insta-btn .bottom {
  position: absolute;
  top: 100%;
  left: 0;
  color: #f8a82b;
}

.insta-btn:hover               { transform: translateY(-3px); box-shadow: 0 0 20px rgba(248,168,43,0.3); }
.insta-btn:hover .top          { transform: translateY(-100%); }
.insta-btn:hover .bottom       { transform: translateY(-100%); }

/* ================= SECTIONS ================= */
section {
  padding: 120px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ================= ANIMATIONS GLOBALES ================= */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hidden { opacity: 0; transform: translateY(40px); }

.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.6s ease;
}

/* ================= PLAYER ================= */
.player {
  width: 320px;
  margin: 40px auto;
  padding: 15px;
  overflow: hidden;
  isolation: isolate;
  position: relative;
  z-index: 50;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
  transition: 0.3s;
}

.player.playing {
  box-shadow:
    0 0 20px rgba(106, 0, 255, 0.4),
    0 0 60px rgba(106, 0, 255, 0.5),
    0 0 100px rgba(106, 0, 255, 0.25);
}

.cover {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  margin: auto;
  border-radius: 15px;
  transition: 0.4s;
}

.cover.playing {
  animation: pulseCover 2s infinite;
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(138, 43, 226, 0.5);
}

@keyframes pulseCover {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.player-info h3 {
  font-size: 18px;
  letter-spacing: 2px;
}

.player-info p {
  opacity: 0.6;
  font-size: 14px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
  position: relative;
  z-index: 60;
}

.controls button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}

.controls button:hover { transform: scale(1.2); }

.btn-prev::before {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid white;
  margin-right: 4px;
}

.btn-prev::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid white;
}

.btn-next::before {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
  margin-right: 4px;
}

.btn-next::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
}

.time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.6;
}

.progress-container {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin: 10px 0;
  cursor: pointer;
}

.progress {
  height: 100%;
  width: 0%;
  background: white;
  border-radius: 10px;
}

/* WAVEFORM CANVAS */
#waveform {
  width: 100%;
  height: 48px;
  display: block;
  border-radius: 6px;
  margin: 8px 0;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

#waveform.active {
  opacity: 1;
}

/* MUSIC SECTION */
.music {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px;
}

/* Layout player + tracklist côte à côte sur desktop */
@media (min-width: 769px) {
  .music {
    align-items: stretch;
  }

  .music-player-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .music-player-layout .player {
    margin: 0;
    position: sticky;
    top: 100px;
  }

  .music-player-layout .tracklist-section {
    margin: 0;
    max-width: 100%;
  }

  .music .music-banner,
  .music .section-title,
  .music .streaming-banner,
  .music .llg-socials {
    width: 100%;
    max-width: 1100px;
  }
}

/* ================= MINI PLAYER ================= */
#miniPlayer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 10px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-radius: 0;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.5), 0 0 20px rgba(248,168,43,0.1);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 9999;
  height: 72px;
  box-sizing: border-box;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

#miniPlayer:active { cursor: grabbing; }

#miniPlayer.visible {
  transform: translateY(0) !important;
  opacity: 1;
  pointer-events: auto;
}

#miniPlayer.snap {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Desktop : padding quand mini player visible ── */
body.miniplayer-open .footer { margin-bottom: 72px; }
body.miniplayer-open #app    { padding-bottom: 72px; }

/* ── Mobile : pleine largeur collée en bas ── */
@media (max-width: 768px) {
  #miniPlayer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin: 0 !important;
    border-radius: 14px 14px 0 0 !important;
    padding: 10px 16px !important;
    padding-bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    box-sizing: border-box !important;
    transform: translateY(150%) !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    height: 64px !important;
    overflow: hidden !important;
  }

  #miniPlayer.visible {
    transform: translateY(0) !important;
  }

  #miniPlayer img {
    width: 42px !important;
    height: 42px !important;
    flex-shrink: 0 !important;
  }

  #miniPlayer .mini-info {
    flex: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
  }

  #miniPlayer .mini-info p {
    font-size: 13px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    margin: 0 !important;
  }

  #miniPlayer .mini-info span {
    font-size: 11px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  #miniPlayer .mini-controls {
    flex-shrink: 0 !important;
    gap: 0 !important;
  }

  #miniPlayer .mini-controls button {
    padding: 6px !important;
  }

  #miniPlayer .mini-controls button svg {
    width: 20px !important;
    height: 20px !important;
  }

  #miniPlayer #miniPlay svg {
    width: 24px !important;
    height: 24px !important;
  }

  body.miniplayer-open .footer {
    padding-bottom: 75px;
  }

  body.miniplayer-open #app {
    padding-bottom: 70px;
  }
}

#miniPlayer img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
}

.mini-info { flex: 1; min-width: 0; }
.mini-info p    { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.mini-info span { font-size: 12px; opacity: 0.6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }

#miniPlay span { display: flex; align-items: center; justify-content: center; }

.mini-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.mini-controls button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.mini-controls button:hover {
  background: rgba(255,255,255,0.1);
}

.mini-controls button svg {
  width: 22px;
  height: 22px;
}

#miniPlay svg {
  width: 26px;
  height: 26px;
}

/* ================= PLAYLIST ================= */
.playlist-wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.playlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 12px;
  user-select: none;
}

.track-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  transition: transform 0.35s ease, opacity 0.4s ease, box-shadow 0.35s ease;
  will-change: transform;
  transform: scale(0.85);
  opacity: 0.5;
  cursor: pointer;
}

.track-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.track-card h4 { font-size: 14px; margin: 8px 10px 2px; }
.track-card p  { font-size: 12px; opacity: 0.6; margin: 0 10px 10px; }

.track-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.track-card:hover img { transform: scale(1.08); }

.track-card.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
  box-shadow:
    0 0 0 2px rgba(248,168,43,0.6),
    0 10px 30px rgba(0,0,0,0.8),
    0 0 30px rgba(248,168,43,0.4);
}

.track-card.active img { transform: scale(1.12); }
.track-card.active p   { opacity: 1; }

/* ── Barre de recherche ── */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color 0.2s, background 0.2s;
}

.search-bar:focus-within {
  border-color: rgba(248,168,43,0.5);
  background: rgba(255,255,255,0.07);
}

.search-icon {
  width: 16px;
  height: 16px;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: color 0.2s;
}

.search-bar:focus-within .search-icon {
  color: #f8a82b;
}

#searchInput {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

#searchInput::placeholder {
  color: rgba(255,255,255,0.25);
}

#searchClear {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 0.2s;
  display: none;
}

#searchClear.visible {
  display: block;
}

#searchClear:hover {
  color: #f8a82b;
}

/* Message "aucun résultat" */
.no-results {
  text-align: center;
  padding: 40px 0;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
  letter-spacing: 0.08em;
  display: none;
}

.no-results.visible {
  display: block;
}

/* ================= TRACKLIST ================= */
.tracklist-section {
  width: 100%;
  max-width: 860px;
  margin: 10px auto 0;
}

.tracklist-header-row {
  display: grid;
  grid-template-columns: 44px 1fr 180px 52px 60px;
  gap: 8px;
  padding: 0 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
}

.tracklist-header-row span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracklist-scroll {
  height: 420px;
  overflow-y: auto;
  padding-right: 4px;
  scroll-behavior: smooth;
}

.tracklist-scroll::-webkit-scrollbar          { width: 4px; }
.tracklist-scroll::-webkit-scrollbar-track    { background: transparent; }
.tracklist-scroll::-webkit-scrollbar-thumb    { background: rgba(255,255,255,0.18); border-radius: 99px; }
.tracklist-scroll::-webkit-scrollbar-thumb:hover { background: rgba(248,168,43,0.6); }

.track-row {
  display: grid;
  grid-template-columns: 44px 1fr 180px 52px 60px;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  height: 62px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.track-row:hover          { background: rgba(255,255,255,0.05); }
.track-row.active         { background: rgba(106, 0, 255, 0.17); }
.track-row.active:hover   { background: rgba(106, 0, 255, 0.17); }

.col-num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.track-num-text {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}

.track-play-ico {
  display: none;
  width: 16px;
  height: 16px;
  color: white;
  position: absolute;
}

.track-row:hover .track-play-ico  { display: block; }
.track-row:hover .track-num-text  { display: none; }
.track-row.active .track-play-ico { display: block; color: #f8a82b; }
.track-row.active .track-num-text { display: none; }

.track-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
  position: absolute;
}

.track-bars span {
  width: 3px;
  background: #f8a82b;
  border-radius: 2px;
  animation: trackWave 1s ease-in-out infinite;
}

.track-bars span:nth-child(1) { animation-delay: 0s;   height: 6px; }
.track-bars span:nth-child(2) { animation-delay: 0.2s; height: 10px; }
.track-bars span:nth-child(3) { animation-delay: 0.1s; height: 14px; }
.track-bars span:nth-child(4) { animation-delay: 0.3s; height: 8px; }

@keyframes trackWave {
  0%, 100% { transform: scaleY(0.4); }
  50%       { transform: scaleY(1); }
}

.col-info {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.track-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}

.track-row.active .track-thumb {
  box-shadow: 0 0 12px rgba(248,168,43,0.5);
  border-color: rgba(138, 43, 226, 1);
}

.track-meta { min-width: 0; }

.track-title {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  color: rgba(138, 43, 226, 1);
  transition: color 0.2s;
}

.track-row.active .track-title { color: #FF2D7A; }

.col-artist {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.track-row:hover  .col-artist { color: rgba(255,255,255,0.7); }
.track-row.active .col-artist { color: rgba(255, 45, 122, 1); }

/* ── Colonne compteur de lectures ── */
.col-plays {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.col-plays::before {
  content: "▶";
  font-size: 8px;
  opacity: 0.5;
}

.track-row.active .col-plays { color: rgba(255,45,122,0.8); }
.track-row:hover  .col-plays { color: rgba(255,255,255,0.45); }

.col-dur {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* Forcer l'alignement gauche */
.track-title,
.track-artist-mobile,
.col-artist,
.col-info,
.track-meta,
.tracklist-header-row span {
  text-align: left;
}

.tracklist-header-row .col-dur   { text-align: right; }
.tracklist-header-row .col-plays { text-align: right; }

/* ================= STACK SECTION ================= */
.stack-section {
  position: relative;
  min-height: 200vh;
  padding-bottom: 200px;
  z-index: 1;
}

.stack-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stack-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  will-change: transform, opacity;
  width: 90%;
  max-width: 900px;
  height: 320px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border-radius: 20px;
  background: #0f0f0f;
  isolation: isolate;
  backface-visibility: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.9),
    inset 0 0 20px rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow 0.3s ease;
}

.stack-container:nth-child(even) .stack-card { flex-direction: row-reverse; }

.card-image {
  width: 45%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.card-content { width: 55%; }

.card-content h2 {
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.card-content p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ================= ARTISTES ================= */
.artists {
  padding: 120px 10%;
}

.section-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 50px;
  text-align: center;
  color: white;
}

.artists-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.artist-card {
  display: flex;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: 0.4s;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(248,168,43,0.25), transparent);
  opacity: 0;
  transition: 0.4s;
}

.artist-card:hover::before { opacity: 1; }

.artist-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.artist-img {
  width: 300px;
  min-width: 300px;
}

.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.artist-card:hover .artist-img img { transform: scale(1.05); }

.artist-info {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.artist-info h2::after {
  content: "ARTIST";
  display: inline-block;
  font-size: 10px;
  margin-left: 10px;
  padding: 3px 8px;
  border: 1px solid #f8a82b;
  border-radius: 20px;
  opacity: 0.6;
}

.artist-info p {
  line-height: 1.6;
  opacity: 0.75;
}

.artist-btn {
  margin-top: 20px;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  color: #f8a82b;
  border: 1px solid rgba(248,168,43,0.5);
  transition: 0.3s;
}

.artist-btn:hover {
  background: #f8a82b;
  color: black;
  box-shadow: 0 0 15px rgba(248,168,43,0.6);
}

/* ================= CONTACT ================= */
.contact-section {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px;
}

.contact-title    { font-size: 48px; letter-spacing: 4px; margin-bottom: 10px; }
.contact-subtitle { font-size: 14px; opacity: 0.6; margin-bottom: 40px; }

.contact-form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-family: 'Oswald', sans-serif;
  outline: none;
  resize: none;
}

.form-group label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: 0.5;
  pointer-events: none;
  transition: 0.3s;
}

.form-group textarea + label { top: 20px; transform: none; }

.form-group input:focus   + label,
.form-group input:valid   + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -8px;
  font-size: 10px;
  opacity: 1;
}

.contact-btn {
  padding: 12px;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 2px;
}

.contact-btn:hover { background: white; color: black; }

.contact-box {
  width: 100%;
  max-width: 550px;
  padding: 40px 30px;
  background: rgba(10,10,10,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 30px rgba(0,0,0,0.6),
    inset 0 0 20px rgba(255,255,255,0.02);
  transition: 0.3s;
  position: relative;
}

.contact-box:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(0,0,0,0.8),
    inset 0 0 20px rgba(255,255,255,0.03);
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, #3fccfa, transparent, #ff004c);
  opacity: 0.08;
  pointer-events: none;
}

/* ================= MENTIONS LEGALES & CONFIDENTIALITE ================= */
.legal {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  z-index: 2;
  position: relative;
}

.legal h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  letter-spacing: 4px;
}

.legal-box {
  max-width: 800px;
  width: 100%;
  padding: 40px;
  background: rgba(10,10,10,0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 40px rgba(0,0,0,0.7),
    inset 0 0 20px rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpLegal 0.8s ease forwards;
  animation-delay: 0.2s;
}

.legal-box h2 { margin-top: 25px; margin-bottom: 10px; color: #ff004c; }
.legal-box p  { opacity: 0.8; line-height: 1.6; }

@keyframes fadeUpLegal {
  to { opacity: 1; transform: translateY(0); }
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  z-index: 10;
  padding: 30px 20px;
  text-align: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.6;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover { opacity: 1; color: #ff004c; }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  header  { padding: 15px 20px; }
  .logo   { width: 100px; }
  nav     { display: none; }
  nav ul  { display: none; }
  .burger { display: flex; }

  .title { font-size: 2rem; letter-spacing: 3px; }

  .artist-card { flex-direction: column; }
  .artist-img  { width: 100%; height: 250px; }

  .playlist { grid-template-columns: repeat(2, 1fr); }
  .track-card { width: 100%; }

  .stack-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .stack-card {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    max-width: 360px;
    height: auto;
    min-height: 300px;
    flex-direction: column;
    padding: 20px;
    will-change: transform, opacity;
  }

  .stack-container:nth-child(even) .stack-card { flex-direction: column; }

  .card-image {
    width: 100%;
    height: 160px;
  }

  .card-content {
    width: 100%;
    margin-top: 12px;
  }

}

/* ── Responsive tracklist mobile ── */
@media (max-width: 600px) {

  .tracklist-header-row {
    grid-template-columns: 36px 1fr 40px 50px;
  }

  .tracklist-header-row .col-artist { display: none; }

  .track-row {
    grid-template-columns: 36px 1fr 40px 50px;
    height: auto;
    min-height: 62px;
    padding: 8px 14px;
  }

  .track-row .col-artist { display: none; }

  .track-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .track-meta .track-artist-mobile {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .track-row.active .track-meta .track-artist-mobile {
    color: rgba(248,168,43,0.7);
  }

  .tracklist-scroll { height: 360px; }

  .track-thumb { width: 38px; height: 38px; }

}

/* ================= SPA — TRANSITIONS & NAV ACTIVE ================= */

#app {
  opacity: 1;
  transition: opacity 0.2s ease;
  min-height: 100vh;
}

header .menu-item.nav-active .top  { color: #f8a82b; }
header .menu-item.nav-active:hover { text-shadow: none; }

.music {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 20px;
}

/* ================= ACTUALITES / RELEASES ================= */

.actu-section {
  padding: 120px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

/* ── Carte release ── */
.release-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.4s ease;
}

.release-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(138,43,226,0.15);
  border-color: rgba(138,43,226,0.3);
}

/* Animation d'entrée */
.hidden-card {
  opacity: 0;
  transform: translateY(30px);
}

.show-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ── Pochette ── */
.release-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.06);
}

.release-type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(138,43,226,0.85);
  color: white;
  backdrop-filter: blur(6px);
}

/* ── Infos ── */
.release-info {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.release-date {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
}

.release-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  line-height: 1.2;
}

.release-artist {
  font-size: 13px;
  color: rgba(138,43,226,0.9);
  letter-spacing: 0.05em;
}

.release-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-top: 4px;
}

/* ── Actions ── */
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.release-listen {
  background: rgba(138,43,226,0.85);
  border: none;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.release-listen:hover {
  background: rgba(138,43,226,1);
  transform: scale(1.04);
}

.release-link {
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: 99px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s;
}

.release-link:hover { border-color: rgba(255,255,255,0.4); color: white; }
.release-link--spotify:hover   { border-color: #1db954; color: #1db954; }
.release-link--sc:hover        { border-color: #ff5500; color: #ff5500; }
.release-link--yt:hover        { border-color: #ff0000; color: #ff0000; }

/* ── Responsive mobile ── */
@media (max-width: 768px) {
  .actu-section { padding: 100px 16px 80px; }
  .releases-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .releases-grid { grid-template-columns: 1fr; }
}

/* ================= MUSIC BANNER ================= */
.music-banner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto 10px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.music-banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 280px;
  border-radius: 18px;
  filter: brightness(0.9);
  transition: filter 0.4s ease;
}

.music-banner:hover .music-banner-img {
  filter: brightness(1);
}

/* Dégradé bas pour transition douce vers le contenu */
.music-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.6));
  border-radius: 0 0 18px 18px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .music-banner-img { max-height: 160px; }
  .music-banner { border-radius: 12px; }
}

/* ================= PAGE STUDIO ================= */

.studio-section {
  min-height: 100vh;
  padding: 100px 40px 100px;
  position: relative;
  z-index: 2;
}

/* ── Hero ── */
.studio-hero {
  text-align: center;
  margin-bottom: 60px;
}

.studio-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(138,43,226,0.9);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.studio-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 12px;
  color: white;
}

.studio-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
}

/* ── Layout 2 colonnes ── */
.studio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Colonne infos ── */
.studio-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.studio-info-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
}

.studio-info-block h3 {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(138,43,226,0.9);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.studio-info-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-info-block li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em;
}

.studio-info-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.studio-email {
  color: #8A2BE2;
  text-decoration: none;
  transition: color 0.2s;
}

.studio-email:hover { color: #FFA84D; }

/* ── Formulaire ── */
.studio-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.studio-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.studio-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Réutilise les styles form-group existants */
.studio-form .form-group input,
.studio-form .form-group textarea {
  width: 100%;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-family: 'Oswald', sans-serif;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
}

.studio-form .form-group input:focus,
.studio-form .form-group textarea:focus {
  border-bottom-color: rgba(138,43,226,0.8);
}

.studio-form .form-group input[type="date"] {
  color-scheme: dark;
}

.studio-select {
  width: 100%;
  padding: 12px 10px;
  background: rgba(255,255,255,0.05);
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
}

.studio-select:focus { border-bottom-color: rgba(138,43,226,0.8); }

.studio-select option {
  background: #111;
  color: white;
}

/* Bouton submit */
.studio-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(138,43,226,0.85);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.studio-submit:hover {
  background: rgba(138,43,226,1);
  transform: translateY(-2px);
}

.studio-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.studio-submit-icon {
  font-size: 18px;
  transition: transform 0.2s;
}

.studio-submit:hover .studio-submit-icon { transform: translateX(4px); }

.studio-form-note {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.05em;
}

/* Message succès */
.studio-success {
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.studio-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(138,43,226,0.2);
  border: 2px solid rgba(138,43,226,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #8A2BE2;
}

.studio-success h3 {
  font-size: 22px;
  letter-spacing: 2px;
}

.studio-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .studio-section  { padding: 100px 16px 80px; }
  .studio-layout   { grid-template-columns: 1fr; gap: 28px; }
  .studio-form-wrap { padding: 24px 16px; }
  .studio-form-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ================= EVENEMENTS ================= */

.events-section {
  padding: 100px 40px 100px;
  max-width: 1000px;
  margin: 0 auto;
}

.events-body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.events-category-title {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.events-category-title--past {
  color: rgba(255,255,255,0.2);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Card événement ── */
.event-card {
  display: flex;
  align-items: stretch;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  border-color: rgba(138,43,226,0.25);
}

.event-card--past {
  opacity: 0.45;
  filter: grayscale(30%);
}

.event-card--past:hover {
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

/* ── Bloc date ── */
.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  border-radius: 12px;
  border: 1px solid;
  padding: 12px 8px;
  text-align: center;
  flex-shrink: 0;
}

.event-day {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: white;
}

.event-month {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.event-year {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* ── Infos événement ── */
.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.event-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.event-type {
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  font-weight: 600;
}

.event-location {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.event-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  line-height: 1.2;
}

.event-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.event-ticket {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: white;
  background: rgba(138,43,226,0.7);
  padding: 8px 18px;
  border-radius: 99px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
}

.event-ticket:hover {
  background: rgba(138,43,226,1);
  transform: translateX(4px);
}

.events-empty {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 30px 0;
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .events-section { padding: 100px 16px 80px; }
  .event-card     { gap: 16px; padding: 16px; }
  .event-date-block { min-width: 58px; }
  .event-day      { font-size: 26px; }
  .event-title    { font-size: 16px; }
}

/* ================= HOME HIGHLIGHTS ================= */

.home-highlights {
  position: relative;
  z-index: 2;
  padding: 0 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ── Bouton Écouter maintenant ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.hero-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #8A2BE2, #E8347A, #FF5500);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(138,43,226,0.4);
}

.hero-listen-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(138,43,226,0.6);
}

/* ── Bannière prochain événement ── */
.next-event-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(138,43,226,0.08);
  border: 1px solid rgba(138,43,226,0.25);
  border-radius: 18px;
  padding: 24px 30px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.next-event-banner:hover {
  border-color: rgba(138,43,226,0.5);
  box-shadow: 0 0 30px rgba(138,43,226,0.15);
}

.neb-left { flex: 1; min-width: 160px; }

.neb-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(138,43,226,0.9);
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.neb-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 4px;
}

.neb-location {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* Compte à rebours */
.neb-countdown {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.neb-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 54px;
}

.neb-unit span {
  font-size: 24px;
  font-weight: 600;
  color: white;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.neb-unit small {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.neb-btn {
  background: none;
  border: 1px solid rgba(138,43,226,0.5);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 10px 18px;
  border-radius: 99px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.neb-btn:hover {
  background: rgba(138,43,226,0.2);
  border-color: rgba(138,43,226,0.8);
}

/* ── Dernières sorties ── */
.latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.latest-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.latest-more {
  font-size: 12px;
  color: rgba(138,43,226,0.8);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.latest-more:hover { color: white; }

.latest-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.latest-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.latest-card:hover {
  background: rgba(138,43,226,0.08);
  border-color: rgba(138,43,226,0.25);
  transform: translateX(4px);
}

.latest-cover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.latest-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.latest-track-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-track-artist {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.latest-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(138,43,226,0.4);
  background: rgba(138,43,226,0.1);
  color: white;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.latest-play:hover {
  background: rgba(138,43,226,0.6);
  transform: scale(1.1);
}

/* ── Stack cards glow au hover ── */
.stack-card:hover {
  box-shadow:
    0 25px 60px rgba(0,0,0,0.9),
    0 0 40px rgba(138,43,226,0.2),
    inset 0 0 20px rgba(255,255,255,0.02);
  border-color: rgba(138,43,226,0.25) !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .home-highlights  { padding: 0 16px 60px; gap: 40px; }
  .next-event-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 20px; }
  .neb-countdown    { gap: 8px; }
  .neb-unit         { min-width: 46px; padding: 8px 10px; }
  .neb-unit span    { font-size: 20px; }
  .neb-btn          { width: 100%; text-align: center; }
}

/* ================= NAV DROPDOWN ================= */

.nav-dropdown {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  list-style: none;
  padding: 6px;
  padding-top: 22px;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
  white-space: nowrap;
}

/* Pont invisible entre le lien et le sous-menu */
.nav-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 16px;
  background: transparent;
}

/* Petite flèche visible */
.nav-submenu::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(255,255,255,0.08);
}

.nav-dropdown:hover .nav-submenu {
  opacity: 1;
  pointer-events: auto;
}

.nav-submenu-item {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}

.nav-submenu-item:hover {
  background: rgba(138,43,226,0.2);
  color: white;
}

.nav-submenu-item.nav-active {
  color: #f8a82b;
}

/* ================= STREAMING BANNER ================= */
.streaming-banner {
  width: 100%;
  max-width: 860px;
  margin: 20px auto 0;
  padding: 28px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.streaming-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.streaming-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.streaming-btn {
  padding: 9px 20px;
  border-radius: 99px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.streaming-btn:hover { color: white; border-color: rgba(255,255,255,0.4); }
.streaming-btn--spotify:hover { border-color: #1db954; color: #1db954; }
.streaming-btn--apple:hover   { border-color: #fc3c44; color: #fc3c44; }
.streaming-btn--deezer:hover  { border-color: #a238ff; color: #a238ff; }
.streaming-btn--yt:hover      { border-color: #ff0000; color: #ff0000; }

@media (max-width: 768px) {
  .streaming-banner { padding: 20px 16px; }
  .streaming-text   { font-size: 12px; }
}

/* ================= LLG SOCIALS ================= */
.llg-socials {
  width: 100%;
  max-width: 860px;
  margin: 30px auto 0;
  padding: 24px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.streaming-btn--insta:hover   { border-color: #e1306c; color: #e1306c; }
.streaming-btn--snap:hover    { border-color: #fffc00; color: #fffc00; }
.streaming-btn--tiktok:hover  { border-color: #69c9d0; color: #69c9d0; }

@media (max-width: 768px) {
  .llg-socials { padding: 20px 16px; }
}

/* ================= MINI PLAYER GOTO BUTTON ================= */
#miniGoTo {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

#miniGoTo:hover {
  border-color: rgba(138,43,226,0.6);
  color: white;
}

#miniGoTo svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  #miniGoTo svg { width: 16px !important; height: 16px !important; }
}

/* ================= EMPTY STATES ================= */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.empty-state-icon {
  font-size: 48px;
  animation: emptyPulse 2s ease-in-out infinite;
}

@keyframes emptyPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.empty-state-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
}

.empty-state-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  max-width: 320px;
  line-height: 1.6;
}

.empty-state-btn {
  margin-top: 8px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: 99px;
  border: 1px solid rgba(138,43,226,0.5);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.empty-state-btn:hover {
  background: rgba(138,43,226,0.2);
  border-color: rgba(138,43,226,0.8);
}


/* ================= PAGE VIDEOS ================= */

.videos-section {
  padding: 80px 0 80px;
  max-width: 100%;
  overflow: hidden;
}

/* ── Hero VHS ── */
.videos-hero {
  position: relative;
  margin: 0 40px 60px;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(138,43,226,0.3);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videos-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(138,43,226,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,52,122,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.videos-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.15) 3px,
    rgba(0,0,0,0.15) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.videos-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.videos-rec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,50,50,0.9);
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
}

.videos-rec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3232;
  animation: recBlink 1.2s ease-in-out infinite;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.videos-hero-title {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 600;
  letter-spacing: 8px;
  color: white;
  text-shadow:
    0 0 20px rgba(138,43,226,0.8),
    0 0 60px rgba(138,43,226,0.4),
    0 0 100px rgba(138,43,226,0.2);
  animation: neonPulse 3s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes neonPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(138,43,226,0.8), 0 0 60px rgba(138,43,226,0.4); }
  50%       { text-shadow: 0 0 30px rgba(232,52,122,0.9), 0 0 80px rgba(232,52,122,0.5), 0 0 120px rgba(255,85,0,0.3); }
}

.videos-hero-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  font-family: 'Courier New', monospace;
}

.videos-tape-counter {
  font-family: 'Courier New', monospace;
  font-size: 32px;
  color: rgba(248,168,43,0.7);
  letter-spacing: 6px;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(248,168,43,0.4);
}

/* ── Stage ── */
.videos-stage {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Featured ── */
.videos-featured-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(138,43,226,0.8);
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
}

.videos-featured-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.videos-featured-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #8A2BE2, #E8347A, #FF5500);
  z-index: -1;
  animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.videos-featured-screen {
  position: relative;
  padding-bottom: 56.25%;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
}

.videos-featured-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videos-featured-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(138,43,226,0.4);
  animation: scanMove 4s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scanMove {
  0%   { top: 0%; }
  100% { top: 100%; }
}

/* ── Secondary label ── */
.videos-secondary-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Monitors ── */
.videos-monitors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.videos-monitor {
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  cursor: pointer;
  opacity: 1;
}

.videos-monitor:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
  z-index: 10;
}

.videos-monitor-screen {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(138,43,226,0.2),
    0 10px 30px rgba(0,0,0,0.6);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.videos-monitor:hover .videos-monitor-screen {
  border-color: rgba(138,43,226,0.5);
  box-shadow:
    0 0 0 1px rgba(138,43,226,0.5),
    0 0 30px rgba(138,43,226,0.2),
    0 16px 40px rgba(0,0,0,0.8);
}

.videos-monitor-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videos-monitor-base {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 0 6px 6px;
  margin: 0 10%;
}

/* ── Channel strip ── */
.videos-channel-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.videos-channel-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
}

.videos-yt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 99px;
  background: rgba(255,0,0,0.12);
  border: 1px solid rgba(255,50,50,0.35);
  color: rgba(255,255,255,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.videos-yt-btn:hover {
  background: rgba(255,0,0,0.25);
  border-color: rgba(255,50,50,0.7);
  color: white;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .videos-monitors { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .videos-hero    { margin: 0 16px 40px; }
  .videos-stage   { padding: 0 16px; gap: 40px; }
  .videos-channel-strip { padding: 30px 16px 0; }
  .videos-monitors { grid-template-columns: 1fr; gap: 20px; }
  .videos-monitor { transform: rotate(0deg) !important; }
  .videos-hero-title { font-size: 36px; }
}



/* ================= NEWSLETTER POPUP ================= */

#newsletterOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 99990;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#newsletterOverlay.nl-visible { opacity: 1; }

#newsletterPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  width: 90%;
  max-width: 420px;
  background: #0f0f0f;
  border: 1px solid rgba(138,43,226,0.3);
  border-radius: 20px;
  padding: 40px 32px 32px;
  z-index: 99991;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 0 60px rgba(138,43,226,0.2), 0 20px 60px rgba(0,0,0,0.8);
}

#newsletterPopup.nl-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

#newsletterClose {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

#newsletterClose:hover { color: white; }

.nl-icon {
  font-size: 36px;
  margin-bottom: 14px;
  animation: heroIconFloat 3s ease-in-out infinite;
}

.nl-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: white;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(138,43,226,0.6);
}

.nl-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.nl-input-wrap {
  margin-bottom: 14px;
}

.nl-input-wrap input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.nl-input-wrap input:focus {
  border-color: rgba(138,43,226,0.6);
}

.nl-input-wrap input::placeholder {
  color: rgba(255,255,255,0.25);
}

.nl-rgpd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 20px;
  cursor: pointer;
}

.nl-rgpd input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #8A2BE2;
  cursor: pointer;
}

.nl-rgpd span {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.nl-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #8A2BE2, #E8347A);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}

.nl-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.nl-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.nl-message {
  font-size: 12px;
  margin-top: 10px;
  min-height: 16px;
}

.nl-success {
  padding: 20px 0;
}

.nl-success-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(138,43,226,0.2);
  border: 2px solid rgba(138,43,226,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #8A2BE2;
  margin: 0 auto 14px;
}

.nl-success p {
  font-size: 14px;
  letter-spacing: 1px;
  color: white;
}



/* ================= PLAYER SHARE BUTTON ================= */

.player-share-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.player-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: none;
  border: 1px solid rgba(138,43,226,0.35);
  border-radius: 99px;
  color: rgba(255,255,255,0.6);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.player-share-btn:hover {
  border-color: rgba(138,43,226,0.7);
  color: white;
  background: rgba(138,43,226,0.1);
}

/* ── Share Panel ── */
.share-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.share-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.share-panel--visible .share-panel-overlay { opacity: 1; }

.share-panel-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: #111;
  border: 1px solid rgba(138,43,226,0.25);
  border-radius: 20px 20px 0 0;
  padding: 28px 24px 40px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.share-panel--visible .share-panel-box { transform: translateY(0); }

.share-panel-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.share-panel-close:hover { color: white; }

.share-panel-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 6px;
}

.share-panel-track {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-align: center;
  margin-bottom: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-panel-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  border: none;
  color: white;
}

.share-link:hover { opacity: 0.85; transform: translateY(-1px); }

.share-link svg { width: 18px; height: 18px; flex-shrink: 0; }

.share-link--wa   { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; }
.share-link--fb   { background: rgba(24,119,242,0.15); border: 1px solid rgba(24,119,242,0.3); color: #1877f2; }
.share-link--tw   { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: white; }
.share-link--copy { background: rgba(138,43,226,0.12); border: 1px solid rgba(138,43,226,0.3); color: rgba(138,43,226,0.9); }
.share-link--copy.share-link--copied { background: rgba(29,185,84,0.12); border-color: rgba(29,185,84,0.3); color: #1db954; }

.share-panel-url {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  letter-spacing: 0.05em;
  word-break: break-all;
  font-family: 'Courier New', monospace;
}

@media (max-width: 480px) {
  .share-panel-links { grid-template-columns: 1fr 1fr; }
}

/* ================= MINI PLAYER SHARE BUTTON ================= */
#miniShareBtn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  transition: color 0.2s, background 0.2s;
}

#miniShareBtn:hover {
  color: white;
  background: rgba(138,43,226,0.15);
}

/* ================= PAGE PLAYER SPA ================= */

.player-spa-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 100px;
}

.player-spa-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(40px) brightness(0.2) saturate(1.5);
  transform: scale(1.1);
  z-index: 0;
  transition: background-image 0.5s ease;
}

.player-spa-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* Pochette */
.player-spa-cover-wrap { margin-bottom: 20px; }

.player-spa-cover {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

.player-spa-cover--playing {
  animation: coverPulseSpa 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(138,43,226,0.5), 0 20px 60px rgba(138,43,226,0.3);
}

@keyframes coverPulseSpa {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.03); }
}

/* Infos */
.player-spa-info {
  text-align: center;
  margin-bottom: 16px;
}

.player-spa-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 6px;
}

.player-spa-artist {
  font-size: 13px;
  color: rgba(138,43,226,0.9);
  letter-spacing: 1px;
}

/* Progress */
.player-spa-progress-wrap { width: 100%; margin-bottom: 8px; }

.player-spa-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  cursor: pointer;
}

.player-spa-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #8A2BE2, #E8347A);
  border-radius: 99px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.player-spa-times {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
  font-weight: 300;
}

/* Controls */
.player-spa-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 16px 0;
}

.player-spa-btn-prev,
.player-spa-btn-next {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s, transform 0.2s;
}

.player-spa-btn-prev:hover,
.player-spa-btn-next:hover { color: white; transform: scale(1.1); }

.player-spa-btn-prev svg,
.player-spa-btn-next svg { width: 26px; height: 26px; }

.player-spa-btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8A2BE2, #E8347A);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(138,43,226,0.5);
  transition: transform 0.2s;
}

.player-spa-btn-play:hover { transform: scale(1.06); }
.player-spa-btn-play svg  { width: 26px; height: 26px; }

/* Waveform */
.player-spa-wave {
  width: 100%;
  height: 40px;
  border-radius: 6px;
  margin: 8px 0;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.player-spa-wave.active { opacity: 1; }

/* Volume */
.player-spa-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}

.player-spa-volume input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  outline: none;
}

.player-spa-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

/* Dots */
.player-spa-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  max-width: 280px;
}

.player-spa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.player-spa-dot--active {
  background: linear-gradient(135deg, #8A2BE2, #E8347A);
  transform: scale(1.3);
}

/* Share + CTA */
.player-spa-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: none;
  border: 1px solid rgba(138,43,226,0.4);
  border-radius: 99px;
  color: rgba(255,255,255,0.6);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-bottom: 12px;
}

.player-spa-share:hover {
  border-color: rgba(138,43,226,0.8);
  color: white;
  background: rgba(138,43,226,0.1);
}

.player-spa-tracklist {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.player-spa-tracklist:hover { color: rgba(255,255,255,0.7); }

/* ================= EVENT CARD ENRICHIE ================= */

.event-card-rich {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.event-card-rich:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(138,43,226,0.1);
  border-color: rgba(138,43,226,0.2);
}

.event-card-rich--past {
  opacity: 0.45;
  filter: grayscale(30%);
}

.event-card-rich--past:hover {
  opacity: 0.65;
  transform: none;
  box-shadow: none;
}

/* ── Header ── */


.event-rich-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  border-radius: 12px;
  border: 1px solid;
  padding: 12px 8px;
  text-align: center;
  flex-shrink: 0;
}

.event-rich-day   { font-size: 30px; font-weight: 600; color: white; line-height: 1; }
.event-rich-month { font-size: 11px; letter-spacing: 0.15em; color: rgba(255,255,255,0.6); margin-top: 3px; }
.event-rich-year  { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 2px; }

.event-rich-header-info { flex: 1; min-width: 0; }

.event-rich-type {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-rich-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Meta infos ── */
.event-rich-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.event-rich-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  padding-right: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
}

.event-rich-meta-icon { font-size: 14px; flex-shrink: 0; }

/* ── Description ── */
.event-rich-desc {
  padding: 14px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Artistes ── */
.event-rich-artistes {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.event-rich-artistes-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-rich-artistes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-rich-artiste {
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(138,43,226,0.12);
  border: 1px solid rgba(138,43,226,0.25);
  color: rgba(138,43,226,0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* ── Footer ── */
.event-rich-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  margin-top: auto;
  flex-wrap: wrap;
}

.event-rich-ticket {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1px solid;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.event-rich-ticket:hover { opacity: 0.8; transform: translateX(3px); }

.event-rich-maps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.event-rich-maps:hover { border-color: rgba(255,255,255,0.3); color: white; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .event-rich-poster { width: 120px; min-width: 120px; }
  .event-rich-top-row { padding: 14px 14px 12px; gap: 12px; }
  .event-rich-date   { min-width: 56px; }
  .event-rich-day    { font-size: 24px; }
  .event-rich-title  { font-size: 16px; }
  .event-rich-meta, .event-rich-desc, .event-rich-artistes, .event-rich-footer { padding-left: 14px; padding-right: 14px; }
  .event-rich-meta   { flex-direction: column; gap: 0; }
  .event-rich-meta-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

/* ── Layout image + details ── */
.event-rich-layout {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Colonne affiche */
.event-rich-poster {
  position: relative;
  width: 160px;
  min-width: 160px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
}

.event-rich-poster img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.event-rich-poster-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.event-rich-poster-overlay span {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0,0,0,0.5);
  padding: 6px 12px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
}

.event-rich-poster:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.event-rich-poster:hover .event-rich-poster-overlay { background: rgba(0,0,0,0.2); }
.event-rich-poster:hover .event-rich-poster-overlay span { opacity: 1; }

/* Colonne details */
.event-rich-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.event-rich-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ── Lightbox ── */
.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-lightbox.visible { opacity: 1; }

.event-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.event-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.9);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.event-lightbox.visible .event-lightbox-img { transform: scale(1); }

.event-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.event-lightbox-close:hover { color: white; }



/* ================= STUDIO PRICING ================= */

.studio-pricing-section {
  max-width: 960px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.studio-pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 20px;
  overflow: hidden;
}

/* ── Header ── */
.spc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(138,43,226,0.12), rgba(232,52,122,0.06));
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.spc-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 4px;
}

.spc-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.spc-member-badge {
  padding: 8px 16px;
  background: rgba(248,168,43,0.12);
  border: 1px solid rgba(248,168,43,0.35);
  border-radius: 99px;
  font-size: 12px;
  color: rgba(248,168,43,0.9);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── Body 2 col ── */
.spc-body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.spc-divider {
  background: rgba(255,255,255,0.06);
  width: 1px;
}

.spc-col {
  padding: 28px 32px;
}

.spc-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Rows ── */
.spc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}

.spc-row:last-of-type { border-bottom: none; }

.spc-row--highlight {
  background: rgba(232,52,122,0.05);
  margin: 0 -12px;
  padding: 12px 12px;
  border-radius: 10px;
  border-bottom: none !important;
}

.spc-row-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.spc-row-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.spc-row-name {
  display: block;
  font-size: 14px;
  color: white;
  letter-spacing: 0.05em;
}

.spc-row-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 2px;
}

.spc-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.spc-price {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.spc-price small {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-left: 2px;
}

.spc-member-price {
  font-size: 13px;
  color: rgba(248,168,43,0.7);
  font-weight: 600;
}

.spc-member-price small {
  font-size: 10px;
  color: rgba(248,168,43,0.5);
  font-weight: 300;
}

/* ── Formules ── */
.spc-formule {
  background: rgba(138,43,226,0.06);
  border: 1px solid rgba(138,43,226,0.15);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.spc-formule:hover {
  border-color: rgba(138,43,226,0.4);
  transform: translateY(-2px);
}

.spc-formule--gold {
  background: rgba(248,168,43,0.06);
  border-color: rgba(248,168,43,0.2);
}

.spc-formule--gold:hover { border-color: rgba(248,168,43,0.5); }

.spc-formule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.spc-formule-badge {
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(138,43,226,0.2);
  border: 1px solid rgba(138,43,226,0.4);
  color: rgba(138,43,226,0.9);
}

.spc-formule-badge--gold {
  background: rgba(248,168,43,0.15);
  border-color: rgba(248,168,43,0.4);
  color: rgba(248,168,43,0.9);
}

.spc-formule-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.spc-formule-old {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
}

.spc-formule-price {
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.spc-formule-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.spc-formule-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.spc-formule-member {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(248,168,43,0.7);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.spc-member-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background: rgba(248,168,43,0.1);
  border: 1px solid rgba(248,168,43,0.25);
  border-radius: 99px;
  color: rgba(248,168,43,0.8);
}

.spc-member-tag--gold { /* same style */ }

.spc-formule-note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .studio-pricing-section { padding: 0 16px; }
  .spc-body { grid-template-columns: 1fr; }
  .spc-divider { width: 100%; height: 1px; }
  .spc-col { padding: 20px 20px; }
  .spc-header { padding: 18px 20px; }
}

/* ================= STUDIO CALENDAR ================= */

.studio-calendar-section {
  max-width: 960px;
  margin: 50px auto 0;
  padding: 0 40px;
}

.studio-calendar-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 6px;
}

.studio-calendar-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ── Calendrier mensuel ── */
.studio-cal-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.studio-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.studio-cal-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.2s;
}

.studio-cal-nav button:hover { border-color: rgba(138,43,226,0.5); }

#studioCalMonth {
  font-size: 15px;
  letter-spacing: 2px;
  color: white;
}

.studio-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.studio-cal-dayname {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  padding: 4px 0 8px;
}

.studio-cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  transition: transform 0.15s, box-shadow 0.15s;
}

.studio-cal-day--empty    { background: transparent; }

.studio-cal-day--free {
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.2);
  color: rgba(29,185,84,0.8);
  cursor: pointer;
}

.studio-cal-day--free:hover {
  transform: scale(1.1);
  border-color: rgba(29,185,84,0.5);
  box-shadow: 0 0 10px rgba(29,185,84,0.2);
}

.studio-cal-day--partial {
  background: rgba(248,168,43,0.1);
  border: 1px solid rgba(248,168,43,0.25);
  color: rgba(248,168,43,0.8);
  cursor: pointer;
}

.studio-cal-day--partial:hover {
  transform: scale(1.1);
  border-color: rgba(248,168,43,0.5);
}

.studio-cal-day--occupied {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.15);
  color: rgba(255,80,80,0.4);
}

.studio-cal-day--past {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.12);
}

.studio-cal-day--today {
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  font-weight: 600;
}

.studio-cal-day--selected {
  background: rgba(138,43,226,0.25) !important;
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(138,43,226,0.3);
}

/* Légende */
.studio-cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.studio-cal-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.studio-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.studio-cal-dot--free     { background: rgba(29,185,84,0.4); }
.studio-cal-dot--partial  { background: rgba(248,168,43,0.4); }
.studio-cal-dot--occupied { background: rgba(255,80,80,0.4); }

/* ── Vue créneaux horaires ── */
.studio-slots-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  animation: fadeInUp 0.3s ease;
}

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

.studio-slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#studioSlotsDate {
  font-size: 15px;
  letter-spacing: 1px;
  color: white;
  text-transform: capitalize;
}

.studio-slots-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.studio-slots-close:hover { color: white; }

/* Durée */
.studio-slots-duration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.studio-slots-duration-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.studio-slots-duration-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dur-btn {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}

.dur-btn:hover { border-color: rgba(138,43,226,0.5); color: white; }

.dur-btn.active {
  background: rgba(138,43,226,0.2);
  border-color: rgba(138,43,226,0.6);
  color: white;
}

/* Grille créneaux */
.studio-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.slot {
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.slot-time  { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
.slot-label { font-size: 10px; letter-spacing: 0.1em; opacity: 0.7; }

.slot--free {
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.25);
  color: rgba(29,185,84,0.9);
  cursor: pointer;
}

.slot--free:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29,185,84,0.15);
  border-color: rgba(29,185,84,0.5);
}

.slot--selected {
  background: rgba(138,43,226,0.2) !important;
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  box-shadow: 0 0 16px rgba(138,43,226,0.25);
}

.slot--occupied {
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.15);
  color: rgba(255,80,80,0.4);
  cursor: not-allowed;
}

.slot--impossible {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
}

/* Champ créneau horaire en readonly */
input[name="studio_time"] {
  background: rgba(138,43,226,0.06) !important;
  border-color: rgba(138,43,226,0.2) !important;
  cursor: default !important;
}

@media (max-width: 768px) {
  .studio-calendar-section { padding: 0 16px; }
  .studio-cal-day { font-size: 11px; }
  .studio-slots-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .studio-slots-duration { flex-direction: column; align-items: flex-start; }
}

/* ================= STUDIO PRICING ================= */

.studio-pricing-section {
  max-width: 960px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.studio-pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 20px;
  overflow: hidden;
}

/* ── Header ── */
.spc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(138,43,226,0.12), rgba(232,52,122,0.06));
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
  gap: 12px;
}

.spc-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 4px;
}

.spc-legal {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.05em;
}

.spc-member-badge {
  padding: 8px 16px;
  background: rgba(248,168,43,0.12);
  border: 1px solid rgba(248,168,43,0.35);
  border-radius: 99px;
  font-size: 12px;
  color: rgba(248,168,43,0.9);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── Body 2 col ── */
.spc-body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
}

.spc-divider {
  background: rgba(255,255,255,0.06);
  width: 1px;
}

.spc-col {
  padding: 28px 32px;
}

.spc-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Rows ── */
.spc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 10px;
}

.spc-row:last-of-type { border-bottom: none; }

.spc-row--highlight {
  background: rgba(232,52,122,0.05);
  margin: 0 -12px;
  padding: 12px 12px;
  border-radius: 10px;
  border-bottom: none !important;
}

.spc-row-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.spc-row-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }

.spc-row-name {
  display: block;
  font-size: 14px;
  color: white;
  letter-spacing: 0.05em;
}

.spc-row-sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  margin-top: 2px;
}

.spc-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.spc-price {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.spc-price small {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-left: 2px;
}

.spc-member-price {
  font-size: 13px;
  color: rgba(248,168,43,0.7);
  font-weight: 600;
}

.spc-member-price small {
  font-size: 10px;
  color: rgba(248,168,43,0.5);
  font-weight: 300;
}

/* ── Formules ── */
.spc-formule {
  background: rgba(138,43,226,0.06);
  border: 1px solid rgba(138,43,226,0.15);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s, transform 0.2s;
}

.spc-formule:hover {
  border-color: rgba(138,43,226,0.4);
  transform: translateY(-2px);
}

.spc-formule--gold {
  background: rgba(248,168,43,0.06);
  border-color: rgba(248,168,43,0.2);
}

.spc-formule--gold:hover { border-color: rgba(248,168,43,0.5); }

.spc-formule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.spc-formule-badge {
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(138,43,226,0.2);
  border: 1px solid rgba(138,43,226,0.4);
  color: rgba(138,43,226,0.9);
}

.spc-formule-badge--gold {
  background: rgba(248,168,43,0.15);
  border-color: rgba(248,168,43,0.4);
  color: rgba(248,168,43,0.9);
}

.spc-formule-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.spc-formule-old {
  font-size: 14px;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
}

.spc-formule-price {
  font-size: 28px;
  font-weight: 600;
  color: white;
}

.spc-formule-name {
  font-size: 15px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.spc-formule-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.spc-formule-member {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(248,168,43,0.7);
  font-weight: 600;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.spc-member-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background: rgba(248,168,43,0.1);
  border: 1px solid rgba(248,168,43,0.25);
  border-radius: 99px;
  color: rgba(248,168,43,0.8);
}

.spc-member-tag--gold { /* same style */ }

.spc-formule-note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .studio-pricing-section { padding: 0 16px; }
  .spc-body { grid-template-columns: 1fr; }
  .spc-divider { width: 100%; height: 1px; }
  .spc-col { padding: 20px 20px; }
  .spc-header { padding: 18px 20px; }
}

/* ================= STUDIO CALENDAR ================= */

.studio-calendar-section {
  max-width: 960px;
  margin: 50px auto 0;
  padding: 0 40px;
}

.studio-calendar-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 6px;
}

.studio-calendar-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

/* ── Calendrier mensuel ── */
.studio-cal-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.studio-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.studio-cal-nav button {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.2s;
}

.studio-cal-nav button:hover { border-color: rgba(138,43,226,0.5); }

#studioCalMonth {
  font-size: 15px;
  letter-spacing: 2px;
  color: white;
}

.studio-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.studio-cal-dayname {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  padding: 4px 0 8px;
}

.studio-cal-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  transition: transform 0.15s, box-shadow 0.15s;
}

.studio-cal-day--empty    { background: transparent; }

.studio-cal-day--free {
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.2);
  color: rgba(29,185,84,0.8);
  cursor: pointer;
}

.studio-cal-day--free:hover {
  transform: scale(1.1);
  border-color: rgba(29,185,84,0.5);
  box-shadow: 0 0 10px rgba(29,185,84,0.2);
}

.studio-cal-day--partial {
  background: rgba(248,168,43,0.1);
  border: 1px solid rgba(248,168,43,0.25);
  color: rgba(248,168,43,0.8);
  cursor: pointer;
}

.studio-cal-day--partial:hover {
  transform: scale(1.1);
  border-color: rgba(248,168,43,0.5);
}

.studio-cal-day--occupied {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.15);
  color: rgba(255,80,80,0.4);
}

.studio-cal-day--past {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.12);
}

.studio-cal-day--today {
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  font-weight: 600;
}

.studio-cal-day--selected {
  background: rgba(138,43,226,0.25) !important;
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  transform: scale(1.1);
  box-shadow: 0 0 14px rgba(138,43,226,0.3);
}

/* Légende */
.studio-cal-legend {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.studio-cal-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

.studio-cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}

.studio-cal-dot--free     { background: rgba(29,185,84,0.4); }
.studio-cal-dot--partial  { background: rgba(248,168,43,0.4); }
.studio-cal-dot--occupied { background: rgba(255,80,80,0.4); }

/* ── Vue créneaux horaires ── */
.studio-slots-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 30px;
  animation: fadeInUp 0.3s ease;
}

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

.studio-slots-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#studioSlotsDate {
  font-size: 15px;
  letter-spacing: 1px;
  color: white;
  text-transform: capitalize;
}

.studio-slots-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.studio-slots-close:hover { color: white; }

/* Durée */
.studio-slots-duration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.studio-slots-duration-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.studio-slots-duration-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dur-btn {
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.12);
  background: none;
  color: rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
}

.dur-btn:hover { border-color: rgba(138,43,226,0.5); color: white; }

.dur-btn.active {
  background: rgba(138,43,226,0.2);
  border-color: rgba(138,43,226,0.6);
  color: white;
}

/* Grille créneaux */
.studio-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}

.slot {
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.slot-time  { font-size: 13px; font-weight: 600; letter-spacing: 0.05em; }
.slot-label { font-size: 10px; letter-spacing: 0.1em; opacity: 0.7; }

.slot--free {
  background: rgba(29,185,84,0.1);
  border: 1px solid rgba(29,185,84,0.25);
  color: rgba(29,185,84,0.9);
  cursor: pointer;
}

.slot--free:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29,185,84,0.15);
  border-color: rgba(29,185,84,0.5);
}

.slot--selected {
  background: rgba(138,43,226,0.2) !important;
  border-color: rgba(138,43,226,0.6) !important;
  color: white !important;
  box-shadow: 0 0 16px rgba(138,43,226,0.25);
}

.slot--occupied {
  background: rgba(255,80,80,0.06);
  border: 1px solid rgba(255,80,80,0.15);
  color: rgba(255,80,80,0.4);
  cursor: not-allowed;
}

.slot--impossible {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.15);
  cursor: not-allowed;
}

/* Champ créneau horaire en readonly */
input[name="studio_time"] {
  background: rgba(138,43,226,0.06) !important;
  border-color: rgba(138,43,226,0.2) !important;
  cursor: default !important;
}

@media (max-width: 768px) {
  .studio-calendar-section { padding: 0 16px; }
  .studio-cal-day { font-size: 11px; }
  .studio-slots-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .studio-slots-duration { flex-direction: column; align-items: flex-start; }
}

/* ================= STUDIO PRICING ================= */

.studio-pricing-section {
  max-width: 960px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.studio-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.studio-pricing-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 4px;
  color: white;
  margin-bottom: 8px;
}

.studio-pricing-note {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-family: 'Courier New', monospace;
}

.studio-pricing-member-badge {
  display: inline-block;
  padding: 7px 18px;
  background: linear-gradient(135deg, rgba(248,168,43,0.15), rgba(248,168,43,0.08));
  border: 1px solid rgba(248,168,43,0.35);
  border-radius: 99px;
  font-size: 12px;
  color: rgba(248,168,43,0.9);
  letter-spacing: 0.05em;
}

/* ── Cards ── */
.studio-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(138,43,226,0.3);
  transform: translateY(-3px);
}

.pricing-card--highlight {
  border-color: rgba(232,52,122,0.3);
  background: rgba(232,52,122,0.05);
}

.pricing-card-icon { font-size: 24px; }

.pricing-card-title {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-amount {
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.pricing-unit {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.pricing-saving {
  font-size: 11px;
  color: rgba(29,185,84,0.8);
  letter-spacing: 0.05em;
}

.pricing-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.pricing-member {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pricing-member-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  background: rgba(248,168,43,0.12);
  border: 1px solid rgba(248,168,43,0.25);
  border-radius: 99px;
  color: rgba(248,168,43,0.8);
}

.pricing-member-price {
  font-size: 14px;
  color: rgba(248,168,43,0.7);
  font-weight: 600;
}

/* ── Formules ── */
.studio-formules { margin-bottom: 24px; }

.studio-formules-title {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 16px;
}

.studio-formules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.formule-card {
  background: rgba(138,43,226,0.06);
  border: 1px solid rgba(138,43,226,0.2);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.formule-card:hover {
  border-color: rgba(138,43,226,0.5);
  transform: translateY(-3px);
}

.formule-card--gold {
  background: rgba(248,168,43,0.06);
  border-color: rgba(248,168,43,0.2);
}

.formule-card--gold:hover { border-color: rgba(248,168,43,0.5); }

.formule-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(138,43,226,0.2);
  border: 1px solid rgba(138,43,226,0.4);
  color: rgba(138,43,226,0.9);
  margin-bottom: 12px;
}

.formule-badge--gold {
  background: rgba(248,168,43,0.15);
  border-color: rgba(248,168,43,0.4);
  color: rgba(248,168,43,0.9);
}

.formule-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 6px;
}

.formule-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  line-height: 1.5;
}

.formule-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.formule-old {
  font-size: 16px;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
}

.formule-price {
  font-size: 36px;
  font-weight: 600;
  color: white;
}

.formule-saving {
  font-size: 11px;
  color: rgba(29,185,84,0.8);
  letter-spacing: 0.05em;
}

.studio-pricing-footer {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .studio-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .studio-pricing-section { padding: 0 16px; }
  .studio-pricing-grid  { grid-template-columns: 1fr; }
  .studio-formules-grid { grid-template-columns: 1fr; }
}

/* ================= HOME PAGE REFONTE ================= */

.home-section { padding: 0; }

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(138,43,226,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(232,52,122,0.08) 0%, transparent 50%);
}

.home-hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 700px;
}

.home-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  font-family: 'Courier New', monospace;
  margin-bottom: 24px;
}

.home-hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(138,43,226,0.9);
  animation: recBlink 1.5s ease-in-out infinite;
}

.home-hero-title {
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 600;
  letter-spacing: 6px;
  line-height: 0.95;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(138,43,226,0.3);
}

.home-hero-title--accent {
  background: linear-gradient(135deg, #8A2BE2, #E8347A, #FF5500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-tagline {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.home-hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.home-hero-cta {
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}

.home-hero-cta:first-child {
  background: linear-gradient(135deg, #8A2BE2, #E8347A);
  color: white;
  box-shadow: 0 0 30px rgba(138,43,226,0.4);
}

.home-hero-cta:first-child:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(138,43,226,0.6);
}

.home-hero-cta--outline {
  background: none;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.home-hero-cta--outline:hover {
  border-color: rgba(138,43,226,0.5) !important;
  color: white;
  background: rgba(138,43,226,0.08);
}

.home-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.3;
  animation: fadeInUp 2s ease 1s both;
}

.home-hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: white;
}

.home-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, white, transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.5); opacity: 0.3; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 0.3; transform: translateX(-50%) translateY(0); }
}

/* ── Compte à rebours ── */
.home-event-banner {
  background: linear-gradient(135deg, rgba(138,43,226,0.12), rgba(232,52,122,0.08));
  border-top: 1px solid rgba(138,43,226,0.2);
  border-bottom: 1px solid rgba(138,43,226,0.2);
  padding: 32px 40px;
}

.home-event-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home-event-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(138,43,226,0.8);
  display: block;
  margin-bottom: 6px;
  font-family: 'Courier New', monospace;
}

.home-event-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 3px;
  color: white;
  margin-bottom: 4px;
}

.home-event-location {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.home-event-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-cd-unit {
  text-align: center;
  min-width: 56px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 8px;
}

.home-cd-unit span {
  display: block;
  font-size: 28px;
  font-weight: 600;
  color: white;
  line-height: 1;
  font-family: 'Courier New', monospace;
}

.home-cd-unit small {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  display: block;
}

.home-cd-sep {
  font-size: 22px;
  color: rgba(138,43,226,0.6);
  padding: 0 2px;
  margin-bottom: 16px;
}

.home-event-btn {
  padding: 12px 22px;
  background: rgba(138,43,226,0.15);
  border: 1px solid rgba(138,43,226,0.4);
  border-radius: 50px;
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.home-event-btn:hover {
  background: rgba(138,43,226,0.3);
  border-color: rgba(138,43,226,0.7);
}

/* ── Dernières sorties ── */
.home-releases {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 40px;
}

.home-releases-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.home-releases-title {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
}

.home-releases-more {
  background: none;
  border: none;
  color: rgba(138,43,226,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.2s;
}

.home-releases-more:hover { color: white; }

.home-releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-release-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.home-release-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138,43,226,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.home-release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.home-release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-release-card:hover .home-release-cover img { transform: scale(1.05); }

.home-release-play {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.home-release-card:hover .home-release-play { opacity: 1; }

.home-release-info {
  padding: 14px 16px;
}

.home-release-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-release-artist {
  display: block;
  font-size: 12px;
  color: rgba(138,43,226,0.8);
  letter-spacing: 0.05em;
}

/* ── 4 Piliers ── */
.home-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

.home-pillar {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s;
  text-decoration: none;
  display: block;
}

.home-pillar:last-child { border-right: none; }

.home-pillar--visible {
  opacity: 1;
  transform: translateY(0);
}

.home-pillar:nth-child(1) { transition-delay: 0s; }
.home-pillar:nth-child(2) { transition-delay: 0.1s; }
.home-pillar:nth-child(3) { transition-delay: 0.2s; }
.home-pillar:nth-child(4) { transition-delay: 0.3s; }

.home-pillar:hover { background: rgba(138,43,226,0.06); }

.home-pillar-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}

.home-pillar-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 8px;
}

.home-pillar-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.home-pillar-arrow {
  font-size: 14px;
  color: rgba(138,43,226,0.6);
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

.home-pillar:hover .home-pillar-arrow {
  transform: translateX(4px);
  color: rgba(138,43,226,0.9);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .home-pillars { grid-template-columns: repeat(2, 1fr); }
  .home-pillar:nth-child(2) { border-right: none; }
  .home-pillar:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.06); }
  .home-pillar:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.06); }
  .home-releases-grid { grid-template-columns: repeat(2, 1fr); }
  .home-releases-grid .home-release-card:last-child { display: none; }
}

@media (max-width: 600px) {
  .home-hero-title  { letter-spacing: 3px; }
  .home-event-inner { flex-direction: column; align-items: flex-start; }
  .home-event-countdown { width: 100%; justify-content: center; }
  .home-releases { padding: 0 16px; }
  .home-releases-grid { grid-template-columns: 1fr; }
  .home-releases-grid .home-release-card:last-child { display: block; }
  .home-pillars { grid-template-columns: 1fr 1fr; }
  .home-pillar { padding: 24px 16px; }
}