
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

.app-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.logo-header {
  text-align: center;
  background-color: #111;
  padding: 10px;
}

.logo {
  width: 120px;
}

.tab-content {
  display: none;
  padding: 20px;
  flex-grow: 1;
  overflow-y: auto;
}

.tab-content.active {
  display: block;
}

.bottom-nav {
  display: flex;
  justify-content: space-around;
  background-color: #111;
  padding: 10px 0;
}

.nav-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.nav-btn.active {
  color: #d4af37;
}

.now-playing {
  text-align: center;
}

#now-playing-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #d4af37;
  margin-bottom: 10px;
}

#now-playing-text {
  font-size: 18px;
  font-weight: bold;
}

.player-controls {
  text-align: center;
  margin-top: 20px;
}

.play-button {
  background-color: #d4af37;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #b58d2d;
}

.progress-bar {
  background-color: #444;
  height: 10px;
  margin: 20px 0;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background-color: #d4af37;
  width: 0;
  transition: width 0.5s;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icon {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #d4af37;
}

.footer {
  margin-top: auto;
  padding: 10px;
}

.bottom-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.bottom-nav button.active {
  color: #d4af37;
}
