/* Gaya Asas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  background: linear-gradient(135deg, #00C853, #121212); /* Hijau Grab + Hitam Spotify */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Mesej Tema */
.theme-message-top,
.theme-message-bottom {
  text-align: center;
  font-size: 20px;
  margin: 10px 0;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Efek bayangan */
}

.theme-message-top {
  color: #1DB954; /* Hijau premium Spotify */
}

.theme-message-bottom {
  color: #FFFFFF; /* Putih premium */
  font-style: italic;
}

/* Kotak Pemain */
.player-container {
  width: 100%;
  max-width: 400px; /* Sesuaikan lebar */
  background: rgba(255, 255, 255, 0.1); /* Efek premium blurred glass */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.logo {
  width: 40px;
  height: auto;
}

/* Maklumat Lagu */
.track-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.album-image {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin-right: 15px;
}

.track-details h2 {
  font-size: 22px; /* Besarkan tulisan */
  color: #FFFFFF; /* Putih cerah */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); /* Bayangan gelap */
}

.track-details p {
  font-size: 16px;
  color: #E0E0E0; /* Kelabu terang */
}

/* Kawalan Button */
.controls {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
}

button {
  background: linear-gradient(135deg, #1DB954, #00C853);
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

button:hover {
  transform: scale(1.05);
  background-color: #1ed760;
}

/* Kotak Carian Lagu */
.search-container {
  width: 100%; /* Sesuaikan dengan container */
  margin-bottom: 20px;
}

#song-search {
  width: calc(100% - 20px);
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid