* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Jua", sans-serif;
  color: white;
  width: 100%;
  height: 100vh;
  background: url("currentWallpaper.webp") no-repeat center center fixed;
  background-size: cover;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.container {
  position: absolute;
  top: 100px;
  left: 20px;
  display: flex;
  align-items: center;
  width: 370px;
  height: 150px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  padding: 0 10px;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.hidden {
  display: none;
}
.ar {
  height: 80%;
  border-radius: 21px;
  margin: 0 5px;
}
.md {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 10px;
  gap: 7px;
}
.title {
  font-weight: bold;
  font-size: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.artist {
  font-weight: 500;
  font-size: 16px;
}
#progress {
  width: 100%;
}
i {
  font-size: 20px;
  padding: 0 13px;
}
i:nth-child(2),
i:nth-child(3) {
  font-size: 24px;
}
.icons {
  display: flex;
  align-items: center;
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
#loader img {
  width: 120px;
  height: 120px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
