  @font-face {
      font-family: 'dsrom10';
      src: url('/res/dsrom10.ttf') format('truetype');
    }

    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: black;
      color: #e0e0e0;
      background-image: url('/res/background.png');
      background-size: cover;        /* Pour couvrir toute la page */
      background-position: center;   /* Centrage de l’image */
      background-repeat: no-repeat;  /* Ne pas répéter l’image */
      background-attachment: fixed;  /* L’image reste fixe au scroll */
    }

    header {
      background: rgba(0, 0, 0, 0.8);
      padding: 2rem 1rem;
      display: flex;
      flex-direction: column; /* Changed to column to stack elements */
      align-items: center; /* Center horizontally */
      justify-content: center; /* Center vertically */
      gap: 1rem; /* Reduced gap for closer stacking */
      flex-wrap: wrap;
    }

    .group-name {
      font-family: 'dsrom10', sans-serif;
      font-size: 5rem;
      color: white;
      text-shadow: 0 0 10px #aaa;
      /* flex: 1 1 300px; Removed flex properties that interfere with column layout */
      text-align: center; /* Center the text */
      width: 100%; /* Take full width */
    }

.group-name a {
    text-decoration: none; /* Supprime le soulignement */
    color: inherit;      /* Utilise la couleur du texte parent (ex: blanc ou gris si défini pour le header) */
    /* cursor: default;     /* Change le curseur pour ne pas indiquer un lien */
}

/* Optionnel: pour s'assurer qu'il ne change pas d'apparence au survol ou après avoir été visité */
.group-name a:hover,
.group-name a:visited,
.group-name a:active {
    text-decoration: none;
    color: inherit;
}
    .album-cover img {
      max-width: 300px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0,255,255,0.3);
    }

    .album-title {
      font-family: 'Roboto', sans-serif;
      font-size: 1.8rem;
      font-weight: bold;
      color: #cccccc;
    }

    .description-box {
      background-color: rgba(20, 20, 20, 0.7);
      border-left: 4px solid #00ffff;
      padding: 1rem;
      margin: 2rem;
      font-size: 1.1rem;
      color: #cccccc;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .content {
      padding: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }

    h2 {
      font-size: 2rem;
      color: #ffffff;
      margin-top: 2rem;
    }

    .track {
      margin: 2rem auto;
      padding: 1rem;
      background: rgba(20, 20, 20, 0.7);
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }

    audio {
      width: 100%;
      margin-top: 1rem;
    }

    .lyrics {
      white-space: pre-wrap;
      margin-top: 1rem;
      font-size: 0.95rem;
      color: #cfcfcf;
      display: none;
    }

    .toggle-button {
      margin-top: 1rem;
      background: transparent;
      border: 1px solid #00ffff;
      color: #00ffff;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
    }

    h1 {
      font-family: 'dsrom10', sans-serif;
      font-size: 4rem;
      color: white;
      margin-bottom: 1.5rem;
      text-shadow: 0 0 15px #00ffff;
    }

    .cover {
      max-width: 300px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
      margin-bottom: 2rem;
    }

    .description {
      max-width: 800px;
      background: rgba(0, 0, 0, 0.6);
      padding: 1.5rem;
      border-radius: 10px;
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    .nav-buttons {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .nav-buttons a {
      text-decoration: none;
      background-color: rgba(0, 255, 255, 0.1);
      border: 2px solid #00ffff;
      color: #00ffff;
      padding: 1rem 2rem;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.4s ease;
      box-shadow: 0 0 10px #00ffff, 0 0 20px rgba(0, 255, 255, 0.3);
      position: relative;
    }

    .nav-buttons a::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      box-shadow: 0 0 25px 5px rgba(0, 255, 255, 0.4);
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    .nav-buttons a:hover::after {
      opacity: 1;
    }

    .nav-buttons a:hover {
      background-color: rgba(0, 255, 255, 0.2);
      transform: translateY(-3px);
    }
