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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background-color: #1b1b1b;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 27, 27, 0);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  height: 80px;
  display: flex;
  align-items: center;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  position: fixed;
  left: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

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

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

.nav-links a.active {
  color: #a135ff;
  font-weight: bold;
}

.shop-btn {
  background: linear-gradient(135deg, #a135ff, #7c1ef7);
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.shop-btn:hover {
  transform: scale(1.05);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
  position: relative;
}

.burger-menu {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  position: fixed;
  right: 2rem;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 200px;
  background: rgba(27, 27, 27, 0.98);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem 0;
  z-index: 1001;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-links li {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links li:last-child {
  border-bottom: none;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  display: block;
  padding: 1rem 1.5rem;
  transition: background 0.2s ease;
}

.mobile-menu-links a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: #a135ff;
}

.close-menu {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
}
.hero .hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 250px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #1b1b1b);
}

.hero-aftermovie {
  position: relative;
  height: 80vh;
}
.hero-aftermovie .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.hero-aftermovie .hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 250px;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #1b1b1b);
}

/* Discography Section */
.discography {
  background: #1b1b1b;
  padding: 5rem 2rem;
  min-height: 60vh;
}

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

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #a135ff;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.album-slider {
  overflow: hidden;
  border-radius: 15px;
}

.album-track {
  display: flex;
  transition: transform 0.5s ease;
}

.album-card {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

.album-image {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  -o-object-fit: cover;
     object-fit: cover;
  border: rgba(255, 255, 255, 0.2980392157) 2px solid;
  transition: 0.75s;
}

.album-image:hover {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  -o-object-fit: cover;
     object-fit: cover;
  border: rgba(255, 255, 255, 0.9294117647) 2px solid;
  transition: 0.75s;
}

.album-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.album-year {
  font-size: 1.2rem;
  color: #a135ff;
  opacity: 0.8;
}

/* Navigation Arrows - Desktop Only */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a135ff;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 10;
  display: none;
}

.nav-arrow:hover {
  background: #a135ff;
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: -80px;
}

.next-arrow {
  right: -80px;
}

/* Slider Indicators */
.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #a135ff;
}

/* Footer */
.footer {
  background: #0f0f0f;
  padding: 2rem;
  text-align: center;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .shop-btn {
    display: none;
  }
  .mobile-nav {
    display: flex;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .album-image {
    width: 250px;
    height: 250px;
  }
  .album-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 769px) {
  .nav-arrow {
    display: block;
  }
}
/* Curtain Effect */
.curtain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.curtain-left,
.curtain-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #8B0000, #FF0000, #DC143C);
  background-image: url("../IMG/velvet.png");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  box-shadow: inset -10px 0 20px rgba(0, 0, 0, 0.3);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  will-change: transform, clip-path;
}

.curtain-left {
  left: 0;
  transform-origin: left center;
}

.curtain-right {
  right: 0;
  transform-origin: right center;
  box-shadow: inset 10px 0 20px rgba(0, 0, 0, 0.3);
}

.curtain-left::before,
.curtain-right::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2));
}

.curtain-left::before {
  right: 0;
}

.curtain-right::before {
  left: 0;
  background: linear-gradient(270deg, transparent, rgba(0, 0, 0, 0.2));
}

/* Curtain opened state */
.curtain-opened .curtain-left {
  transform: translateX(-100%);
}

.curtain-opened .curtain-right {
  transform: translateX(100%);
}

/* ================== GALLERY SECTION ================== */
.gallery {
  background: #1b1b1b;
  padding: 5rem 2rem;
  min-height: 60vh;
}

.gallery .section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 3rem;
  color: #a135ff;
}

.gallery-event {
  margin-bottom: 60px;
}

.event-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

/* ===== SLIDER STRUCTURE ===== */
.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-track {
  display: flex;
  gap: 15px;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.gallery-item {
  min-width: calc(33.33% - 10px);
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.gallery-year {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
  font-size: 1.2rem;
  color: #a135ff;
  opacity: 0.8;
}

/* ===== ARROWS ===== */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a135ff;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 10;
}

.gallery-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: -60px;
}

.next-arrow {
  right: -60px;
}

/* ===== INDICATORS ===== */
.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.gallery-indicators .dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.gallery-indicators .dot.active {
  background: #a135ff;
}

.event-title {
  font-size: clamp(1.2rem, 2vw, 1.8rem); /* Taille adaptative */
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.gallery-award-center {
  display: flex;
  align-items: center;
  justify-content: center; /* centre horizontalement */
  gap: 15px;
  margin-top: 20px; /* espace par rapport au carrousel */
}

.medal {
  width: 35px;
  height: 35px;
  background: radial-gradient(circle at 30% 30%, #af991a, #ffb700);
  border: 2px solid #b8a033;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.award-text {
  font-size: 1.2rem;
  font-weight: 600;
  background: linear-gradient(90deg, #af991a, #ffb700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 140, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .gallery-item {
    min-width: 100%;
  }
  .gallery-track {
    gap: 10px;
  }
  .prev-arrow,
  .next-arrow {
    display: none;
  }
}
/* Concert Section */
.concert-section {
  margin-top: 80px;
  padding: 2rem;
  min-height: 100vh;
  background: #1b1b1b;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concert-title {
  text-align: center;
  font-size: 3rem;
  color: #a135ff;
  margin-bottom: 2rem;
}

/* Road Container */
.road-container {
  width: 100%;
  max-width: 1200px;
  height: 80vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Straight Road */
.road {
  width: 120px;
  height: 100%;
  background: #333333;
  position: relative;
  border-left: 4px solid #666;
  border-right: 4px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
}

.road-line {
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(to bottom, #ffffff 0px, #ffffff 30px, transparent 30px, transparent 50px);
}

/* Three.js Canvas */
#car-canvas {
  position: absolute;
  width: 120px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

/* Concert stops */
.concert-stops {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.concert-stop {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 20;
  pointer-events: all;
}

.concert-stop.left {
  flex-direction: row;
  right: calc(50% + 80px);
}

.concert-stop.right {
  flex-direction: row-reverse;
  left: calc(50% + 80px);
}

.calendar-icon {
  background: linear-gradient(135deg, #a135ff, #7c1ef7);
  color: white;
  border-radius: 8px;
  padding: 12px;
  min-width: 70px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(161, 53, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.calendar-day {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

.calendar-month {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 2px;
}

.concert-link {
  background: rgba(27, 27, 27, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 10px;
  border: 2px solid rgba(161, 53, 255, 0.3);
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 160px;
}

.concert-link:hover {
  border-color: #a135ff;
  background: rgba(161, 53, 255, 0.1);
  transform: translateY(-2px);
}

.concert-city {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.concert-venue {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Progress indicator */
.progress-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  font-size: 0.9rem;
  border: 2px solid rgba(161, 53, 255, 0.3);
  z-index: 100;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .concert-title {
    font-size: 2.2rem;
  }
  .concert-section {
    padding: 1rem;
  }
  .road-container {
    height: 70vh;
  }
  .road {
    width: 80px;
  }
  #car-canvas {
    width: 80px;
  }
  .concert-stop {
    flex-direction: column !important;
    gap: 10px;
    align-items: center;
  }
  .concert-stop.left {
    right: calc(50% + 50px);
    transform: translateX(50%);
  }
  .concert-stop.right {
    left: calc(50% + 50px);
    transform: translateX(-50%);
  }
  .calendar-icon {
    min-width: 60px;
    padding: 10px;
  }
  .calendar-day {
    font-size: 1.1rem;
  }
  .calendar-month {
    font-size: 0.7rem;
  }
  .concert-link {
    visibility: hidden;
  }
  .concert-city {
    font-size: 1rem;
  }
  .concert-venue {
    font-size: 0.8rem;
  }
  .progress-indicator {
    bottom: 20px;
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .concert-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .road {
    width: 60px;
  }
  #car-canvas {
    width: 60px;
  }
  .concert-stop.left {
    right: calc(50% + 40px);
  }
  .concert-stop.right {
    left: calc(50% + 40px);
  }
  .calendar-icon {
    min-width: 50px;
    padding: 8px;
  }
  .calendar-day {
    font-size: 1rem;
  }
  .concert-link {
    visibility: hidden;
  }
}
/* Main Content */
.main-content {
  margin-top: 80px;
  padding: 2rem;
  min-height: calc(100vh - 80px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Song Header */
.song-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 1.5rem;
}

.song-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #a135ff;
}

.song-info {
  color: #888;
  font-size: 1rem;
  margin-top: 0.3rem;
}

/* Lyrics Layout */
.lyrics-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.lyrics-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(161, 53, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.panel-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #a135ff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  justify-content: center;
}

.lyrics-content {
  font-size: 1.2rem;
  line-height: 2;
  color: #ffffff;
  font-family: "Georgia", serif;
}

.lyric-line {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 0.8rem;
  margin: 0.3rem 0;
  border-radius: 8px;
  position: relative;
}

.lyric-line:hover {
  background: rgba(161, 53, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 3px 15px rgba(161, 53, 255, 0.3);
}

.lyric-line.selected {
  background: rgba(161, 53, 255, 0.2);
  border-left: 4px solid #a135ff;
  transform: translateX(10px);
  animation: glow 2s ease-in-out infinite alternate;
}

.verse-title {
  font-size: 1rem;
  color: #a135ff;
  font-weight: bold;
  margin: 1.5rem 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
  opacity: 0.7;
}

.verse-title:hover {
  background: none;
  transform: none;
  box-shadow: none;
}

@keyframes glow {
  from {
    box-shadow: 0 3px 15px rgba(161, 53, 255, 0.3);
  }
  to {
    box-shadow: 0 3px 25px rgba(161, 53, 255, 0.6);
  }
}
/* Explanation Panel */
.explanation-panel {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid rgba(255, 107, 53, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: sticky;
  top: 100px;
  max-height: 80vh;
}

.explanation-content {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  height: 400px;
  overflow-y: auto;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.explanation-placeholder {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 180px;
  font-style: italic;
  font-size: 1.1rem;
}

.explanation-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff6b35;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.explanation-line {
  font-weight: bold;
  color: #a135ff;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-style: italic;
}

.explanation-text {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .song-title {
    font-size: 2.2rem;
  }
  .song-info {
    flex-direction: column;
    align-items: center;
  }
  .lyrics-container {
    align-items: center;
    flex-direction: column;
  }
  .explanation-panel {
    display: none;
  }
  .lyrics-panel {
    padding: 1.5rem;
  }
  .panel-title {
    margin-bottom: 0rem;
    font-size: 1.5rem;
  }
  .lyrics-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .lyric-line:hover {
    background: none;
    transform: none;
    box-shadow: none;
  }
  .lyric-line {
    cursor: default;
    padding: 0.3rem 0;
  }
  .main-content {
    padding: 1rem;
  }
}
/* Song Selection */
.song-selector {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 2rem;
  border: 2px solid rgba(161, 53, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.song-select {
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(161, 53, 255, 0.3);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: white;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.song-select:focus {
  outline: none;
  border-color: #a135ff;
  box-shadow: 0 0 15px rgba(161, 53, 255, 0.3);
}

.song-select option {
  background: #1b1b1b;
  color: white;
  padding: 0.5rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #a135ff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8B2BF7;
}

.instruction-hint {
  background: rgba(161, 53, 255, 0.1);
  border: 1px solid rgba(161, 53, 255, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Conteneur principal */
.album-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 60px;
  max-width: 1200px;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
}

/* Image de l'album */
.album-img {
  flex: 1;
  max-width: 400px;
}

.album-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.4);
  border: #aeaeae 2px solid;
}

/* Infos de l'album */
.album-info {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.album-title {
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0;
}

.album-artist {
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 10px;
  margin-top: -6%;
}

/* Liste des titres */
.tracklist {
  border: 2px solid #aeaeae;
  border-radius: 8px;
  padding: 15px;
  background-color: #222222;
  box-shadow: 0px 4px 10px rgba(194, 194, 194, 0.3);
}

.tracklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tracklist li {
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
  transition: color 0.3s ease;
}

.tracklist li:last-child {
  border-bottom: none;
}

.tracklist li:hover {
  color: #9850d8;
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */