        body {
            margin: 0;
            padding: 0;
            background: #fff;
            font-family: "Courier New", monospace;
            display: flex;
            height: 100vh;
            overflow: hidden;
        }
        
        #left-panel {
            width: 20%;
            min-width: 200px;
            border-right: 1px solid #000;
            overflow-y: auto;
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            background: #fff;
            z-index: 1000;
        }
        
        #right-panel {
            margin-left: 150px;
            width: 100%;
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        

    /* MUSIC PLAYER */    
        #winamp-player {
            width: 100%;
            background: #fff;
        }
        
        #winamp-header {
            background: #000;
            padding: 10px;
            color: #fff;
            border-bottom: 1px solid #000;
            text-align: center;
        }
        
        #album-art {
            width: 100%;
            height: 250px;
            background: #fff;
            border-bottom: 1px solid #000;
            display: inline-block;
            align-items: center;
            justify-content: center;
        }
        
        #album-art img {
            width: 100%;
            height: 100%;
        }
        
        #controls {
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 15px;
            padding-bottom: 50px;
        }
        
        #track-info {
            border: 1px solid #000;
            padding: 8px;
            min-height: 60px;
            overflow-y: auto;
            margin-bottom: 15px;
        }
        
#toggle-prompt {
    background: none;
    border: 1px solid #000;
    padding: 3px 8px;
    border-radius: 3px;
    margin-top: 5px;
}

#toggle-prompt:hover {
    background-color: #eee;
}

.track-prompt {
    margin-top: 10px;
    padding: 8px;
    border-top: 1px dashed #999;
    font-style: italic;
    font-size: 13px;
    color: #555;
}



        #progress-container {
            background: #fff;
            height: 30px;
            width: 100%;
            border: 1px solid #000;
            position: relative;
            cursor: pointer;
            margin-bottom: 15px;
        }
        
        #progress-bar {
            background: #000;
            height: 100%;
            width: 0%;
        }
        
        #time-display {
            position: absolute;
            top: 8px;
            right: 8px;
        }
        
        button {
            background: #fff;
            border: 1px solid #000;
            margin-right: 5px;
            margin-top: 15px; 
            height: 30px; 
            cursor: pointer;
            font-family: "Courier New", monospace;
        }
        
        #playlist {
            border-top: 1px solid #000;
        }
        
        .playlist-item {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #000;
        }
        
        .playlist-item:hover {
            background: #000;
            color: #fff;
        }
        
        .playlist-item.active {
            background: #000;
            color: #fff;
        }



/* Blocs flottants */    
        
.floating-block {
    position: absolute;
    width: 150px;
    height: auto;
    background: #fff;
    border: 1px solid #000;
    cursor: move;
    padding: 10px;
    transition: all 0.3s ease; /* Animation fluide */
}

.floating-block img {
    z-index: 0;
    display: block;
    height: 120px;
    width: 120px;
    filter: grayscale(100%); /* Noir et blanc par défaut */
    transition: filter 0.3s ease, width 0.3s ease; /* Animation fluide */
}

.floating-block:hover img {
    filter: grayscale(0%); /* Couleur au survol */
}

        /* coeurseur */

        #heart-trail {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
  }

  .heart {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    transform: rotate(45deg);
    pointer-events: none;
    animation: fadeOut 1s forwards;
  }

  .heart:before,
  .heart:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
  }

  .heart:before {
    top: -7px;
    left: 0;
  }

  .heart:after {
    top: 0;
    left: -7px;
  }

  @keyframes fadeOut {
    0% { opacity: 0.7; }
    100% { opacity: 0; }
  }


  /*info tab*/

  .info-tab-container {
    position: fixed;
    top: 0px;
    right: 10px;
    z-index: 1000;
    width: 30px; /* Largeur fine de l'onglet */
  }

  .info-tab {
    background-color: #000;
    color: #fff;
    padding: 5px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    width: 30px;
    transition: width 0.3s;
  }

  .info-content {
    display: none;
    position: absolute;
    right: 30px;
    top: 0;
    background-color: white;
    border: 1px solid #000;
    padding: 15px;
    width: 400px;
    font-size: 14px;
  }

  .info-tab-container:hover .info-content {
    display: block;
  }

  /* LINKS */

  /* État par défaut (non visité) */
a:link, a:visited {
    color: #000; /* Couleur par défaut */
    text-decoration: none; /* Soulignement optionnel */
}

/* État au survol */
a:hover {
    text-decoration: underline; /* Soulignement optionnel */
}
