* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eef6fb;
  color: #263746;
}

.topbar {
  height: 68px;
  padding: 0 18px;
  background: white;
  border-bottom: 1px solid #dce9f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand small {
  display: block;
  color: #8193a2;
  margin-top: 2px;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #2997d6;
  color: white;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: bold;
}

.live-badge {
  background: #fff0f0;
  color: #e53935;
  border-radius: 20px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: bold;
}

.live-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e53935;
  border-radius: 50%;
  margin-right: 5px;
}

.container {
  width: min(680px, calc(100% - 24px));
  margin: 24px auto;
}

.card {
  background: white;
  border: 1px solid #dce9f2;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(60, 100, 130, .06);
}

.now-playing {
  display: flex;
  align-items: center;
  padding: 18px;
  gap: 15px;
}

.cover {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: linear-gradient(135deg, #61b9e8, #247fbd);
  color: white;
  display: grid;
  place-items: center;
  font-size: 35px;
}

.track-info {
  min-width: 0;
  flex: 1;
}

.track-info small {
  color: #2997d6;
  font-size: 11px;
  font-weight: bold;
}

.track-info h1 {
  font-size: 18px;
  margin: 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-info p {
  margin: 0;
  color: #7b8c99;
  font-size: 13px;
}

.play-button {
  border: 0;
  background: #2997d6;
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.stat {
  padding: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  color: #2997d6;
  font-size: 21px;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: #82929e;
  font-size: 12px;
}

.volume-card {
  margin-top: 12px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.volume-card input {
  width: 100%;
  accent-color: #2997d6;
}

.dj-button {
  width: 100%;
  margin-top: 16px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  background: #2997d6;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 480px) {
  .container {
    margin-top: 14px;
  }

  .topbar {
    height: 60px;
    padding: 0 12px;
  }

  .logo {
    width: 38px;
    height: 38px;
  }

  .now-playing {
    padding: 14px;
  }

  .cover {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .track-info h1 {
    font-size: 16px;
  }

  .play-button {
    width: 46px;
    height: 46px;
  }
}
