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


body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000000;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 10vh;
}

/* logo */
.logo-link {
  color: white;
  letter-spacing: -2px;
  font-weight: bold;
  font-size: 1.6rem;
  text-decoration: none;
}

.logo-link:hover {
  color: #dcdcdc; /* léger effet hover */
}


.logo a {
  font-family: 'Asset';
  letter-spacing: -2px;
}


/* Navbar */
.navbar {
  width: 100%;
  max-width: auto;
  padding: 20px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 90px;
}


/* Liens desktop */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

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

/* Burger caché sur desktop */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

/* Responsive : mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgb(0, 0, 0);
    padding: 15px;
    border-radius: 10px;
    width: 200px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}

.nav-links li a:hover {
  color: #2800e8;
}

/* Bouton "Télécharger" */
.btn-download {
  padding: 10px 24px;
  background: #000;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-download:hover {
  background: #2800e8;
}


body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #000000, #000000);
  color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

h1 span {
  color: #2800e8;
}

p.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.7);
}

/* Grid des artistes */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.artist-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.artist-card:hover {
  background: rgba(40, 0, 232, 0.8);
  box-shadow: 0 0 20px rgba(40, 0, 232, 0.7);
  transform: translateY(-5px);
}

.artist-avatar {
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: #2800e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 15px;
}

.artist-name {
  font-size: 1.1rem;
  font-weight: bold;
}

.artist-genre {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 5px 0;
}

.artist-followers {
  font-size: 0.9rem;
  color: #0ff;
  margin-top: 8px;
}

/* Section genres */
.genres {
  margin-top: 60px;
}

.genres h2 {
  text-align: center;
  margin-bottom: 30px;
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.genre-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.genre-card:hover {
  background: rgba(40, 0, 232, 0.8);
  box-shadow: 0 0 15px rgba(40, 0, 232, 0.7);
  transform: translateY(-3px);
}

.genre-card span {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

/* CTA section */
.cta-section {
  background: linear-gradient(135deg, rgba(40, 0, 232, 0.8), rgba(10, 10, 30, 0.9));
  backdrop-filter: blur(20px);
  border-radius: 30px;
  max-width: 1000px;
  margin: 70px auto;
  text-align: center;
  padding: 60px 30px;
  box-shadow: 0 0 30px rgba(40, 0, 232, 0.4);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-in-out;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 10%, transparent 50%);
  animation: rotateBg 12s linear infinite;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #2800e8, #4a24ff);
  color: white;
  padding: 15px 40px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(40, 0, 232, 0.5);
}

.cta-button:hover {
  background: linear-gradient(135deg, #4a24ff, #2800e8);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(40, 0, 232, 0.7);
}

/* Animations */
@keyframes rotateBg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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


/* footer zone */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 40px 70px;
  font-family: 'Poppins', sans-serif;
  width: 100%;

}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 105px;
  margin-top: 50px;
}
.footer-logo img {
  width: 200px;
  height: auto;
  margin-top: auto;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-column h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: bold;
}
.footer-column a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  transition: 0.3s;
}
.footer-column a:hover {
  color: #2800e8;
}
.footer-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.store-btn {
  background: #000;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
}
.store-btn:hover {
  background: #2800e8;
}
/* Ligne */
.footer hr {
  border: 0;
  border-top: 1px solid #ddd;
  margin: 20px 0;
}
/* Bas du footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #666;
}
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  text-decoration: none;
  font-size: 0.8rem;
  color: #ffffff;
  transition: 0.3s;
}
.footer-legal a:hover {
  color: #2800e8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
  .footer-stores {
    flex-direction: row;
    gap: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Sélecteur de langue */
#languageSwitcher {
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #2800e8;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
}
#languageSwitcher:focus {
  outline: 2px solid #2800e8;
}

/* Variables CSS */
:root {
  --bg: #0a0a0a;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.06);
  --accent: #2800e8;
  --muted: rgba(255,255,255,0.75);
  --glass-shadow: 0 8px 30px rgba(0,0,0,0.6);
  --max-width: 1100px;
  --radius: 16px;
  --gap: 1.2rem;
}
