.send-a-song-container {
  max-width: 480px;
  margin: 40px auto;
  background: rgba(255,255,255,0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.send-a-song-container h2 {
  margin-bottom: 25px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.search-box {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

#songQuery {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

#songQuery:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 5px #6a11cb;
}

#searchSong {
  padding: 12px 20px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

#searchSong:hover {
  transform: scale(1.05);
}

#searchResults {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.song-item {
  width: 45%;
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.song-item:hover {
  border-color: #6a11cb;
}

textarea, input[type=text] {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ccc;
  padding: 12px;
  margin-top: 15px;
  outline: none;
  transition: 0.3s;
}

textarea:focus, input[type=text]:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 5px #6a11cb;
}

#generateLink {
  margin-top: 20px;
  width: 100%;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#generateLink:hover {
  transform: scale(1.02);
}

.copy-btn {
  background: #2575fc;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.song-page {
  text-align: center;
  padding: 40px;
}

.song-page iframe {
  max-width: 90%;
  border-radius: 12px;
}

.song-message {
  font-size: 18px;
  margin-top: 15px;
  color: #333;
  font-style: italic;
}