
    body {
      margin: 0;
      display: flex;
      font-family: "Handjet", sans-serif;
      overflow: hidden;
       background-image:url( "bg.gif");
        background-position: center;
    background-repeat: no-repeat;
    background-color: #00000060;
    background-size: cover;
    
    }

   
  nav {
  width: 200px;
  background: #111111;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  overflow-y: auto;
background-color: #3f3b3b25;
  scrollbar-width: none; 
}
nav::-webkit-scrollbar {
  display: none; 
}



    nav a {
      color: white;
      text-decoration: none;
      
      margin: 10px 0;
      font-size: 15px;
      transition: 0.3s;
      
    }

    nav a:hover {
      color: #ff0055;
    }

    nav a.active {
      display: block;
      width: 110%;
     border-radius: 10px;
  color: #ff0055; 
   background-color: #581f1f5b;
 text-align: center;
  font-size: 20px;  
  font-weight: bold;
  transition: color 0.3s ease, transform 0.3s ease;
}
    body.artist-page .dropdown-link{color: #1042e4;}
   .container {
  margin-left: 200px; 
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;

  scrollbar-width: none;  
}
.container::-webkit-scrollbar {
  display: none; 
}

    .artist {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      padding: 40px;
      scroll-snap-align: start;
    }

    .artist img {
      max-width: 400px;
      border-radius: 12px;
       transition: all 0.3s ease; 
    }
    .artist img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
 .bioimg:hover .content {
  transform: translateX(10px);
  opacity: 0.9;
}
 .content:hover 
  { transform: translateX(10px);
    opacity: 0.9;}
    .content{ transition: all 0.3s ease; }

    .artist .content {
      max-width: 600px;
    }

    .artist h2 {
      font-family: "Micro 5", sans-serif;
      color: aliceblue;
      font-size: 48px;
      margin: 0 0 20px;
      text-align: center;
    }

    .artist p {
      font-size: 20px;
      line-height: 1.5;
      color: aliceblue;
      background-color: #3838385d;
      padding: 10px;
      border-radius: 10px;
    }

    .bio {
      display: block;
      margin: 20px auto 0 auto;
      padding: 10px 20px;
      background: #ff0055;
      color: white;
      border-radius: 8px;
      text-decoration: none;
      font-size: 18px;
    text-align: center;        
  width: fit-content;
    }

    .artistsocial {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 10px;

}

    .artistsocial a {
      margin-right: 15px;
      font-size: 24px;
      color: #f3f1f1;
      
      transition: color 0.3s ease, transform 0.3s ease;
      
    }

    .artistsocial a:hover {
      color: #ff0055;
      transform: scale(2);
    }

    #music-control {
    position: absolute;
    top: 10px;
    left: 220px;
}

#playPauseButton {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
}

#playPauseButton:hover {
    color: #6d1616;
}
#rewindButton {
    background-color: #000000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 30px;
    font-family: "Micro 5", sans-serif;
}

#rewindButton:hover {
    color: #701515;
}

.social-column {
    position: fixed;
    right: 20px;
    top: 15%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.social-link {
  
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    transition: transform ease-in-out 200ms;
}

.social-link:hover {
  transform: scale(1.2) rotate(30deg);
  color: #ff0055;
  cursor: none;
}


.tags span {
  display: inline-block;
  background: #222;
  color: #ff0055;
  padding: 6px 12px;
  margin: 4px;
  border-radius: 20px;
  font-size: 15px;
  transition: background 0.3s ease;
  
}

.tags span:hover {
  background: #444;
}
.tags {
  display: flex;
  flex-wrap: wrap;          
  justify-content: center;  
  gap: 4px;                 
}