body {
  background-color: #0D1117;
  margin: 0;
  padding: 0;
}


header {
  font-family: Verdana;
  background: black;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 100, 0.1);
  color: white;
  position: sticky;
  border: none;
}

.container1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo a {
  text-decoration:none;
  color:white
}

.logo a:hover {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);



}

nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

nav ul li a:hover {
  color: orange;
  background-color: rgba(100, 100, 100, 0.5);
  padding: 5px;
  border-radius: 5px;
  box-shadow: 0px 8px 15px rgba(100, 100, 100, 0.5);
}

/* Sorting */
.sort-box {
  background: linear-gradient(90deg, rgba(255,176,64,0.9389) 0%, rgba(255,132,0,0.7988) 35%, rgba(255,166,0,1) 88%);
  padding: 10px 20px;
  border-radius: 5px;
  margin: 20px auto;
  max-width: 800px;
  color: #0D1117;
  font-family: Verdana;
}

.sort-box ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  align-items: center;
}

.sort-box ul li {
  font-weight: bold;
}

.sort-box ul li a {
  text-decoration: none;
  color: #0D1117;
  transition: all 0.3s ease;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.sort-box ul li a:hover {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}

/*----------*/
footer {
  background: linear-gradient(90deg, rgba(255,176,64,0.9389005602240896) 0%, rgba(255,132,0,0.7988445378151261) 35%, rgba(255,166,0,1) 88%);
  padding: 1em;
  font-family: Verdana;
  font-size: 16px;
  bottom: 0;

}

/* Song container */
@media (max-width: 768px) {
  .song-box {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .audio-player {
    width: 100%;
    padding: 15px;
  }
  .controls {
    flex-direction: column;
    align-items: stretch;
  }
}

.song-box {
  background: linear-gradient(90deg, rgba(255,176,64,0.9389) 0%, rgba(255,132,0,0.7988) 35%, rgba(255,166,0,1) 88%);
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  width: 1200px;
}

.song-box ul {
  list-style-type: none;
  margin: 1;
  padding: 0;
}

.song-box li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.song-box li img {
    outline: 3px solid black;
    border-radius: 10px;
}

.song-box p {
    font-family: verdana;
    font-size: 1em;
    font-weight: bold;

}

.song-box hr {
    border: none;
    border-top: 2px solid black
}
.song-details p {
  margin: 0;
  font-family: Verdana;
}

.song-details {
  flex: 1;
}

.song-details a {
text-decoration: none;
color: black;
transition: all 0.3s ease;
font-weight: bold;

}

.song-details a:hover {
color: white;
}

.song-box img {
  flex-shrink: 0;
}

/* Audio */
.audio-player {
    background-color: #141921;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 850px;
    font-family: Verdana;
    color: white;
}

.controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

button {
    background-color: #ff8c00;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
    padding: 10px 20px;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: Verdana;

}

button:hover {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    background-color: #c76e02;
    color: white;
}

button:active {
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);

}

input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 5px;
    background: #ff8c00;
    outline: none;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.volume-container, .time-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time {
    font-size: 14px;
}

.playing_container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
    font-family: verdana;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly */
}

#global-play-pause-btn {
    margin-left: 20px; /* Adjust margin as needed */
}

#current-playing {
    flex-grow: 1; /* Allow it to take up more space in the middle */
    text-align: center;
}

#current-progress-bar {
    -webkit-appearance: none;
    appearance: none;
    width: 50%; /* Adjust width as needed */
    height: 5px;
    background: #ff8c00;
    outline: none;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    margin-right: 10px; /* Add margin to create space between progress bar and time display */
}

.time-display {
    color: white;
    font-family: Verdana;
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-right: 10px; /* Add space between the time display and volume control */
}

.volume-control {
    margin-right: 10px; /* Adjust margin as needed */
}

.playing_container .volume-control {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Add space between the progress bar and volume control */
}



.long_box {
      background: linear-gradient(90deg, rgba(255,176,64,0.9389005602240896) 0%, rgba(255,132,0,0.7988445378151261) 35%, rgba(255,166,0,1) 88%);
      padding: 6px 20px;
      margin: 0 auto;
      width: 1200px;
      font-family: Verdana;
      font-size: 20px;
      font-weight: bold;
      border-radius: 10px;
    }
.artists_box {
  background: #0D1117;
  border-radius: 4px;
  margin: 1px auto;
  padding: 20px;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.artists_box a {
    text-decoration: none; /* Ensure no underline */
}

.artist {
  background: linear-gradient(90deg, rgba(255,176,64,0.9389005602240896) 0%, rgba(255,132,0,0.7988445378151261) 35%, rgba(255,166,0,1) 88%);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0px 8px 15px rgba(100, 100, 100, 0.3);
  flex: 1 1 calc(33.333% - 40px); /* 3 items per row with space between */
  max-width: calc(33.333% - 40px); /* Ensure max width so that 3 fit in one row */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  transition: transform 0.3s, box-shadow 0.3s;
}

.artist:hover {
    box-shadow: 0px 12px 24px rgba(100, 100, 100, 0.8);
    transform: translateY(-5px);
}

.artist img {
  border-radius: 10px;
  width: 80px;
  height: 80px;
  margin-right: -15px;
  outline: 3px solid black; /* Orange outline */
  box-shadow: 0px 12px 24px rgba(0,0,0,0.1); /* Optional: add shadow for extra effect */
}


.artist ul {
    list-style-type: none;
}

.artist ul li {
 font-family: Verdana;
  font-size: 18px;
  color: black;

}

.artist-page {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,176,64,0.9389) 0%, rgba(255,132,0,0.7988) 35%, rgba(255,166,0,1) 88%);
}

.video-container {
  flex: 1;
}

.artist-info {
  flex: 1;
  font-family: Verdana;
  color: black;
  word-wrap: break-word;
}

.artist-info h1 {
  color: black;
}

@media (max-width: 768px) {
  .artist-page {
    flex-direction: column;
    align-items: center;
  }

  .video-container, .artist-info {
    width: 100%;
  }
}


 .aboutlogo {
            display: flex;
            padding: 20px;
            margin-bottom: 20px;
            text-align: center;
            align-items: center;
            justify-content: center;

        }
        .aboutlogo img {
            width: 100px;
            
        }
        .content {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
            color: white;
            font-family: verdana;
        }
