* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgb(0, 0, 0);
  background-color: #000;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #000000;
  background: radial-gradient(circle at top, #0b002b, #000);
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Amélioration de la réactivité des images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Styles de base pour les interactions tactiles */
@media (hover: hover) and (pointer: fine) {
  .nav-link:hover::after,
  .btn:hover,
  .social-link:hover {
    transition: all 0.3s ease;
  }
}

/* Optimisation pour les écrans à haute densité de pixels */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
}

/* Styles pour améliorer l'accessibilité */
:focus {
  outline: 3px solid rgba(255,71,218,0.5);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Gestion du contenu qui déborde */
* {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  left: 0;
}

.hamburger::before {
  top: -7px;
  transform-origin: right;
}

.hamburger::after {
  bottom: -7px;
  transform-origin: left;
}

.menu-toggle.active .hamburger {
  transform: rotate(360deg);
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(-45deg) translate(-2px, 0px);
  width: 26px;
  background-color: #ff47da;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(45deg) translate(-2px, 0px);
  width: 26px;
  background-color: #ff47da;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  grid-column: 2;
}

.logo {
  display: block;
  transition: transform 0.3s ease;
  grid-column: 1;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff47da;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #ff47da;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.active {
  color: #ff47da;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-left: 2rem;
  grid-column: 3;
  justify-content: flex-end;
}

.social-link {
  color: #fff;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.social-link:hover {
  color: #ff47da;
}

.social-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

section {
  padding: 100px 10%;
}

.hero {
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-top: 80px; /* Espace pour le header */
}

.section-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255,71,218,0) 0%, 
    #ff47da 50%, 
    rgba(255,71,218,0) 100%
  );
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 15px #ff47da;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #000000 0%, #0A0A0A 100%);
  z-index: 1;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255,71,218,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,71,218,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: top;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  max-width: 100%;
  width: 100%;
}

.festival-title {
  font-size: min(20vw, 180px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(to right, #fff, #ff47da);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255,71,218,0.3);
}

.festival-info {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.festival-date {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: #fff;
}

.separator {
  color: #ff47da;
  margin: 0 0.5rem;
}

.genre-tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.tag {
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(255,71,218,0.3);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255,71,218,0.05);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,71,218,0.2), transparent);
  transition: 0.5s;
}

.tag:hover::before {
  left: 100%;
}

.cta-container {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
}

.btn {
  padding: 0.8rem 2.5rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  min-width: 120px;
  text-align: center;
}

.btn-primary {
  background: #ff47da;
  border: none;
  color: #000;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #ff47da;
  color: #fff;
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn {
  margin-top: 30px;
  padding: 12px 30px;
  border: 2px solid #ff47da;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1em;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff47da;
  color: #000;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff47da;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-section {
  padding: 150px 5% 180px;
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255,71,218,0.03) 100%
  );
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255,71,218,0.3),
    rgba(107,70,193,0.3),
    transparent
  );
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg,
    rgba(255,71,218,0.02) 0%,
    rgba(107,70,193,0.05) 100%
  );
  transform: skewY(-6deg);
  transform-origin: 0 100%;
  z-index: 1;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, #ff47da, #6b46c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(255,71,218,0.5),
    rgba(107,70,193,0.5),
    transparent
  );
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
}

.experience-card {
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
}

.experience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,71,218,0.4);
}

.main-card {
  grid-column: span 2;
}

.main-card h3 {
  font-size: 2em;
  background: linear-gradient(135deg, #ff47da, #6b46c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1em;
}

.main-card p {
  font-size: 1.4em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-card {
  position: relative;
  padding-bottom: 80px;
}

.highlight-card h3 {
  font-size: 1.6em;
  color: #ff47da;
  margin-bottom: 1em;
}

.highlight-card p {
  font-size: 1.2em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.card-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  color: #ff47da;
  opacity: 0.6;
}

.vision-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(107,70,193,0.2), rgba(255,71,218,0.2));
}

.vision-text {
  font-size: 1.4em;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, #ff47da, #6b46c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255,71,218,0.2);
  z-index: 1;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .main-card {
    grid-column: auto;
  }

  .main-card h3 {
    font-size: 1.6em;
  }

  .main-card p {
    font-size: 1.2em;
  }

  .highlight-card h3 {
    font-size: 1.4em;
  }

  .highlight-card p,
  .vision-text {
    font-size: 1.1em;
  }
}



.cta-wrapper {
  padding-bottom: 100px;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(45deg, rgba(255, 71, 218, 0.2), rgba(107, 70, 193, 0.2));
  border: 2px solid rgba(255, 71, 218, 0.3);
  border-radius: 40px;
  color: white;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 40px;
  backdrop-filter: blur(10px);
  letter-spacing: 1px;
  justify-content: center;
}

.discover-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, rgba(255, 71, 218, 0.3), rgba(107, 70, 193, 0.3));
  border-color: rgba(255, 71, 218, 0.5);
  box-shadow: 0 10px 30px rgba(255, 71, 218, 0.2),
              0 0 30px rgba(107, 70, 193, 0.2);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  margin-left: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discover-btn:hover .arrow-icon {
  transform: translateX(8px);
}

.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.1);
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 71, 218, 0.2), rgba(107, 70, 193, 0.2));
  mix-blend-mode: overlay;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 71, 218, 0.1);
  filter: blur(20px);
  animation: float 10s infinite;
}

.float-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-element:nth-child(2) {
  top: 50%;
  right: 20%;
  width: 150px;
  height: 150px;
  animation-delay: -3s;
  background: rgba(107, 70, 193, 0.1);
}

.float-element:nth-child(3) {
  bottom: 20%;
  left: 30%;
  width: 80px;
  height: 80px;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -10px); }
  50% { transform: translate(0, 15px); }
  75% { transform: translate(-10px, -5px); }
}

/* Styles pour la section Infos Pratiques */
/* Styles spécifiques pour la section Infos Pratiques */
.festival-info-section {
  padding: 160px 5% 120px;
  position: relative;
  background: linear-gradient(180deg,
    rgba(107,70,193,0.05) 0%,
    rgba(255,71,218,0.03) 100%
  );
  margin-top: -100px;
}

.festival-info-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,71,218,0.3),
    rgba(107,70,193,0.3),
    transparent
  );
  box-shadow: 0 0 15px rgba(255,71,218,0.1);
}

.festival-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 150px;
  background: radial-gradient(
    ellipse at center,
    rgba(255,71,218,0.15) 0%,
    rgba(107,70,193,0.1) 50%,
    transparent 100%
  );
  opacity: 0.5;
  filter: blur(20px);
  pointer-events: none;
}

.festival-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

.festival-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 60px;
  margin-top: 60px;
  position: relative;
}

.festival-info-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80%;
  background: linear-gradient(180deg,
    transparent,
    rgba(255,71,218,0.2),
    rgba(107,70,193,0.2),
    transparent
  );
}

.festival-info-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,71,218,0.2),
    rgba(107,70,193,0.2),
    transparent
  );
}

.festival-info-card {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.festival-info-icon {
  width: 32px;
  height: 32px;
  color: #ff47da;
  margin-bottom: 15px;
  opacity: 0.9;
}

.festival-info-card h3 {
  font-size: 1.6em;
  color: #ff47da;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff47da, #6b46c1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255,71,218,0.3);
}

.festival-info-card p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 80%;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .festival-info-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .festival-info-grid::before,
  .festival-info-grid::after {
    display: none;
  }

  .festival-info-card h3 {
    font-size: 1.2em;
  }

  .festival-info-card p {
    font-size: 1em;
    max-width: 100%;
  }
}

.section-transition {
  display: none;
}

.programme-preview {
  padding: 120px 5%;
  position: relative;
  background: linear-gradient(180deg, 
    rgba(255,71,218,0.05) 0%,
    rgba(107,70,193,0.05) 100%
  );
}

.programme-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(0, 0, 0, 0),
    rgba(255,71,218,0.3),
    rgba(107,70,193,0.3),
    rgba(0, 0, 0, 0)
  );
}

.programme-preview::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg,
    rgba(255,71,218,0.05) 0%,
    rgba(107,70,193,0.08) 100%
  );
  transform: skewY(-6deg);
  transform-origin: 0 0;
  z-index: 1;
  pointer-events: none;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Tablettes et petits écrans (jusqu'à 1024px) */
@media (max-width: 1024px) {
  /* Navigation */
  .header-container {
    padding: 0 1.5rem;
  }

  .main-nav {
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 0.85rem;
  }

  /* Hero Section */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding: 0 1rem;
  }

  .festival-title {
    font-size: min(15vw, 140px);
  }

  .festival-info {
    text-align: center;
  }

  .genre-tags {
    align-items: center;
  }

  /* Sections Générales */
  section {
    padding: 80px 5%;
  }

  /* Grille des Artistes */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }

  .artist-card h3 {
    font-size: 1.2em;
  }

  /* Expérience Cards */
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Festival Info */
  .festival-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Tickets */
  .tickets-highlight {
    padding: 30px;
  }

  .ticket-features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer */
  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Appareils mobiles (jusqu'à 768px) */
@media (max-width: 768px) {
  /* Header et Navigation */
  .main-header {
    padding: 0.5rem 1.5rem;
    background: rgba(0,0,0,0.9);
  }

  .header-container {
    padding: 0.8rem 1rem;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .logo-img {
    height: 40px;
  }

  /* Réorganisation des liens sociaux pour mobile */
  .header-container > .social-links {
    display: flex !important; /* Force l'affichage */
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    order: 2;
    position: relative;
    z-index: 2;
  }

  .menu-toggle {
    display: block;
    order: 3;
    margin: 0;
  }

  .logo {
    order: 1;
  }

  .header-container > .social-links .social-link {
    color: #fff;
    display: flex;
    align-items: center;
    width: 28px;
    height: 28px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .header-container > .social-links .social-link:hover {
    background: rgba(255, 71, 218, 0.2);
    color: #ff47da;
  }

  .header-container > .social-links .social-icon {
    width: 18px;
    height: 18px;
  }

  /* Cache les liens sociaux dans le menu mobile */
  .nav-container .social-links {
    display: none !important;
  }

  .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 15, 0.98);
    backdrop-filter: blur(15px);
    padding: 6rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    gap: 2.5rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-container.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-link {
    font-size: 2rem;
    padding: 0.8rem;
    width: auto;
    border: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--index) * 0.1s);
    position: relative;
    text-align: center;
  }

  .nav-container.active .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff47da;
    transform: scaleX(1);
    transform-origin: left;
  }

  .nav-link.active {
    color: #ff47da;
    background: none;
    padding-left: 0.8rem;
    font-weight: 600;
  }

  .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #ff47da;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff47da;
  }

  /* Overlay sombre quand le menu est ouvert */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

  .menu-overlay.active {
    display: block;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  /* Hero Section */
  .hero-grid {
    padding: 0;
  }

  .festival-title {
    font-size: min(20vw, 160px);
    line-height: 0.9;
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(255,71,218,0.3);
  }

  .genre-tags {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .tag {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  /* Sections et Titres */
  section {
    padding: 60px 4%;
  }

  .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  /* Grille des Artistes */
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .artist-image {
    aspect-ratio: 3/4;
    border-radius: 15px;
  }

  .artist-card {
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .artist-card:active {
    transform: scale(0.98);
  }

  .artist-card h3 {
    font-size: 1.1rem;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    text-align: center;
  }

  /* Billetterie */
  .tickets-highlight {
    padding: 20px;
    margin: 20px 10px;
  }

  .early-bird {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .ticket-price {
    font-size: 2.5em;
  }

  .ticket-label {
    font-size: 1.2em;
  }

  /* Boutons et CTA */
  .discover-btn {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
    font-size: 1em;
  }

  .btn {
    width: 100%;
    margin: 10px 0;
  }

  .cta-container {
    flex-direction: column;
  }

  /* Description et Texte */
  .about-description p {
    font-size: 1em;
    text-align: left;
  }

  .about-description .highlight-text {
    font-size: 1.4em;
  }

  /* Contact et Info */
  .info-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-highlight {
    padding: 20px;
  }

  /* Footer Responsive */
  .site-footer {
    padding: 50px 0 30px;
  }

  .footer-content {
    padding: 0 20px;
  }

  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    text-align: left;
  }

  .footer-section:first-child {
    grid-column: span 2;
    text-align: center;
  }

  .footer-title {
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .footer-section:first-child .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-title::after {
    left: 0;
    transform: none;
    width: 25px;
  }

  .footer-description {
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .footer-social {
    justify-content: center;
    gap: 20px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-contact li {
    font-size: 0.9em;
    margin-bottom: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 25px;
    text-align: center;
    padding: 25px 20px 0;
    margin-top: 40px;
  }

  .footer-credits {
    order: 2;
  }

  .footer-legal {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-legal .separator {
    display: none;
  }

  .footer-legal a {
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85em;
    transition: all 0.3s ease;
  }

  .footer-legal a:hover {
    background: rgba(255, 71, 218, 0.1);
    border-color: rgba(255, 71, 218, 0.2);
  }
}

/* Très petits écrans (jusqu'à 480px) */
/* Ajustement spécifique pour iPhone SE et appareils similaires */
@media (max-width: 380px) and (max-height: 670px) {
  .hero {
    padding-top: 70px;
    min-height: 100vh;
    height: auto;
  }

  .festival-title {
    font-size: min(12vw, 80px);
  }

  .hero-grid {
    gap: 1rem;
  }

  .genre-tags {
    gap: 8px;
  }

  .tag {
    padding: 6px 12px;
    font-size: 0.8em;
  }

  .festival-date {
    font-size: 1.5em;
  }

  /* Ajustements des sections artistes pour iPhone SE */
  .artiste-section {
    padding: 30px 10px;
    overflow: hidden;
  }

  .artiste-container {
    flex-direction: column;
    gap: 20px;
  }

  .artiste-info {
    padding: 15px;
    width: 100%;
  }

  .artiste-nom {
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .planete-titre {
    font-size: 0.9em;
    margin-bottom: 10px;
  }

  .artiste-description {
    font-size: 0.85em;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .artiste-genres {
    gap: 5px;
    flex-wrap: wrap;
  }

  .genre {
    font-size: 0.75em;
    padding: 4px 8px;
  }

  .artiste-visuel {
    width: 100%;
    height: auto;
    max-height: 250px;
  }

  .artiste-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  section {
    padding: 30px 2%;
  }

  .section-title {
    font-size: 1.2em;
    margin-bottom: 15px;
  }

  /* Prévention des débordements */
  * {
    max-width: 100vw;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  /* Header et Navigation */
  .main-header {
    padding: 0.3rem 1rem;
  }

  .logo-img {
    height: 35px;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 0.4rem 0.2rem;
  }

  /* Hero Section */
  .hero {
    padding-top: 100px;
  }

  /* Grille des Artistes */
  .artists-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 0 15px;
  }

  .artist-image {
    aspect-ratio: 16/9;
  }

  .artist-card h3 {
    font-size: 1.2rem;
    padding: 10px 15px;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.5)
    );
  }

  .festival-title {
    font-size: min(14vw, 100px); /* Taille réduite pour petits écrans */
    margin-bottom: 20px;
  }

  .hero-grid {
    gap: 1.5rem; /* Réduction de l'espacement */
  }

  .festival-date {
    font-size: 1.5rem;
  }

  .tag {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    letter-spacing: 1px;
  }

  /* Sections */
  section {
    padding: 50px 3%;
  }

  .section-title {
    font-size: 1.4em;
    margin-bottom: 25px;
  }

  /* Artistes */
  .artists-grid {
    gap: 15px;
  }

  .artist-card h3 {
    font-size: 1.1em;
    bottom: 15px;
    left: 15px;
  }

  /* Billetterie */
  .tickets-highlight {
    padding: 15px;
    margin: 15px 5px;
  }

  .ticket-price {
    font-size: 2em;
  }

  .ticket-label {
    font-size: 1em;
  }

  .ticket-info {
    font-size: 0.9em;
  }

  /* Boutons et CTA */
  .btn, .discover-btn {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  /* Description */
  .about-description .highlight-text {
    font-size: 1.2em;
  }

  .about-description p {
    font-size: 0.9em;
    line-height: 1.6;
  }

  /* Footer Optimisé */
  .site-footer {
    padding: 40px 0 30px;
  }

  .footer-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 40px;
  }

  .footer-section {
    padding: 0 15px;
    text-align: center;
  }

  /* Masquer la section de navigation sur mobile */
  .footer-section:nth-child(2) {
    display: none;
  }

  /* Réorganiser les sections */
  .footer-sections {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Centre la première section (Astral Groove) */
  .footer-section:first-child {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Centre la section contact */
  .footer-section:last-child {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-title {
    font-size: 1.2em;
    margin-bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }

  .footer-description {
    font-size: 0.85em;
    line-height: 1.6;
    margin: 0 auto 20px;
    max-width: 300px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-contact li {
    justify-content: center;
    font-size: 0.85em;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-links li {
    margin: 0;
    font-size: 0.85em;
  }

  .footer-bottom {
    padding: 20px 15px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-legal {
    order: -1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-legal a {
    padding: 8px;
    font-size: 0.8em;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
  }

  .footer-legal a:hover {
    background: rgba(255, 71, 218, 0.05);
    border-color: rgba(255, 71, 218, 0.1);
  }

  .footer-legal .separator {
    display: none;
  }

  .footer-credits {
    font-size: 0.8em;
    opacity: 0.8;
  }

  .design-credit {
    margin-top: 5px;
  }
}

/* Styles pour l'orientation paysage sur mobile */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .main-nav {
    padding: 0.5rem;
  }

  .nav-link {
    padding: 0.3rem;
  }

  .festival-title {
    font-size: min(8vw, 50px);
  }
}

.artist-card {
  position: relative;
  text-decoration: none;
  color: white;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.artist-card:hover {
  transform: translateY(-10px);
}

.artist-image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 71, 218, 0.1), rgba(107, 70, 193, 0.1));
}

.artist-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-image::before {
  opacity: 0.5;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.05);
}

.artist-card h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: 0;
  font-size: 1.4em;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.artist-card:hover h3 {
  transform: translateY(-5px);
}

.site-footer {
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%);
  padding: 80px 0 30px;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,71,218,0.5),
    rgba(107,70,193,0.5),
    transparent
  );
  box-shadow: 0 0 15px rgba(255,71,218,0.3);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.footer-sections {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section {
  color: rgba(255, 255, 255, 0.8);
}

.footer-title {
  color: #fff;
  font-size: 1.2em;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ff47da, #6b46c1);
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95em;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social .social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-social .social-link:hover {
  color: #ff47da;
}

.footer-social .social-icon {
  width: 20px;
  height: 20px;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff47da;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95em;
}

.footer-icon {
  width: 16px;
  height: 16px;
  color: #ff47da;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9em;
}

.footer-credits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.design-credit {
  font-size: 0.95em;
}

.design-credit a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.design-credit a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ff47da, #6b46c1);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.design-credit a:hover {
  color: #ff47da;
}

.design-credit a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-legal {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ff47da;
}

.footer-legal .separator {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.3);
}

/* Styles pour la billetterie */
.ticket-details-section {
  padding: 30px 5% 120px;
  position: relative;
  background: transparent;
  overflow: hidden;
}

.ticket-details-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: radial-gradient(
    circle at center,
    rgba(255,71,218,0.15) 0%,
    rgba(107,70,193,0.1) 30%,
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.ticket-card {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(13, 12, 15, 0.6);
  border: 1px solid rgba(255,71,218,0.1);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 40px rgba(255,71,218,0.1);
}

.ticket-card:first-child {
  margin-bottom: 20px;
}

.ticket-card:last-child {
  margin-top: 20px;
}

.ticket-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,71,218,0.1), 
    transparent
  );
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,71,218,0.1);
}

.ticket-name {
  font-size: 2.2em;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff, #ff47da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.ticket-price-tag {
  font-size: 3.5em;
  font-weight: 900;
  color: #ff47da;
  text-shadow: 0 0 20px rgba(255,71,218,0.3);
  position: relative;
}

.ticket-card:first-child .ticket-price-tag::after {
  content: 'early-bird';
  position: absolute;
  bottom: -1.2em;
  right: 0;
  font-size: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
}

.ticket-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.ticket-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.ticket-feature:hover {
  border-color: rgba(255,71,218,0.2);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.05);
}

.feature-icon {
  width: 28px;
  height: 28px;
  color: #ff47da;
  filter: drop-shadow(0 0 8px rgba(255,71,218,0.4));
}

.feature-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15em;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.ticket-note {
  margin-top: 40px;
  padding: 25px 30px;
  background: rgba(255,71,218,0.05);
  border: 1px solid rgba(255,71,218,0.1);
  border-radius: 15px;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

.ticket-note strong {
  color: #ff47da;
  font-weight: 600;
}

.ticket-cta {
  margin-top: 50px;
  text-align: center;
}

.ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 1.2em;
  font-weight: 600;
  color: #000;
  background: #ff47da;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: 1px;
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,71,218,0.3);
}

.ticket-btn .btn-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.ticket-btn:hover .btn-icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .ticket-card {
    padding: 30px;
    margin: 30px 15px;
  }

  .ticket-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .ticket-price-tag::after {
    position: static;
    display: block;
    text-align: center;
    margin-top: 5px;
  }

  .ticket-features {
    grid-template-columns: 1fr;
  }

  .ticket-feature {
    padding: 20px;
  }

  .ticket-name {
    font-size: 2em;
  }

  .ticket-price-tag {
    font-size: 2.5em;
  }
}

/* Styles pour la page des mentions légales */
.legal-section {
  padding: 150px 5% 100px;
  min-height: 100vh;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255,71,218,0.03) 100%
  );
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.legal-block {
  margin: 60px 0;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.legal-block:hover {
  transform: translateY(-2px);
  border-color: rgba(255,71,218,0.4);
}

.legal-block h2 {
  color: #ff47da;
  font-size: 1.4em;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,71,218,0.2);
}

.legal-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.legal-text p {
  margin: 15px 0;
  font-size: 1.1em;
}

.legal-text ul {
  list-style: none;
  padding-left: 20px;
  margin: 15px 0;
}

.legal-text ul li {
  position: relative;
  padding-left: 25px;
  margin: 10px 0;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.9);
}

.legal-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ff47da, #6b46c1);
  border-radius: 50%;
  transform: translateY(-50%);
}

.legal-text strong {
  color: #fff;
  font-weight: 600;
}

.legal-text a {
  color: #ff47da;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-text a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 120px 5% 60px;
  }

  .legal-block {
    padding: 25px;
    margin: 40px 0;
  }

  .legal-block h2 {
    font-size: 1.2em;
  }

  .legal-text p {
    font-size: 1em;
  }
}

/* Classe utilitaire pour centraliser le texte (remplace les styles inline) */
.tickets-preview {
  padding: 120px 5%;
  margin-top: -150px;
  text-align: center;
  position: relative;
  background-color: transparent;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255, 71, 218, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(107, 70, 193, 0.15) 0%, transparent 60%),
    repeating-linear-gradient(45deg, 
      rgba(255, 255, 255, 0.03) 0%, 
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px, 
      transparent 10px
    );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2;
}

.tickets-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, 
    transparent,
    rgba(255, 71, 218, 0.08)
  );
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}

.tickets-preview::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -10%;
  width: 120%;
  height: 300px;
  background: linear-gradient(180deg,
    rgba(107,70,193,0.1) 0%,
    rgba(255,71,218,0.15) 100%
  );
  transform: skewY(-8deg);
  transform-origin: 100% 0;
  z-index: 1;
  pointer-events: none;
}

.tickets-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@keyframes shine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.tickets-preview .section-title {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    #ff47da 25%,
    #6b46c1 50%,
    #ff47da 75%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 8s linear infinite;
}

.tickets-highlight {
  margin: 60px auto;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Style spécifique pour tous les passes */
.mercury-pass,
.venus-pass,
.jupiter-pass {
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
  border: 1px solid rgba(255,71,218,0.2);
}

.tickets-highlight:hover {
  transform: translateY(-5px);
}

/* Effets de survol spécifiques pour chaque passe */
.mercury-pass:hover {
  border-color: rgba(255,71,218,0.4);
  box-shadow: 0 10px 30px rgba(255,71,218,0.15);
}

.venus-pass:hover {
  border-color: rgba(255, 198, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 198, 0, 0.15);
}

.jupiter-pass:hover {
  border-color: rgba(227, 37, 0, 0.4);
  box-shadow: 0 10px 30px rgba(227, 37, 0, 0.15);
}

.early-bird {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.ticket-label {
  font-size: 1.4em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.ticket-price {
  font-size: 3em;
  font-weight: 800;
  position: relative;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 71, 218, 0.4);
  letter-spacing: -1px;
}

.ticket-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1em;
  line-height: 1.6;
  margin-top: 15px;
}

/* Styles spécifiques pour les badges des passes */
.pass-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.mercury-pass .pass-badge,
.venus-pass .pass-badge,
.jupiter-pass .pass-badge {
  background: rgba(255,71,218,0.15);
  color: #ff47da;
}

/* Styles pour les listes d'avantages */
.ticket-features-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.ticket-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.ticket-features-list i {
  font-size: 1.2em;
}

.mercury-pass .ticket-features-list i,
.venus-pass .ticket-features-list i,
.jupiter-pass .ticket-features-list i {
  color: #ff47da;
}

.tickets-cta {
  margin-top: 40px;
}

.text-center {
  text-align: center;
}

.sponsors-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.sponsors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,71,218,0.3),
    rgba(107,70,193,0.3),
    transparent
  );
}

.sponsors-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.sponsors-track {
  display: flex;
  width: max-content;
  animation: scrollSponsors 30s linear infinite;
  /* Double le contenu pour une transition fluide */
  position: relative;
  left: 0;
}

.sponsors-track:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: inherit;
  /* Copie le contenu pour une boucle infinie */
  content: attr(data-content);
}

.sponsor-item {
  flex: 0 0 auto;
  margin: 0 40px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.sponsor-item:hover {
  opacity: 1;
}

.sponsor-item img {
  height: 60px;
  width: auto;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0%) brightness(100%);
}

@keyframes scrollSponsors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);  /* Ajusté pour une transition fluide avec 3 groupes */
  }
}

.contact-preview {
  padding: 200px 5% 120px;
  margin-top: -150px;
  position: relative;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 3;
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-highlight {
  margin: 60px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-highlight:hover {
  transform: translateY(-5px);
  border-color: rgba(255,71,218,0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sponsor-intro {
  font-size: 1.2em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(255, 71, 218, 0.2);
  letter-spacing: 0.5px;
}

.contact-intro-section {
  padding: 80px 5% 100px;
  position: relative;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(255,71,218,0.05) 100%);
}

.contact-intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(255,71,218,0) 0%, 
    #ff47da 50%, 
    rgba(255,71,218,0) 100%
  );
  box-shadow: 0 0 15px #ff47da;
}

.contact-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(13, 12, 15, 0.6);
  border: 1px solid rgba(255,71,218,0.1);
  border-radius: 30px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,71,218,0.3);
}

.contact-card h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #ff47da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-card p {
  font-size: 1.1em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.contact-card ul li {
  margin: 12px 0;
  padding-left: 25px;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05em;
}

.contact-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ff47da;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,71,218,0.5);
}

.contact-highlight {
  background: rgba(255,71,218,0.1);
  border-radius: 15px;
  padding: 20px;
  margin-top: 25px;
}

.contact-highlight strong {
  color: #ff47da;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card h2 {
    font-size: 1.5em;
  }

  .contact-card p {
    font-size: 1em;
  }
}

.contact-form-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, rgba(255,71,218,0.05) 0%, rgba(0,0,0,0) 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #fff, #ff47da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-form {
  display: grid;
  gap: 30px;
}

/* Styles pour les sections d'artistes */
.artiste-section {
  padding: 120px 5%;
  position: relative;
  background: linear-gradient(180deg, 
    rgba(255,71,218,0.05) 0%,
    rgba(107,70,193,0.05) 100%
  );
  overflow: hidden;
}

.artiste-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,71,218,0.3),
    rgba(107,70,193,0.3),
    transparent
  );
}

.artiste-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.artiste-info {
  padding: 40px;
}

.artiste-nom {
  font-size: 3em;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #ff47da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.artiste-horaire {
  font-size: 1.4em;
  color: #ff47da;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.artiste-description {
  font-size: 1.2em;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.artiste-genres {
  display: flex;
  gap: 15px;
}

.genre {
  padding: 8px 20px;
  background: rgba(255,71,218,0.1);
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 20px;
  color: #fff;
  font-size: 0.9em;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.genre:hover {
  background: rgba(255,71,218,0.2);
  border-color: rgba(255,71,218,0.4);
  transform: translateY(-2px);
}

.artiste-visuel {
  position: relative;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
}

.artiste-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.artiste-visuel:hover .artiste-image {
  transform: scale(1.05);
}

/* Styles pour les différentes sections d'artistes */
#artiste1 {
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(20, 40, 15, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

#artiste1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(95, 141, 78, 0.05)" d="M0,50 Q25,45 50,50 T100,50 L100,100 L0,100 Z"/></svg>');
  background-size: 200px;
  opacity: 0.15;
  z-index: 1;
  animation: floatBg 30s linear infinite;
}

#artiste1 .artiste-container {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(40, 61, 32, 0.6), rgba(86, 52, 32, 0.6));
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(95, 141, 78, 0.2);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

#artiste1 .artiste-nom {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 4em;
  background: linear-gradient(135deg, #E8B87D, #C49355);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(232, 184, 125, 0.3);
  letter-spacing: 2px;
  position: relative;
}

#artiste1 .artiste-nom::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #5F8D4E, transparent);
  border-radius: 2px;
}

#artiste1 .planete-titre {
  font-family: 'Audiowide', 'Orbitron', sans-serif;
  font-size: 1.8em;
  color: #5F8D4E;
  margin: -5px 0 25px 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 
    0 0 10px rgba(95, 141, 78, 0.5),
    2px 2px 0px rgba(232, 184, 125, 0.2);
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(95, 141, 78, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(95, 141, 78, 0.2);
  transform: skew(-5deg);
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(95, 141, 78, 0.5), 2px 2px 0px rgba(232, 184, 125, 0.2); }
  50% { text-shadow: 0 0 20px rgba(95, 141, 78, 0.8), 2px 2px 0px rgba(232, 184, 125, 0.4); }
}

#artiste1 .artiste-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3em;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#artiste1 .genre {
  background: rgba(95, 141, 78, 0.2);
  border: 1px solid rgba(95, 141, 78, 0.4);
  color: #E8B87D;
  font-weight: 500;
  padding: 10px 25px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

#artiste1 .genre:hover {
  background: rgba(95, 141, 78, 0.3);
  border-color: #5F8D4E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(95, 141, 78, 0.2);
}

#artiste1 .artiste-visuel {
  border: 1px solid rgba(95, 141, 78, 0.3);
  box-shadow: 0 0 30px rgba(95, 141, 78, 0.2);
  position: relative;
  overflow: hidden;
}

#artiste1 .artiste-visuel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(95, 141, 78, 0.2), rgba(86, 52, 32, 0.2));
  z-index: 2;
  mix-blend-mode: overlay;
}

@keyframes floatBg {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}

#artiste2 {
  background: #030B1C;
  position: relative;
  overflow: hidden;
}

#artiste2 .cosmic-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 157, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 123, 0, 0.1) 0%, transparent 50%);
  z-index: 1;
}

#artiste2 .laser-effects {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0%,
    rgba(0, 157, 255, 0.05) 1px,
    transparent 2px,
    rgba(255, 123, 0, 0.05) 3px,
    transparent 4px
  );
  animation: laserScan 10s linear infinite;
  z-index: 2;
}

#artiste2 .artiste-container {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, rgba(3, 11, 28, 0.8), rgba(0, 157, 255, 0.1));
  border: 1px solid rgba(0, 157, 255, 0.2);
  box-shadow: 
    0 0 50px rgba(0, 157, 255, 0.1),
    inset 0 0 30px rgba(255, 123, 0, 0.1);
  backdrop-filter: blur(10px);
}

#artiste2 .royal-frame {
  position: relative;
  padding: 20px;
  margin-bottom: 30px;
  border: 2px solid transparent;
  background: 
    linear-gradient(#030B1C, #030B1C) padding-box,
    linear-gradient(135deg, #FFD700, #FF7B00) border-box;
  border-radius: 10px;
}

#artiste2 .artiste-nom {
  font-size: 4.5em;
  font-weight: 900;
  background: linear-gradient(135deg, #FFD700, #FF7B00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

#artiste2 .cosmic-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8em;
  color: #009DFF;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 
    0 0 10px rgba(0, 157, 255, 0.5),
    0 0 20px rgba(0, 157, 255, 0.3);
  animation: cosmicPulse 2s infinite;
}

#artiste2 .artiste-description {
  color: #fff;
  font-size: 1.3em;
  line-height: 1.8;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#artiste2 .genre {
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.1), rgba(255, 123, 0, 0.1));
  border: 1px solid rgba(0, 157, 255, 0.3);
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 25px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

#artiste2 .genre:hover {
  border-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 157, 255, 0.3);
}

#artiste2 .artiste-visuel {
  position: relative;
  border: 1px solid rgba(0, 157, 255, 0.3);
  box-shadow: 0 0 50px rgba(0, 157, 255, 0.2);
  overflow: hidden;
}

#artiste2 .energy-waves {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 50% 50%,
    rgba(0, 157, 255, 0.1) 0%,
    transparent 10%,
    rgba(255, 123, 0, 0.1) 20%
  );
  z-index: 2;
  animation: energyPulse 4s ease-in-out infinite;
}

#artiste2 .geometric-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 157, 255, 0.2), rgba(255, 123, 0, 0.2));
  mix-blend-mode: overlay;
  z-index: 3;
}

@keyframes laserScan {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

@keyframes cosmicPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(0, 157, 255, 0.5), 0 0 20px rgba(0, 157, 255, 0.3); }
  50% { text-shadow: 0 0 20px rgba(0, 157, 255, 0.7), 0 0 40px rgba(0, 157, 255, 0.5); }
}

@keyframes energyPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

#artiste3 {
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
}

#artiste3 .industrial-noise {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.15"/></svg>');
  z-index: 1;
  mix-blend-mode: overlay;
}

#artiste3 .lava-cracks {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, transparent 45%, rgba(255, 0, 0, 0.1) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255, 0, 0, 0.1) 50%, transparent 55%);
  background-size: 10px 10px;
  animation: crackFlow 3s linear infinite;
  z-index: 2;
}

#artiste3 .artiste-container {
  position: relative;
  z-index: 3;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.9));
  border: 2px solid #333;
  box-shadow: 
    0 0 50px rgba(255, 0, 0, 0.1),
    inset 0 0 30px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 0, 100% 0, 98% 98%, 2% 100%);
}

#artiste3 .industrial-frame {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  background: #111;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
  border: 1px solid #333;
}

#artiste3 .artiste-nom {
  font-family: 'Industry', 'Roboto', sans-serif;
  font-size: 5em;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(45deg, #FF1100, #FF4400);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    0 0 20px rgba(255, 0, 0, 0.5),
    2px 2px 0px rgba(0, 0, 0, 1);
  letter-spacing: -2px;
  margin-bottom: 15px;
}

#artiste3 .industrial-subtitle {
  font-family: 'Industry', 'Roboto', sans-serif;
  font-size: 1.6em;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 8px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #FF0000;
}

#artiste3 .artiste-description {
  color: #CCC;
  font-size: 1.3em;
  line-height: 1.8;
  text-shadow: 1px 1px 0px #000;
  font-weight: 300;
}

#artiste3 .genre {
  background: #1A1A1A;
  border: 1px solid #333;
  color: #FF0000;
  font-weight: 700;
  padding: 12px 25px;
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
  transition: all 0.3s ease;
}

#artiste3 .genre:hover {
  background: #FF0000;
  color: #000;
  transform: translateY(-3px) skew(-5deg);
  box-shadow: 
    5px 5px 0px #000,
    0 0 20px rgba(255, 0, 0, 0.4);
}

#artiste3 .artiste-visuel {
  position: relative;
  border: 4px solid #333;
  box-shadow: 
    10px 10px 0px #000,
    0 0 50px rgba(255, 0, 0, 0.2);
  clip-path: polygon(0 0, 100% 0, 95% 95%, 5% 100%);
  overflow: hidden;
}

#artiste3 .steel-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(45deg, rgba(0,0,0,0.2) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,0.2) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.2) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.2) 75%);
  background-size: 20px 20px;
  z-index: 2;
  mix-blend-mode: overlay;
}

#artiste3 .industrial-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,0,0,0.1), transparent);
  mix-blend-mode: color;
  z-index: 3;
}

@keyframes crackFlow {
  0% { background-position: 0 0; }
  100% { background-position: 10px 10px; }
}

#artiste3 .artiste-image {
  filter: contrast(1.2) saturate(0.8);
  transition: all 0.3s ease;
}

#artiste3 .artiste-image:hover {
  filter: contrast(1.4) saturate(1) brightness(1.1);
}

#artiste4 {
  position: relative;
  background: #000B14;
  overflow: hidden;
}

#artiste4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at center, rgba(255, 105, 180, 0.1) 0%, transparent 70%),
    radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.1) 0%, transparent 60%);
  filter: blur(30px);
  z-index: 1;
}

#artiste4 .disco-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(45deg, transparent 95%, rgba(255,255,255,0.05) 95%),
    linear-gradient(-45deg, transparent 95%, rgba(255,255,255,0.05) 95%);
  background-size: 30px 30px;
  opacity: 0.3;
  animation: discoGridMove 20s linear infinite;
  z-index: 2;
}

#artiste4 .artiste-container {
  position: relative;
  z-index: 3;
  background: rgba(0, 11, 20, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#artiste4 .artiste-nom {
  font-family: 'Rubik', sans-serif;
  font-size: 5em;
  font-weight: 900;
  background: linear-gradient(45deg,
    #FF69B4,
    #00CED1,
    #FF8C00,
    #FF1493
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: discoColors 8s ease infinite;
  text-shadow: 
    0 0 30px rgba(255, 105, 180, 0.5),
    3px 3px 0 rgba(0, 0, 0, 0.8);
  letter-spacing: -2px;
  margin-bottom: 20px;
}

#artiste4 .funky-subtitle {
  font-family: 'Righteous', cursive;
  font-size: 1.8em;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 30px;
  background: linear-gradient(45deg,
    #FF69B4,
    #FFA500,
    #FFD700,
    #00CED1
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    3px 3px 0 rgba(0, 0, 0, 0.5),
    0 0 20px rgba(255, 105, 180, 0.5);
  animation: funkColors 4s ease infinite;
}

@keyframes funkColors {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#artiste4 .artiste-description {
  color: #E0E0E0;
  font-size: 1.3em;
  line-height: 1.8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#artiste4 .genre {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50px;
  color: #FF69B4;
  font-weight: 600;
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#artiste4 .genre::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

#artiste4 .genre:hover {
  background: rgba(255, 105, 180, 0.2);
  color: #FFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 5px 20px rgba(255, 105, 180, 0.3),
    0 0 30px rgba(255, 105, 180, 0.2);
}

#artiste4 .genre:hover::before {
  transform: translateX(100%) rotate(45deg);
}

#artiste4 .artiste-visuel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 30px rgba(255, 105, 180, 0.3),
    0 0 60px rgba(0, 206, 209, 0.2);
}

#artiste4 .disco-overlay {
  position: absolute;
  inset: 0;
  background: 
    repeating-radial-gradient(
      circle at center,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.03) 12px,
      transparent 14px
    );
  mix-blend-mode: overlay;
  animation: discoSpin 20s linear infinite;
}

#artiste4 .artiste-image {
  filter: saturate(1.3) contrast(1.1);
  transition: all 0.5s ease;
}

#artiste4 .artiste-image:hover {
  filter: saturate(1.5) contrast(1.2) brightness(1.1);
}

@keyframes discoColors {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes discoGridMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes discoSpin {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.5) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

@media (max-width: 1024px) {
  .artiste-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artiste-info {
    padding: 20px;
    text-align: center;
  }

  .artiste-genres {
    justify-content: center;
  }

  .artiste-visuel {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .artiste-nom {
    font-size: 2.5em;
  }

  .artiste-horaire {
    font-size: 1.2em;
  }

  .artiste-description {
    font-size: 1.1em;
  }

  .artiste-visuel {
    height: 300px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1em;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 10px;
  background: rgba(13, 12, 15, 0.6);
  color: white;
  font-size: 1em;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff47da;
  box-shadow: 0 0 15px rgba(255,71,218,0.2);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff47da' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit {
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  background: #ff47da;
  color: #000;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255,71,218,0.3);
}

.form-submit .btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.form-submit:hover .btn-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .form-title {
    font-size: 2em;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px;
  }
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

.info-icon {
  width: 24px;
  height: 24px;
  color: #ff47da;
}

.contact-cta {
  margin-top: 40px;
}

.contact-preview .section-title {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    #ff47da 25%,
    #6b46c1 50%,
    #ff47da 75%,
    rgba(255, 255, 255, 0.8) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 8s linear infinite;
}

/* Styles pour la section About */
.about-description {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-description .highlight-text {
  font-size: 1.8em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5em;
  text-shadow: 0 0 25px rgba(255,71,218,0.4);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.about-description .main-text {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin: 1.5em 0;
  line-height: 1.8;
  text-align: center;
}

.about-description .feature-text {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(255,71,218,0.1), rgba(107,70,193,0.1));
  border: 1px solid rgba(255,71,218,0.2);
  border-radius: 20px;
  padding: 30px;
  margin: 2em 0;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.about-description .feature-text:hover {
  transform: translateY(-5px);
}

.about-description .vision-text {
  font-size: 1.3em;
}

/* Styles optimisés pour les sections artistes */
.artiste-section {
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(255,71,218,0.05) 0%,
    rgba(107,70,193,0.05) 100%
  );
}

.artiste-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.artiste-info {
  flex: 1;
}

.artiste-visuel {
  flex: 1;
  position: relative;
}

.artiste-nom {
  font-size: 2.5em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, #ff47da);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.planete-titre {
  font-size: 1.2em;
  color: #ff47da;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.artiste-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.artiste-genres {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.genre {
  padding: 6px 12px;
  background: rgba(255, 71, 218, 0.1);
  border: 1px solid rgba(255, 71, 218, 0.2);
  border-radius: 20px;
  font-size: 0.9em;
  color: #fff;
}

.artiste-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  object-fit: cover;
}

@media (max-width: 768px) {
  .artiste-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
  
  .artiste-section {
    padding: 40px 4%;
  }

  .artiste-info {
    width: 100%;
    text-align: center;
  }

  .artiste-visuel {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .artiste-genres {
    justify-content: center;
  }
}



@media (max-width: 380px) and (max-height: 670px) {
  .artiste-section {
    padding: 25px 10px;
  }

  .artiste-container {
    gap: 15px;
  }

  .artiste-nom {
    font-size: 1.5em;
    margin-bottom: 5px;
  }

  .planete-titre {
    font-size: 0.9em;
    margin-bottom: 12px;
  }

  .artiste-description {
    font-size: 0.75em;
    line-height: 1.3;
    margin-bottom: 12px;
    padding: 0 5px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.2px;
  }

  .genre {
    padding: 3px 8px;
    font-size: 0.75em;
  }

  .artiste-visuel {
    max-height: 180px;
  }

  .artiste-image {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
  }
}

/* Optimisation spécifique pour iPhone SE et petits appareils */
@media (max-width: 380px) {
  .site-footer {
    padding: 25px 0 15px;
  }

  .footer-sections {
    gap: 20px;
    margin-bottom: 25px;
  }

  .footer-section {
    padding: 0 10px;
  }

  .footer-title {
    font-size: 1.1em;
    margin-bottom: 12px;
  }

  .footer-title::after {
    width: 30px;
  }

  .footer-description {
    font-size: 0.8em;
    margin: 0 auto 15px;
    max-width: 280px;
  }

  .footer-contact li {
    font-size: 0.8em;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-links li {
    font-size: 0.8em;
  }

  .footer-bottom {
    padding: 15px 10px;
    gap: 15px;
  }

  .footer-legal {
    gap: 8px;
  }

  .footer-legal a {
    padding: 6px;
    font-size: 0.75em;
  }

  .footer-credits,
  .design-credit {
    font-size: 0.75em;
  }

  .footer-social .social-icon {
    width: 18px;
    height: 18px;
  }

  .footer-icon {
    width: 14px;
    height: 14px;
  }
}
