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

body {
  font-family: system-ui, -apple-system, sans-serif;
  /* background: #f5f4f0; */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.player {
  border-radius: 0px;
  padding: 1rem;
  text-align: center;
  color: #1a1a18;
  display: flex;
  flex-direction: row;
}

.track-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  min-height: 1.4em;
}

.track-sub {
  font-size: 13px;
  color: #888780;
  min-height: 1.2em;
}

.track-info {
  text-align: left;
  margin-top: 5px;
  margin-left: 20px;
}

.track-counter {
  font-size: 11px;
  color: #b4b2a9;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ctrl-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0.5px solid #b4b2a9;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a18;
  font-size: 18px;
  transition: background 0.12s, transform 0.08s;
}

.ctrl-btn:hover { background: #f5f4f0; }
.ctrl-btn:active { transform: scale(0.93); }

.ctrl-btn.play-btn {
  /*
  width: 54px;
  height: 54px;
  font-size: 22px;
  */
  background: #1a1a18;
  color: #ffffff;
  border-color: #1a1a18;
}

.ctrl-btn.play-btn:hover {
  background: #3a3a38;
  border-color: #3a3a38;
}

.ctrl-btn.pause-btn {
  display: none;
}
