body {
  font-family: "Poppins", sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 1300px;
  margin: 50px auto;
  text-align: center;
}

h1 {
  color: #825cff;
  margin-bottom: 20px;
  text-shadow: 2px -1px 1px rgba(0, 157, 255, 0.3),
    4px -5px 2px rgba(190, 230, 245, 0.2), 4px -4px 5px rgb(255 255 255 / 10%),
    0px 0px 10px rgb(239, 9, 231), 0px 0px 20px rgba(255, 0, 0, 0.8),
    0px 0px 30px rgba(171, 6, 6, 0.6);
}

#search-input {
  font-family: "Poppins", sans-serif;
  width: 70%;
  padding: 10px;
  border: 2px solid #825cff;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
  margin-top: 10px;
}

#search-input:focus {
  border-color: #6a4ccc;
  box-shadow: 0 0 5px rgba(130, 92, 255, 0.5);
}

#search-button {
  font-family: "Poppins", sans-serif;
  padding: 10px 20px;
  border: none;
  background-color: #825cff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  margin-top: 5px;
}

#search-button:hover {
  background-color: #6a4ccc;
}

#results {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 70px;
}

.song {
  width: 200px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.song:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.song img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.song h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song p {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.song p strong {
  color: #825cff;
}

/* Custom Audio Player Styles */
.audio-container {
  margin-top: 10px;
  position: relative;
}

.audio-preview {
  width: 100%;
  height: 40px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.audio-preview::-webkit-media-controls-panel {
  background-color: #f5f5f5;
  border-radius: 5px;
}

.audio-preview::-webkit-media-controls-play-button,
.audio-preview::-webkit-media-controls-mute-button {
  background-color: #825cff;
  border-radius: 50%;
  color: white;
}

.audio-preview::-webkit-media-controls-current-time-display,
.audio-preview::-webkit-media-controls-time-remaining-display {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
}

.audio-preview::-webkit-media-controls-timeline {
  background-color: #ddd;
  border-radius: 2px;
  margin: 0 5px;
}

.audio-preview::-webkit-media-controls-volume-slider {
  background-color: #ddd;
  border-radius: 2px;
}

.download-btn {
  font-family: "Poppins", sans-serif;
  padding: 8px 15px;
  margin-top: 10px;
  border: none;
  background-color: #28a745;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #218838;
}

.download-btn.loading {
  background-color: #6c757d;
}

#footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px;
  position: fixed;
  bottom: 0;
  width: 100%;
  margin-top: 20px;
}

#footer a {
  color: #03a9f4;
  text-decoration: none;
}
.home {
  text-decoration: none;
  font-weight: bold;
  border: 1px solid white;
  padding: 3px 5px;
  border-radius: 10px;
  background-color: #3c08e8;
  cursor: pointer;
  transition: background-color 0.5s ease, transform 0.5s ease;
  color: white;
}
.home:hover {
  background-color: #6a4ccc;
  transform: scale(1.1);
}
#SumanWeb,
#SumanWeb strong {
  color: #b4b0b07a;
  margin-bottom: 0px;
}
.neon-text {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 0, 0, 1), 0 0 20px rgba(255, 0, 0, 0.8),
    0 0 30px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.4),
    0 0 50px rgba(255, 0, 0, 0.2);
  animation: neon 2s infinite;
}

@keyframes neon {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 0, 1), 0 0 20px rgba(255, 0, 0, 0.8),
      0 0 30px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.4),
      0 0 50px rgba(255, 0, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 0, 0, 1), 0 0 30px rgba(255, 0, 0, 0.8),
      0 0 40px rgba(255, 0, 0, 0.6), 0 0 50px rgba(255, 0, 0, 0.4),
      0 0 60px rgba(255, 0, 0, 0.2);
  }
  100% {
    text-shadow: 0 0 10px rgba(255, 0, 0, 1), 0 0 20px rgba(255, 0, 0, 0.8),
      0 0 30px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.4),
      0 0 50px rgba(255, 0, 0, 0.2); /* Added missing semicolon */
  }
}
@media only screen and (max-width: 640px) {
  .neon-text {
    font-size: 30px;
  }
  .no-results {
    font-size: 20px;
  }
}

#artistp {
  /* height: 50px;
  overflow-y: scroll; */
  white-space: nowrap;
  overflow: auto;
  text-overflow: inherit;
  cursor: pointer;
}
.no-results {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #b10808;
  margin-top: 50px;
  animation: fade-in 2s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
