@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212; /* Darker background */
  color: white;
}

nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  height: 65px;
  background-color: black;
  padding: 0 20px;
}

nav ul li {
  padding: 0 12px;
  font-family: "Ubuntu", sans-serif;
  cursor: pointer;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: bolder;
  font-size: 1.3rem;
}

.brand img {
  width: 44px;
  margin-right: 10px;
}

.container {
  min-height: 72vh;
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("../assets/bg.jpg");
  background-size: cover;
  background-position: center;
  margin: 23px auto;
  width: 90%; /* More responsive width */
  max-width: 1000px;
  border-radius: 12px;
  padding: 34px;
  font-family: "Varela Round", sans-serif;
}

.songItem {
  height: 60px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.1); /* Transparent dark style */
  color: white;
  margin: 12px 0;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 0 15px;
  transition: background-color 0.3s;
}

.songItem:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.songItem img {
  width: 43px;
  border-radius: 4px;
}

.songName {
  flex-grow: 1;
  margin-left: 15px;
}

.timestamp i {
  cursor: pointer;
  font-size: 1.2rem;
}

.bottom {
  position: sticky;
  height: 120px;
  background-color: #181818;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #333;
}

#myProgressBar {
  width: 80%;
  cursor: pointer;
  margin-bottom: 10px;
}

.icons i {
  cursor: pointer;
  margin: 0 15px;
}

.songInfo {
  position: absolute;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 15px;
}

#gif {
  opacity: 0;
  transition: opacity 0.4s;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .songInfo {
    position: static;
    margin-top: 10px;
  }
}