/* VARIABLES CSS GLOBALES */
/* Modifier ces variables changera automatiquement la couleur de fond principale et les couleurs des boutons play */
:root {
  --primary-bg-color: #181828;      /* Couleur de fond principale des cartes */
  --primary-accent-color: #FD00DD;  /* Couleur d'accent principale */
  --secondary-bg-color: #2a2a3a;    /* Couleur de fond secondaire */
  --text-color: #ffffff;            /* Couleur du texte */
  --hover-opacity: 0.8;             /* Opacité au survol */
  --shadow-color: #FD00DD;          /* Couleur des ombres */
  --shadow-opacity: 0.4;            /* Opacité des ombres */
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('../images/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 0;
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInNav 1s ease forwards;
  animation-delay: 0.3s;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
}

.logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

/* GLASS CARD */
.glass-card {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem;
  max-width: 800px;
  margin: 180px auto 0 auto;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.about-card {
  margin-top: 60px;
  margin-bottom: 100px;
}




/* DEMO BUTTON */
.demo-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 2rem;
  padding: 14px 30px;
  background-color: white;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  height: 52px;
  width: 220px;
}

.text {
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.icon {
  position: absolute;
  width: 22px;
  height: 22px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: inherit;
}

.demo-btn:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}

.demo-btn:hover .text {
  opacity: 0;
  transform: translateX(-50%) translateY(-10px);
}

.demo-btn:hover .icon {
  opacity: 1;
  transform: scale(1);
}

.demo-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
}

.demo-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.demo-btn:hover::after {
  left: 100%;
}


/* MAIN PAGE (RELEASES) */
.releases-page {
  padding-top: 100px;
  padding-bottom: 160px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.releases-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.release {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease;
}

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

.release {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.release:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.releases-container {
  perspective: 1000px;
}


.release {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-origin: center;
}

.release:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.release::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.release:hover::before {
  opacity: 1;
}

.release .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-accent-color);
  padding: 0.8rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.release:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.release .play-btn img {
  width: 20px;
  height: 20px;
}

.release {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.release img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}





/* PLAYER */
.custom-player {
  position: fixed;
  bottom: 30px;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  z-index: 1000;
}

.glass-player {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 280px;
  max-width: 700px;
  width: 90%;
}

.track-info {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Centrage des boutons + volume à droite */
.player-controls {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.6rem;
  position: relative;
}

.player-center-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.player-center-controls button {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-center-controls button img {
  width: 20px;
  height: 20px;
}

/* Inline SVG controls */
.player-center-controls svg,
.player-volume-wrapper svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Normalize strokes to currentColor for icons */
.player-center-controls svg *,
.player-volume-wrapper svg * {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Icon buttons look */
.player-center-controls button {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.player-center-controls button:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.player-center-controls button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.player-center-controls button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

/* Play/Pause toggle */
#pausePlay .icon-play { display: inline-block; }
#pausePlay .icon-pause { display: none; }
#pausePlay[data-playing="true"] .icon-play { display: none; }
#pausePlay[data-playing="true"] .icon-pause { display: inline-block; }

/* Auto-next toggle (Lecture continue) */
.player-autonext {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}

#toggleAutoplay {
  appearance: none;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1;
  white-space: nowrap;
}

#toggleAutoplay:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#toggleAutoplay:active {
  transform: translateY(0);
}

#toggleAutoplay:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

#toggleAutoplay[aria-pressed="true"] {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.55), rgba(18, 18, 18, 0.55));
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

#toggleAutoplay[aria-pressed="false"] {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 0.95;
}

#toggleAutoplay svg {
  width: 18px;
  height: 18px;
  display: block;
}

#toggleAutoplay .icon-on { display: inline-block; }
#toggleAutoplay .icon-off { display: none; }
#toggleAutoplay[aria-pressed="false"] .icon-on { display: none; }
#toggleAutoplay[aria-pressed="false"] .icon-off { display: inline-block; }

/* Position volume en haut à droite */
.player-volume-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}


.volume-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}

.volume-icon .icon-volume { display: none; }
.volume-icon[data-level="high"] .v-high { display: inline-block; }
.volume-icon[data-level="mid"] .v-mid { display: inline-block; }
.volume-icon[data-level="low"] .v-low { display: inline-block; }
.volume-icon[data-level="mute"] .v-mute { display: inline-block; }

/* PROGRESS BAR */
.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: white;
  width: 0%;
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
}

/* VOLUME TOGGLE */
#volumeWrapper {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

#volumeWrapper.show {
  max-width: 120px;
  opacity: 1;
}

#volumeControl {
  appearance: none;
  height: 6px;
  width: 100px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  cursor: pointer;
  outline: none;
}

#volumeControl::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

#volumeControl::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* PLAYER TIME */

.player-time {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin: 0.4rem 0;
  text-align: center;
}

/* TEAM SECTION */
.team-section {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
}


.team-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}


.team-members {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}


.team-member {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.team-member::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.team-member:hover::before {
  opacity: 1;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.member-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.member-name::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8), transparent);
  transition: width 0.8s ease;
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.team-member:hover .member-name::after {
  width: 100%;
  opacity: 1;
}

@keyframes lineSlideLeftToRight {
  0% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

.team-member:hover .member-name {
  opacity: 1;
}

.member-role {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  padding: 0.1rem 0.3rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  border: 0.05px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.team-member:hover .member-role {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.about-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
  padding-bottom: 4px;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-title:hover::after {
  transform: scaleX(1);
}

.contact-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  position: relative;
  display: inline-block;
  margin-bottom: 1.2rem;
  padding-bottom: 4px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-title:hover::after {
  transform: scaleX(1);
}

/* ARTISTS GRID */
.artists-page {
  padding-top: 140px;
  padding-bottom: 160px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


.artists-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.artist-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: block;
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.artist-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

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

.artist-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-align: center;
}

.artist-card:hover .artist-name {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
}


.artist-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  text-align: center;
}

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

/* Barre blanche animée */
.artist-name::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  margin-top: 6px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.artist-card:hover .artist-name::after {
  transform: scaleX(1);
}

.terms-page {
  padding-top: 120px;
  padding-bottom: 160px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.terms-card {
  max-width: 900px;
  padding: 2rem;
  line-height: 1.7;
  text-align: left;
}

.terms-card p {
  margin-bottom: 1.5rem;
}

.terms-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  color: white;
}

.terms-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.terms-title:hover::after {
  transform: scaleX(1);
}

.site-footer {
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 2rem;
  flex-shrink: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.site-footer {
  background: #000;
  padding: 1rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
}


.form-page {
  padding-top: 120px;
  padding-bottom: 160px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.form-wrapper iframe {
  border-radius: 12px;
  overflow: hidden;
}

/* Hero animé */
.animated-hero {
  position: relative;
  height: 82vh;
  min-height: 340px;
  background: rgba(20, 10, 30, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 90px;
}

.team-hero.animated-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (max-width: 700px) {
  .animated-hero {
    height: 40vh;
    min-height: 220px;
    padding-top: 70px;
  }
}


@keyframes grayscaleWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2.5rem 2rem 2rem 2rem;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(1px);
  border-radius: 24px;
  text-align: center;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  max-width: 600px;
  margin: 0 auto;
}

.hero-plain-text {
  background: none;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  max-width: 700px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
.hero-title {
  font-size:4rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.12);
  line-height: 1.08;
  text-align: center;
}

.title-line {
  display: inline-block;
  white-space: nowrap;
}
.hero-slogan {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #e0e0e0;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
  line-height: 1.5;
  text-align: center;
}

.slogan-line {
  display: inline-block;
  white-space: nowrap;
}
.hero-desc {
  font-size: 1.55rem;
  color: #bdbdbd;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.2rem;
  padding: 0;
}
.hero-highlights li {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
  justify-content: center;
  color: #fff;
  background: none;
  border-radius: 0;
  padding: 0.2em 0.5em;
  box-shadow: none;
  transition: color 0.3s;
}
.hero-highlights li span {
  color: #FD00DD;
  font-size: 1.2em;
}
.hero-highlights li:hover {
  color: #FD00DD;
}
.demo-btn {
  background: #fff;
  color: #181818;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 999px;
  padding: 1rem 2.5rem;
  margin-top: 1.2rem;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-btn:hover {
  background: #181818;
  color: #fff;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.18);
  transform: translateY(-6px) scale(1.08);
  transition-duration: 0.7s;
}
.demo-btn .icon {
  color: #181818;
  transition: color 0.3s;
}
.demo-btn:hover .icon {
  color: #fff;
}
@media (max-width: 700px) {
  .hero-title { font-size: 2.1rem; }
  .hero-slogan { font-size: 0.98rem; }
  .hero-desc { font-size: 1rem; }
  .hero-highlights li { font-size: 0.98rem; }
  .hero-plain-text { gap: 1.2rem; }
  
  .title-line, .slogan-line {
    white-space: normal;
  }
}


/* Responsive HERO */
@media (max-width: 900px) {
  .hero-overlay { max-width: 95vw; }
  .hero-title { font-size: 2.1rem; }
  .hero-slogan { font-size: 1.1rem; }
  .hero-desc { font-size: 1rem; }
  .hero-highlights li { font-size: 0.98rem; }
  .shape1 { width: 180px; height: 180px; }
  .shape2 { width: 110px; height: 110px; }
  .shape3 { width: 70px; height: 70px; }
  
  .title-line, .slogan-line {
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .animated-hero { 
    height: auto; 
    min-height: 100vh; 
    padding: 120px 1rem 2rem 1rem;
  }
  .hero-overlay { 
    padding: 2rem 1rem; 
    height: auto !important;
    min-height: 400px;
  }
  .hero-plain-text {
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .hero-title { 
    font-size: 1.8rem; 
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .hero-slogan { 
    font-size: 1rem; 
    margin-bottom: 0.5rem;
  }
  
  .title-line, .slogan-line {
    white-space: normal;
  }
  .hero-desc { 
    font-size: 1rem; 
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  .hero-highlights li { 
    font-size: 0.9rem; 
    padding: 0.4em 0.8em; 
  }
  .demo-btn {
    margin-top: 1.5rem;
    width: 200px;
    height: 48px;
  }
}

/* Styles spécifiques pour le hero de la page index */
.index-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 2rem 2rem 2rem;
}

.index-hero .hero-plain-text {
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.index-hero .hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.12);
  line-height: 1.08;
  margin: 0;
}

.index-hero .hero-slogan {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: #e0e0e0;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  margin-top: 0;
  line-height: 1.5;
}

.index-hero .hero-desc {
  font-size: 1.35rem;
  color: #bdbdbd;
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.index-hero .hero-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}

.index-hero .feature-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.index-hero .feature-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.index-hero .demo-btn {
  margin-top: 1rem;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}



@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}






@keyframes floatbg {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.index-dark-section {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.8) 0%, rgba(40, 40, 60, 0.9) 50%, rgba(60, 60, 80, 0.8) 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.index-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(240, 240, 250, 0.05) 0%, transparent 50%);
  z-index: 1;
  animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.index-dark-section > * {
  position: relative;
  z-index: 2;
}

.index-dark-section h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #ffffff 0%, #f8f8f8 50%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  position: relative;
  display: inline-block;
}

.index-dark-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 250, 0.7));
  border-radius: 2px;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 255, 255, 0.2); }
  50% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); }
}

.index-dark-section p {
  font-size: 1.4rem;
  color: #f0f0f0;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.inline-link {
  color: #FD00DD;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0.3rem 0;
  margin: 0 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(45deg, #FD00DD, #782A82);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  overflow: hidden;
}

.inline-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #FD00DD, #782A82);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.inline-link:hover {
  background: linear-gradient(45deg, #fff, #FD00DD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateY(-2px);
}

.inline-link:hover::after {
  transform: scaleX(1);
}

.inline-link:active {
  transform: translateY(0px) scale(0.98);
  transition: transform 0.1s ease;
}

.inline-link::before {
  display: none;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.site-footer {
  background: #000;
  padding: 1rem 1rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-link:hover::after {
  transform: scaleX(1);
}

.index-background-playlists {
  padding: 4rem 2rem;
  text-align: center;
  background: transparent;
}

.spotify-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TEAM HERO  ===== */
.team-hero {
  padding: 140px 2rem 60px;
  display: block;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.team-hero .hero-overlay {
  background: transparent;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
}


.team-hero .team-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.team-hero .team-members {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.team-hero .team-member {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  cursor: pointer;
}


.team-hero .team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
}

.team-hero .team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-hero .team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team-hero .team-member:hover::before {
  opacity: 1;
}

.team-hero .member-name {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  font-size: 1.2rem;
  color: white;
  text-transform: uppercase;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 1px;
  text-align: center;
}

.team-hero .member-name::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transition: width 0.8s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.team-hero .team-member:hover .member-name::after {
  width: 100%;
  opacity: 1;
}

.team-hero .team-member:hover .member-name {
  opacity: 1;
}

.team-member .social-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.team-member:hover .social-overlay {
  opacity: 1;
  pointer-events: auto;
}

.social-icon:hover + .social-icon {
  transform: translateX(-3px);
  transition: transform 0.3s ease;
}

.social-icon:hover ~ .social-icon {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}
.social-icon {
  opacity: 0;
  transform: translateY(32px);
  animation: social-slide-up 0.45s cubic-bezier(.23,1.01,.32,1) forwards;
}
.team-member:hover .social-icon:nth-child(1) {
  animation-delay: 0.05s;
}
.team-member:hover .social-icon:nth-child(2) {
  animation-delay: 0.18s;
}
.team-member:hover .social-icon:nth-child(3) {
  animation-delay: 0.31s;
}
.team-member:hover .social-icon {
  opacity: 1;
}
@keyframes social-slide-up {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.social-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.social-icon:hover::before {
  opacity: 1;
  transform: scale(1.2);
  animation: particle-glow 1s ease-in-out infinite alternate;
}

@keyframes particle-glow {
  0% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: scale(1.2);
  }
  100% {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    transform: scale(1.4);
  }
}

.social-icon::after {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
  pointer-events: none;
}

.social-icon:hover::after {
  opacity: 1;
  transform: scale(1.5);
  animation: sound-wave 1.2s ease-out infinite;
}

@keyframes sound-wave {
  0% {
    opacity: 1;
    transform: scale(1.5);
    border-color: rgba(255, 255, 255, 0.3);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
    border-color: rgba(255, 255, 255, 0);
  }
}
.icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 1;
  opacity: 1;
}
.social-icon svg {
  position: relative;
  z-index: 2;
  display: block;
}
.social-icon.instagram .icon-bg {
  /* background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); */
  background: #333333;
}
.social-icon.youtube .icon-bg {
  /* background: radial-gradient(circle at 50% 50%, #ff0000 60%, #b31217 100%); */
  background: #333333;
}
.social-icon.spotify .icon-bg {
  /* background: radial-gradient(circle at 50% 50%, #1db954 60%, #1ed760 100%); */
  background: #333333;
}
.social-icon.tiktok .icon-bg {
  /* background: radial-gradient(circle at 50% 50%, #25F4EE 0%, #FE2C55 60%, #000 100%); */
  background: #333333;
}
.social-icon.gmail .icon-bg {
  /* background: radial-gradient(circle at 50% 50%, #ea4335 60%, #b31217 100%); */
  background: #333333;
}
.social-icon img, .social-icon svg {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}
.social-icon:hover img, .social-icon:hover svg {
  transform: scale(1.4) translateY(-8px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  filter: brightness(1.2) contrast(1.1);
}
.social-icon.instagram:hover .icon-bg {
  box-shadow: none;
  filter: brightness(1.5);
  animation: insta-gradient 0.8s cubic-bezier(.23,1.01,.32,1);
}
@keyframes insta-gradient {
  0% { 
    background: #333333;
    transform: scale(1) rotate(0deg);
  }
  25% { 
    background: linear-gradient(45deg, #fdf497, #fd5949);
    transform: scale(1.2) rotate(5deg);
  }
  50% { 
    background: linear-gradient(45deg, #fd5949, #d6249f);
    transform: scale(1.3) rotate(-5deg);
  }
  75% { 
    background: linear-gradient(45deg, #d6249f, #285AEB);
    transform: scale(1.2) rotate(3deg);
  }
  100% { 
    background: linear-gradient(45deg, #fdf497, #fd5949, #d6249f, #285AEB);
    transform: scale(1.15) rotate(0deg);
  }
}
.social-icon.youtube:hover .icon-bg {
  box-shadow: none;
  filter: brightness(1.5);
  animation: youtube-pulse 0.6s cubic-bezier(.23,1.01,.32,1);
}
@keyframes youtube-pulse {
  0% { 
    background: #333333;
    transform: scale(1);
  }
  20% { 
    background: #ff0000;
    transform: scale(1.3) translateY(-5px);
  }
  40% { 
    background: #b31217;
    transform: scale(1.4) translateY(-8px);
  }
  60% { 
    background: #ff0000;
    transform: scale(1.3) translateY(-5px);
  }
  80% { 
    background: #b31217;
    transform: scale(1.2) translateY(-3px);
  }
  100% { 
    background: linear-gradient(45deg, #ff0000, #b31217);
    transform: scale(1.25);
  }
}
.social-icon.spotify:hover .icon-bg {
  box-shadow: none;
  filter: brightness(1.5);
  animation: spotify-wave 0.7s cubic-bezier(.23,1.01,.32,1);
}
@keyframes spotify-wave {
  0% { 
    background: #333333;
    transform: scale(1) rotate(0deg);
  }
  25% { 
    background: #1db954;
    transform: scale(1.2) rotate(15deg);
  }
  50% { 
    background: #1ed760;
    transform: scale(1.4) rotate(-15deg);
  }
  75% { 
    background: #1db954;
    transform: scale(1.3) rotate(10deg);
  }
  100% { 
    background: linear-gradient(45deg, #1db954, #1ed760);
    transform: scale(1.25) rotate(0deg);
  }
}
.social-icon.tiktok:hover .icon-bg {
  box-shadow: none;
  filter: brightness(1.5);
  animation: tiktok-vibrate 0.6s cubic-bezier(.23,1.01,.32,1);
}
@keyframes tiktok-vibrate {
  0% { 
    background: #333333;
    transform: scale(1) translateY(0) rotate(0deg);
  }
  15% { 
    background: #25F4EE;
    transform: scale(1.2) translateY(-5px) rotate(3deg);
  }
  30% { 
    background: #FE2C55;
    transform: scale(1.3) translateY(-8px) rotate(-3deg);
  }
  45% { 
    background: #25F4EE;
    transform: scale(1.25) translateY(-3px) rotate(2deg);
  }
  60% { 
    background: #FE2C55;
    transform: scale(1.3) translateY(-6px) rotate(-2deg);
  }
  75% { 
    background: #25F4EE;
    transform: scale(1.2) translateY(-2px) rotate(1deg);
  }
  100% { 
    background: linear-gradient(45deg, #25F4EE, #FE2C55);
    transform: scale(1.25) translateY(0) rotate(0deg);
  }
}
.social-icon.gmail:hover .icon-bg {
  box-shadow: none;
  filter: brightness(1.5);
  animation: gmail-shine 0.5s cubic-bezier(.23,1.01,.32,1);
}
@keyframes gmail-shine {
  0% { 
    background: #333333;
    transform: scale(1);
  }
  25% { 
    background: #ea4335;
    transform: scale(1.25) translateY(-3px);
  }
  50% { 
    background: #b31217;
    transform: scale(1.4) translateY(-6px);
  }
  75% { 
    background: #ea4335;
    transform: scale(1.3) translateY(-4px);
  }
  100% { 
    background: linear-gradient(45deg, #ea4335, #b31217);
    transform: scale(1.25) translateY(-2px);
  }
}
.social-icon.gmail:hover svg {
  filter: none;
  transition: filter 0.2s;
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.8s ease-out forwards;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.short-hero {
  height: auto;
  min-height: auto;
  padding: 120px 1.5rem 100px 1.5rem; 
}

.contact-hero {
  padding: 140px 2rem 80px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.contact-card {
  text-align: center;
  max-width: 600px;
  width: 100%;
}

.contact-mail p {
  margin-top: 1.5rem;
  font-size: 1rem;
}

.contact-mail a {
  color: white;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.contact-mail a:hover {
  opacity: 0.8;
}

.contact-socials {
  margin-top: 2rem;
}

.contact-socials p {
  margin-bottom: 1rem;
  font-weight: bold;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.social-icons a:hover img {
  transform: scale(1.1);
  opacity: 1;
}


body.page-demo .animated-hero {
  align-items: flex-start;
  height: auto;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 100px;
}

body.page-demo {
  background: none;
  background-color: #000;
}

/* =================================== */
/* =========== MOBILE & RESPONSIVE =========== */
/* =================================== */

/* HAMBURGER MENU */
.hamburger-menu {
  display: none; /* Caché sur ordinateur */
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000;
}

.hamburger-menu span {
  width: 2rem;
  height: 0.2rem;
  background: white;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Animation du bouton hamburger en X */
.hamburger-menu.is-active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* CONTENEUR DE NAVIGATION MOBILE */
.mobile-nav {
  display: none; /* Caché par défaut, activé dans la media query */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Bouton de fermeture mobile */
.mobile-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.mobile-close-btn span {
  width: 24px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-close-btn span:first-child {
  transform: rotate(45deg);
}

.mobile-close-btn span:last-child {
  transform: rotate(-45deg);
}

.mobile-close-btn:hover span {
  background: #ccc;
}

.mobile-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.mobile-nav nav a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}




.mobile-nav.is-active nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-active nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-active nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.is-active nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-active nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.is-active nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav nav a:nth-child(6) { transition-delay: 0.3s; }

/* =================================== */
/* =========== MEDIA QUERIES =========== */
/* =================================== */

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Cache la navigation de bureau */
  }

  .hamburger-menu {
    display: flex; /* Affiche le bouton hamburger */
  }
  
  .mobile-nav {
    display: flex; /* Permet à la navigation mobile d'être potentiellement visible */
  }

  .navbar-container {
    padding: 0 1.5rem;
  }

  /* Sections Hero */
  .animated-hero h1, .team-hero .team-title {
    font-size: 2.2rem;

  }
  .animated-hero p {
    font-size: 1rem;
  }

  .short-hero {
    height: auto;
    min-height: auto;
    padding: 120px 1.5rem 60px 1.5rem;
  }

  .team-hero .team-members {
    flex-direction: column;
    gap: 2rem;
    max-width: 400px;
  }
  
  .team-hero .team-member {
    width: 240px;
    height: 280px;
  }

  /* Conteneurs & Cartes */
  .glass-card {
    margin: 120px 1.5rem 0 1.5rem;
    padding: 1.5rem;
  }

  .about-card {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  /* Mises en page spécifiques */
  .releases-page, .artists-page, .terms-page, .contact-hero {
    padding-top: 120px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .releases-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .artists-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .artist-card {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
  }

  .artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .artist-name {
    font-size: 0.9rem;
    padding: 0.8rem;
    line-height: 1.2;
  }
  
  .spotify-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* Lecteur audio */
  .custom-player {
    width: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
    right: 10px;
  }

  .glass-player {
    padding: 1rem 1.5rem;
    width: 100%;
  }
  
  .player-controls {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .player-center-controls {
    margin-bottom: 0;
    order: 2;
    flex-grow: 1;
    justify-content: center;
  }
  
  .player-time {
      order: 1;
      position: static;
      width: 100%;
      text-align: center;
      margin-bottom: 0.2rem;
  }
  
  .player-volume-wrapper {
    position: static;
    order: 3;
    padding: 0;
  }

  .player-autonext {
    position: static;
    order: 4;
    padding: 0;
    margin-left: 0.5rem;
    margin-top: 0.2rem;
  }

  #toggleAutoplay {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
  }

  #volumeWrapper.show {
    max-width: 90px;
  }
  #volumeControl {
      width: 80px;
  }
  
  /* Formulaire */
  .form-page {
      padding: 120px 1rem 100px 1rem;
  }
  
  .form-wrapper iframe {
     height: 1250px;
  }
}

@media (max-width: 480px) {
  .releases-container {
    grid-template-columns: 1fr !important;
    gap: 0.7rem;
    padding: 0 0.2rem;
  }
  .card-inner {
    width: 98vw;
    max-width: 320px;
    min-width: 0;
    height: auto;
  }
  .card__image {
    height: 160px;
  }
  .card__title {
    font-size: 0.98rem;
  }
  
  .artists-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.8rem;
    padding: 0 0.2rem;
  }

  .artist-card {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
  }

  .artist-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .artist-name {
    font-size: 0.75rem;
    padding: 0.5rem;
    line-height: 1.1;
  }
  /* Hero index */
  .hero-title {
    font-size: 1.2rem;
    white-space: normal;
  }
  .hero-slogan {
    font-size: 0.85rem;
    white-space: normal;
  }
  .hero-desc {
    font-size: 0.92rem;
  }
  .hero-plain-text {
    gap: 0.7rem;
    padding: 0 0.2rem;
  }
  .demo-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
    width: 90vw;
    max-width: 220px;
    height: 44px;
    margin-top: 0.7rem;
  }
  .spotify-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    padding: 0 0.2rem;
  }
  .spotify-grid iframe {
    min-width: 0;
    width: 100% !important;
    height: 220px !important;
  }
  /* Sections principales */
  .animated-hero, .index-dark-section, .index-background-playlists {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
  .index-dark-section {
    padding: 2rem 0.2rem 1rem 0.2rem;
  }
  /* Footer */
  .site-footer {
    padding: 0.7rem 0.2rem;
    font-size: 0.8rem;
  }
  /* Player audio */
  .custom-player {
    width: auto;
    left: max(4px, env(safe-area-inset-left));
    right: max(4px, env(safe-area-inset-right));
    bottom: max(4px, env(safe-area-inset-bottom));
  }
  .glass-player {
    padding: 0.6rem 0.6rem;
    min-width: 0;
    width: 100%;
    max-width: none;
  }
  .player-center-controls button {
    width: 34px;
    height: 34px;
  }
  .player-center-controls button img {
    width: 16px;
    height: 16px;
  }
  .player-center-controls svg { width: 16px; height: 16px; }

  .player-center-controls button {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  .player-time {
    font-size: 0.85rem;
    order: 1;
    position: static;
    width: 100%;
    text-align: center;
    margin-bottom: 0.2rem;
  }

  .player-autonext {
    order: 3;
    margin-left: 0;
    margin-top: 0.2rem;
  }

  #toggleAutoplay {
    font-size: 0.75rem;
    padding: 0.28rem 0.55rem;
  }

  /* Track title wrapping */
  .track-info {
    font-size: 0.95rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    padding: 0 0.4rem;
  }

  /* Progress bar touch-friendly */
  .progress-container { height: 8px; }
  .progress-thumb { width: 14px; height: 14px; }
}

.hero-overlay.hero-modern {
  background: linear-gradient(135deg, rgba(30,10,40,0.85) 60%, rgba(255,0,225,0.10) 100%);
  border-radius: 2.5rem 0.7rem 2.5rem 0.7rem;
  border: 2.5px solid rgba(254,0,225,0.25);
  box-shadow: 0 0 0 0 #FE00E1, 0 8px 40px 0 rgba(254,0,225,0.18), 0 1.5px 24px 0 #782A82;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: heroPopIn 1.1s cubic-bezier(.23,1.01,.32,1) both;
  transition: box-shadow 0.35s, border-color 0.35s;
}
.hero-overlay.hero-modern::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 2.7rem 1.1rem 2.7rem 1.1rem;
  border: 2.5px solid transparent;
  background: linear-gradient(120deg, #FE00E1 0%, #782A82 40%, #F8DCB5 100%);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
  filter: blur(2.5px);
}
.hero-overlay.hero-modern:hover {
  box-shadow: 0 0 24px 0 #FE00E1, 0 12px 48px 0 rgba(254,0,221,0.22), 0 2px 32px 0 #782A82;
  border-color: #FE00E1;
}
@keyframes heroPopIn {
  0% { opacity: 0; transform: scale(0.92) translateY(40px); }
  80% { opacity: 1; transform: scale(1.04) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@media (max-width: 700px) {
  .hero-overlay.hero-modern {
    padding: 2rem 0.7rem 1.5rem 0.7rem;
    max-width: 98vw;
    border-radius: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
  .hero-overlay.hero-modern::before {
    border-radius: 1.7rem 1.1rem 1.7rem 1.1rem;
  }
}

/* === 3D Release Card Effect === */
.card-effect {
  perspective: 1000px;
}
.card-inner {
  --card-bg: var(--primary-bg-color);
  /*--card-accent: var(--primary-accent-color);*/
  --card-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  width: 220px;
  height: 290px;
  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  transform-style: preserve-3d;
}
.card-inner:hover {
  transform: rotateY(10deg) rotateX(10deg) translateZ(10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.card__liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 300px;
  height: 200px;
  background: #000000;
  border-radius: 50%;
  transform: translateZ(-80px);
  filter: blur(80px);
  transition:
    transform 0.7s cubic-bezier(0.36, 0, 0.66, -0.56),
    opacity 0.3s ease-in-out;
  opacity: 0;
}
.card-inner:hover .card__liquid {
  transform: translateZ(-50px) translateY(30px) translateX(-20px) rotate(-20deg) scale(1.2);
  opacity: 0.7;
}
.card__shine {
  display: none !important;
}
.card__glow {
  position: absolute;
  inset: -15px;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.card-inner:hover .card__glow {
  opacity: 1;
}
.card__content {
  padding: 1em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.card__artist {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.releases-page .card-inner:has(.card__liquid[data-release="all-the-things-she-said"]) .card__content {
  padding: 0.6em 1em 0.9em 1em;
  gap: 0.2em;
}
.releases-page .card-inner:has(.card__liquid[data-release="all-the-things-she-said"]) .card__image {
  height: 185px;
}
.releases-page .card-inner:has(.card__liquid[data-release="all-the-things-she-said"]) {
  /* Empêcher la coupe en bas pour les titres longs */
  height: auto;
  min-height: 330px;
  padding-bottom: 0.6em;
}
.releases-page .card-inner:has(.card__liquid[data-release="all-the-things-she-said"]) .card__content {
  height: auto;
}
.releases-page .card-inner:has(.card__liquid[data-release="all-the-things-she-said"]) .card__title {
  margin-top: 2em;
  /* Ne pas tronquer ce titre, afficher en lignes multiples complètes */
  display: block;
  overflow: visible;
  -webkit-line-clamp: initial;
  -webkit-box-orient: initial;
  white-space: normal;
  font-size: 14px;
  line-height: 1.15;
}
.play-btn {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #666; /* Couleur par défaut, sera surchargée par les styles inline */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3); /* Ombre par défaut, sera surchargée par les styles inline */
  cursor: pointer;
  transition: opacity 0.35s, transform 0.35s, background 0.3s;
  z-index: 2;
}
.card__image:hover .play-btn,
.card-inner:hover .play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn img {
  width: 20px;
  height: 20px;
  /* Suppression de l'ombre violette par défaut */
  filter: drop-shadow(0 2px 8px #0008);
}
.card__image {
  width: 100%;
  height: 200px;
  background: none;
  border-radius: 25px;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  flex-shrink: 0;
}
.card-inner:hover .card__image {
  transform: translateY(-6px) scale(1.02);
}
.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.card__image::before {
  display: none !important;
}
.card-inner:hover .card__liquid[data-release="magnetized"] {
  background: linear-gradient(120deg, #2F4248 0%, #23799C 60%, #10191E 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="allnightlong"] {
  background: linear-gradient(120deg, #043040 0%, #2785AA 60%, #A3C1CC 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="cryforyou"] {
  background: linear-gradient(120deg, #E1E0D1 0%, #C9C7B8 60%, #9A9788 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="feelmylove"] {
  background: linear-gradient(120deg, #6D0224 0%, #EB072C 60%, #5C0B2C 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="alreadygone"] {
  background: linear-gradient(120deg, #664B34 0%, #B66B21 60%, #E4DC05 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="allthethings"] {
  background: linear-gradient(120deg, #792721 0%, #201F1F 60%, #C12E24 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="someoneyouloved"] {
  background: linear-gradient(120deg, #2B5188 0%, #EBA266 60%, #A0BBCF 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="myheartgoes"] {
  background: linear-gradient(120deg, #E00D0D 0%, #21181B 60%, #751615 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="cupid"] {
  background: linear-gradient(120deg, #f802c7 0%, #441a41 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="jeveux"] {
  background: linear-gradient(120deg, #7491B0 0%, #EFBFF2 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="halo"] {
  background: linear-gradient(120deg, #a3d8e2 0%, #5aa1c0 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="payphone"] {
  background: linear-gradient(120deg, #FA62F1 0%, #EEAE11 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="wreckingball"] {
  background: linear-gradient(120deg, #f2f2f3 0%, #771a73 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="stargazing"] {
  background: linear-gradient(120deg, #448b9e 0%, #0e2d39 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="strobotscop"] {
  background: linear-gradient(120deg, #7cf1f6 0%, #0b75ab 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="illusion"] {
  background: linear-gradient(120deg, #31EBED 0%, #0F7C90 100%);
  opacity: 0.7;
}
.card-inner:hover .card__liquid[data-release="nightmode"] {
  background: linear-gradient(120deg, #72f281 0%, #72f281 100%);
  opacity: 0.7;
}

/* Styles pour boutons play - Désactivés pour permettre les styles inline */
/* .card-inner:hover .play-btn[data-audio*="alreadygone"] {
  background: linear-gradient(120deg, var(--primary-bg-color) 0%, var(--primary-accent-color) 60%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
} */

/* Toutes les règles de boutons play sont désactivées pour permettre les styles inline */
/*
.card-inner:hover .play-btn[data-audio*="allthethings"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--primary-bg-color) 60%, var(--primary-accent-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="someoneyouloved"] {
  background: linear-gradient(120deg, var(--primary-bg-color) 0%, var(--primary-accent-color) 60%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="myheartgoes"] {
  background: linear-gradient(120deg, var(--primary-accent-color) 0%, var(--primary-bg-color) 60%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="cupid"] {
  background: linear-gradient(120deg, var(--primary-accent-color) 0%, var(--primary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="jeveux"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--primary-accent-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="halo"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--primary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="payphone"] {
  background: linear-gradient(120deg, var(--primary-accent-color) 0%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="wreckingball"] {
  background: linear-gradient(120deg, var(--text-color) 0%, var(--primary-accent-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="stargazing"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--primary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="strobotscop"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--primary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="illusion"] {
  background: linear-gradient(120deg, var(--primary-accent-color) 0%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.card-inner:hover .play-btn[data-audio*="nightmode"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}
.card-inner:hover .play-btn[data-audio*="feelmylove"] {
  background: linear-gradient(120deg, var(--primary-accent-color) 0%, var(--primary-accent-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}
.card-inner:hover .play-btn[data-audio*="cryforyou"] {
  background: linear-gradient(120deg, var(--text-color) 0%, var(--text-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}
.card-inner:hover .play-btn[data-audio*="allnightlong"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}
.card-inner:hover .play-btn[data-audio*="magnetized"] {
  background: linear-gradient(120deg, var(--secondary-bg-color) 0%, var(--secondary-bg-color) 100%);
  box-shadow: 0 4px 15px var(--shadow-color);
}
*/

.card__title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-top: 0.4em;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.releases-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
@keyframes shine-effect {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@media (max-width: 700px) {
  .card-inner { width: 98vw; max-width: 320px; }
  .releases-container { gap: 1.2rem; }
}

body.page-about .hero-overlay {
  max-width: 1000px;
}

@media (max-width: 700px) {
  .team-section {
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 0 0.5rem;
  }
  .team-members {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2rem !important;
    padding: 0 1rem;
  }
  .team-member {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }
  .team-member img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 20px;
  }
  .member-name {
    font-size: 1.3rem !important;
    top: 35% !important;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  }
  .member-role {
    font-size: 0.5rem !important;
    top: 50% !important;
    padding: 0.15rem 0.4rem !important;
  }
  .social-overlay {
    gap: 1rem !important;
    bottom: 15px !important;
  }
  .social-icon img, .social-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
}
@media (max-width: 480px) {
  .team-section {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 0 0.5rem;
  }
  .team-members {
    gap: 1.5rem !important;
    padding: 0 0.5rem;
  }
  .team-member {
    width: 180px !important;
    height: 180px !important;
    border-radius: 16px;
  }
  .team-member img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 16px;
  }
  .team-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  .member-name {
    font-size: 1.1rem !important;
    top: 35% !important;
    font-weight: 900;
  }
  .member-role {
    font-size: 0.45rem !important;
    top: 50% !important;
    padding: 0.1rem 0.3rem !important;
  }
  .social-overlay {
    gap: 0.8rem !important;
    bottom: 12px !important;
  }
  .social-icon img, .social-icon svg {
    width: 16px !important;
    height: 16px !important;
  }
}
@media (max-width: 700px) {
  .team-member {
    padding-bottom: 36px;
  }
  .team-member .social-overlay {
    bottom: 8px;
    gap: 16px;
  }
  .social-icon img, .social-icon svg {
    width: 32px;
    height: 32px;
    padding: 5px;
  }
  .member-name {
    top: 38%;
    font-size: 0.92rem;
  }
  
  .member-name::after {
    height: 2px;
    bottom: -3px;
  }
  
  .social-icon img, .social-icon svg {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  
  .team-member:hover .social-icon img, 
  .team-member:hover .social-icon svg {
    width: 42px !important;
    height: 42px !important;
    padding: 8px !important;
    transform: scale(1.2);
    transition: all 0.3s ease;
  }
  
  .team-member:active .social-icon img, 
  .team-member:active .social-icon svg {
    width: 48px !important;
    height: 48px !important;
    padding: 10px !important;
    transform: scale(1.3);
  }
}
@media (max-width: 480px) {
  .team-member {
    padding-bottom: 28px;
  }
  .team-member .social-overlay {
    bottom: 3px;
    gap: 12px;
  }
  .social-icon img, .social-icon svg {
    width: 28px;
    height: 28px;
    padding: 4px;
  }
  .member-name {
    top: 36%;
    font-size: 0.82rem;
  }
  
  .member-name::after {
    height: 2px;
    bottom: -2px;
  }
  
  .social-icon img, .social-icon svg {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  
  .team-member:hover .social-icon img, 
  .team-member:hover .social-icon svg {
    width: 38px !important;
    height: 38px !important;
    padding: 6px !important;
    transform: scale(1.25);
  }
  
  .team-member:active .social-icon img, 
  .team-member:active .social-icon svg {
    width: 44px !important;
    height: 44px !important;
    padding: 8px !important;
    transform: scale(1.4);
  }
}

/* HERO FEATURES */
.hero-features {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.feature-tag:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.team-hero .hero-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.team-hero .team-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(75deg, #ccc, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.team-hero .team-members {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.team-hero .team-member {
  position: relative;
  text-align: center;
  transition: all 0.4s ease;
  padding: 1.5rem;
}

.team-hero .team-member:hover {
  transform: translateY(-10px) scale(1.05);
}

.team-hero .team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.team-hero .team-member:hover img {
  transform: scale(1.1);
  filter: brightness(0.5) contrast(1.2);
}

.team-hero .member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
}

.team-hero .team-member:hover .member-name {
  color: #fff;
}

.about-card {
  background: linear-gradient(135deg, rgba(40, 40, 50, 0.9) 0%, rgba(60, 60, 80, 0.95) 50%, rgba(80, 80, 100, 0.9) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin: 8rem auto 4rem auto;
  max-width: 900px;
  padding: 3rem;
  border-radius: 24px;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

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

.about-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.about-card:hover::after {
  transform: scaleX(1);
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  background: linear-gradient(45deg, #ffffff 0%, #f0f0f0 25%, #e8e8e8 50%, #d8d8d8 75%, #c8c8c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.about-title::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #f0f0f0, #e0e0e0, transparent);
  border-radius: 2px;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% { opacity: 0.6; box-shadow: 0 0 10px rgba(240, 240, 240, 0.3); }
  50% { opacity: 1; box-shadow: 0 0 20px rgba(240, 240, 240, 0.6); }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.about-text p {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 0;
}

.about-text p::before {
  display: none;
}

.highlight-word {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.highlight-word::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-word:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.highlight-word:hover::after {
  transform: scaleX(1);
}

.emphasis-word {
  position: relative;
  display: inline-block;
  color: #f0f0f0;
  font-weight: 700;
  font-style: italic;
  transition: all 0.3s ease;
  cursor: default;
}

.emphasis-word::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 3px;
}

.emphasis-word:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.emphasis-word:hover::before {
  transform: scaleX(1);
}

.keyword {
  position: relative;
  display: inline-block;
  color: #e8e8e8;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}

.keyword::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.keyword:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.keyword:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  border-radius: 4px;
}

.about-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
}

.shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 60%;
  animation-delay: 1s;
}

.shape:nth-child(5) {
  width: 30px;
  height: 30px;
  top: 10%;
  right: 40%;
  animation-delay: 3s;
  background: rgba(255, 255, 255, 0.15);
}

.shape:nth-child(6) {
  width: 70px;
  height: 70px;
  bottom: 30%;
  right: 10%;
  animation-delay: 5s;
  background: rgba(255, 255, 255, 0.08);
}

.shape:nth-child(7) {
  width: 50px;
  height: 50px;
  top: 70%;
  left: 10%;
  animation-delay: 2.5s;
  background: rgba(255, 255, 255, 0.12);
}

.shape:nth-child(8) {
  width: 25px;
  height: 25px;
  top: 50%;
  left: 50%;
  animation-delay: 1.5s;
  background: rgba(255, 255, 255, 0.2);
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  display: block;
  position: relative;
  z-index: 2;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.team-hero {
  margin-bottom: 0;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.about-card {
  margin-top: 20px;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, rgba(40, 40, 50, 0.9) 0%, rgba(60, 60, 80, 0.95) 50%, rgba(80, 80, 100, 0.9) 100%);
}

@media (max-width: 768px) {
  .hero-features {
    gap: 0.8rem;
    margin: 1rem 0;
  }
  
  .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .team-hero .team-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .team-hero .team-members {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .team-hero .team-member {
    width: 400px;
    height: 480px;
    border-radius: 20px;
  }
  

  

  
  .team-hero .member-name {
    font-size: 1rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    font-size: 1.1rem;
  }
  
  .about-visual {
    height: 200px;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .about-card {
    padding: 2rem;
    margin: 4rem auto;
    margin-top: 8rem;
  }
}

@media (max-width: 480px) {
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }
  
  .team-hero .team-title {
    font-size: 1.8rem;
  }
  
  .team-hero .team-members {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 320px;
  }
  
  .team-hero .team-member {
    width: 100%;
    max-width: 350px;
    height: 420px;
    border-radius: 20px;
  }
  

  

  
  .about-title {
    font-size: 2rem;
  }
  
  .about-card {
    margin: 3rem auto;
    margin-top: 6rem;
    padding: 1.5rem;
  }
  
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .about-visual {
    height: 150px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

.index-hero .demo-btn {
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .index-hero {
    padding: 80px 1rem 2rem 1rem;
    min-height: 100vh;
  }
  
  .index-hero .hero-plain-text {
    padding: 2rem 0;
    gap: 1.5rem;
  }
  
  .index-hero .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    white-space: normal;
  }
  
  .index-hero .hero-slogan {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    white-space: normal;
  }
  
  .index-hero .hero-desc {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .index-hero .hero-features {
    gap: 0.8rem;
    margin: 0.3rem 0;
  }
  
  .index-hero .feature-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* NEXORA TEAM TITLE STYLES */
.nexora-title-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin: 2rem 0;
  overflow: hidden;
}

.music-notes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.music-note {
  position: absolute;
  font-size: 2.5rem;
  color: #ffffff;
  animation: musicNoteFloat 6s ease-in-out infinite;
  text-shadow: 
    0 0 15px rgba(255, 255, 255, 0.8),
    0 0 30px rgba(255, 255, 255, 0.6),
    0 0 45px rgba(255, 255, 255, 0.4),
    2px 2px 4px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.note-1 { top: 15%; left: 20%; animation-delay: 0s; }
.note-2 { top: 25%; right: 25%; animation-delay: 1s; }
.note-3 { bottom: 25%; left: 15%; animation-delay: 2s; }
.note-4 { bottom: 15%; right: 20%; animation-delay: 3s; }
.note-5 { top: 45%; left: 30%; animation-delay: 4s; }
.note-6 { top: 55%; right: 30%; animation-delay: 5s; }
.note-7 { bottom: 35%; left: 40%; animation-delay: 6s; }
.note-8 { top: 75%; right: 40%; animation-delay: 7s; }

.sound-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.wave {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: waveExpand 4s ease-in-out infinite;
}

.wave-1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.wave-2 {
  width: 150px;
  height: 150px;
  animation-delay: 1s;
}

.wave-3 {
  width: 200px;
  height: 200px;
  animation-delay: 2s;
}

.nexora-team-title {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.title-word {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0;
  text-shadow: 
    0 0 25px rgba(255, 255, 255, 0.9),
    0 0 50px rgba(255, 255, 255, 0.7),
    0 0 75px rgba(255, 255, 255, 0.5),
    0 0 100px rgba(255, 255, 255, 0.3),
    3px 3px 6px rgba(0, 0, 0, 0.8),
    6px 6px 12px rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
  position: relative;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}





.equalizer-bars {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}

.bar {
  width: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  animation: equalizerBeat 1.5s ease-in-out infinite;
}

.bar-1 { height: 20px; animation-delay: 0s; }
.bar-2 { height: 30px; animation-delay: 0.1s; }
.bar-3 { height: 40px; animation-delay: 0.2s; }
.bar-4 { height: 30px; animation-delay: 0.3s; }
.bar-5 { height: 20px; animation-delay: 0.4s; }

@keyframes musicNoteFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(5deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg) scale(1.05);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-15px) rotate(2deg) scale(1.08);
    opacity: 0.8;
  }
}

@keyframes waveExpand {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

@keyframes equalizerBeat {
  0%, 100% {
    height: 20px;
    opacity: 0.6;
  }
  50% {
    height: 40px;
    opacity: 1;
  }
}



@media (max-width: 900px) {
  .title-word {
    font-size: 3rem;
  }
  
  .nexora-team-title {
    gap: 0.8rem;
  }
  
  .music-note {
    font-size: 2rem;
  }
  
  .wave-1 { width: 80px; height: 80px; }
  .wave-2 { width: 120px; height: 120px; }
  .wave-3 { width: 160px; height: 160px; }
}

@media (max-width: 768px) {
  .title-word {
    font-size: 2.5rem;
  }
  
  .nexora-team-title {
    gap: 0.6rem;
  }
  
  .nexora-title-container {
    min-height: 160px;
    margin: 1.5rem 0;
  }
  
  .music-note {
    font-size: 1.8rem;
  }
  
  .wave-1 { width: 70px; height: 70px; }
  .wave-2 { width: 100px; height: 100px; }
  .wave-3 { width: 130px; height: 130px; }
  
  .equalizer-bars {
    bottom: 15px;
  }
  
  .bar {
    width: 3px;
    gap: 3px;
  }
}

@media (max-width: 600px) {
  .title-word {
    font-size: 2.2rem;
  }
  
  .nexora-team-title {
    gap: 0.5rem;
  }
  
  .nexora-title-container {
    min-height: 140px;
    margin: 1rem 0;
  }
  
  .music-note {
    font-size: 1.5rem;
  }
  
  .wave-1 { width: 60px; height: 60px; }
  .wave-2 { width: 80px; height: 80px; }
  .wave-3 { width: 100px; height: 100px; }
  
  .equalizer-bars {
    bottom: 10px;
  }
  
  .bar {
    width: 2px;
    gap: 2px;
  }
}

@media (max-width: 480px) {
  .title-word {
    font-size: 1.8rem;
  }
  
  .nexora-team-title {
    gap: 0.4rem;
  }
  
  .nexora-title-container {
    min-height: 120px;
    margin: 0.8rem 0;
  }
  
  .music-note {
    font-size: 1.3rem;
  }
  
  .wave-1 { width: 50px; height: 50px; }
  .wave-2 { width: 70px; height: 70px; }
  .wave-3 { width: 90px; height: 90px; }
  
  .separator-line {
    width: 40px;
  }
  
  .equalizer-bars {
    bottom: 8px;
  }
  
  .bar {
    width: 2px;
    gap: 2px;
  }
}

@media (max-width: 360px) {
  .title-word {
    font-size: 1.5rem;
  }
  
  .nexora-team-title {
    gap: 0.3rem;
  }
  
  .nexora-title-container {
    min-height: 100px;
    margin: 0.5rem 0;
  }
  
  .music-note {
    font-size: 1.1rem;
  }
  
  .wave-1 { width: 40px; height: 40px; }
  .wave-2 { width: 60px; height: 60px; }
  .wave-3 { width: 80px; height: 80px; }
  
  .separator-line {
    width: 30px;
  }
  
  .equalizer-bars {
    bottom: 5px;
  }
  
  .bar {
    width: 1px;
    gap: 1px;
  }
  
  .team-members {
    gap: 1rem !important;
    padding: 0 0.3rem;
  }
  .team-member {
    width: 150px !important;
    height: 150px !important;
    border-radius: 12px;
  }
  .team-member img {
    border-radius: 12px;
  }
  .member-name {
    font-size: 1rem !important;
    top: 32% !important;
  }
  .member-role {
    font-size: 0.4rem !important;
    top: 48% !important;
    padding: 0.08rem 0.25rem !important;
  }
  .social-overlay {
    gap: 0.6rem !important;
    bottom: 10px !important;
  }
  .social-icon img, .social-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
}

.artists-page .artist-card { transform-origin: center bottom; }

.js-enabled .artist-card {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  will-change: transform, opacity;
}

.js-enabled .artist-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: artistCardPopIn 900ms cubic-bezier(.22,.9,.21,1) both;
  animation-delay: var(--stagger, 0ms);
}

@keyframes artistCardPopIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  :root:not(.anim-force) .artist-card { transition: none !important; animation: none !important; filter: none !important; }
  :root:not(.anim-force) .js-enabled .artist-card { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* Animation des cartes de releases */
.js-enabled .card-container {
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  will-change: transform, opacity;
}

.js-enabled .card-container.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  animation: releaseCardFadeIn 600ms cubic-bezier(.25,.46,.45,.94) both;
  animation-delay: var(--stagger, 0ms);
}

.releases-page .card-container { 
  transform-origin: center center; 
}

@keyframes releaseCardFadeIn {
  0% { 
    opacity: 0; 
    transform: scale(0.85) translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1) translateY(0); 
  }
}

@media (prefers-reduced-motion: reduce) {
  :root:not(.anim-force) .card-container { transition: none !important; animation: none !important; }
  :root:not(.anim-force) .js-enabled .card-container { opacity: 1 !important; transform: none !important; }
}