* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #063f35;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player {
  width: min(92%, 420px);
  text-align: center;
  padding: 40px 28px;
}

.badge {
  display: inline-block;
  background: #d9ee38;
  color: #063f35;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
}

h1 {
  margin: 24px 0 6px;
  font-size: 30px;
}

.status {
  color: #d9ee38;
  font-weight: bold;
  margin-bottom: 38px;
}

.now-playing span {
  display: block;
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 8px;
}

.now-playing strong {
  display: block;
  font-size: 20px;
  min-height: 48px;
}

button {
  margin-top: 32px;
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  background: #d9ee38;
  color: #063f35;
}

.volume-wrap {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.volume-wrap input {
  width: 100%;
}