:root {
  --background: #2e2e2e;
  --text: #ffffff;
  --surface: #2e2e2e;
  --border: #ffffff;
  --progress-bg: #2e2e2e;
  --accent: #ffffff;
  --highlight: #555555;
  --focus: #888888;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("Assets/background.jpg");
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(45%);
  opacity: .35;
  z-index: -1;
}

#player {
  width: 90%;
  max-width: 400px;
  text-align: center;
  padding: 20px;
}

#bani-title h2 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  color: var(--text);
}

#bani-title span {
  font-size: 1.5rem;
  color: var(--text);
  opacity: .7;
  display: block;
}

#progress-container {
  width: 100%;
  height: 6px;
  margin-top: 10px;
  background: var(--progress-bg);
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

#progress {
  width: 0;
  height: 6px;
  background: var(--accent);
  border-radius: 0;
}

#time {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: .9rem;
}

#controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 15px;
}

button {
  width: 50px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: .2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

button:hover {
  background: var(--highlight);
  transform: none;
}

.material-symbols-outlined {
  font-size: 26px;
}

#speed-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: .95rem;
}

#playback-speed {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 5px;
  font-size: .95rem;
  cursor: pointer;
}

#playback-speed option {
  background: var(--surface);
  color: var(--text);
}

#playback-speed:focus {
  outline: 1px solid var(--focus);
}
