.wrfp-footer {
  width: 100%;
  z-index: 9999;
  box-sizing: border-box;
  font-family: inherit;
}

.wrfp-footer--fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

body {
  padding-bottom: 110px;
}

.wrfp-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.96);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -12px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
}

.wrfp-track {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wrfp-cover {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #2b2b2b;
}

.wrfp-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wrfp-kicker,
.wrfp-artist,
.wrfp-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wrfp-kicker {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wrfp-title {
  font-size: 18px;
  line-height: 1.2;
}

.wrfp-artist {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
}

.wrfp-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.wrfp-button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 18px;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wrfp-volume-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wrfp-volume {
  width: 140px;
}

@media (max-width: 700px) {
  body {
    padding-bottom: 128px;
  }

  .wrfp-inner {
    gap: 12px;
    padding: 12px;
  }

  .wrfp-cover {
    width: 56px;
    height: 56px;
  }

  .wrfp-title {
    font-size: 16px;
  }

  .wrfp-volume-wrap {
    display: none;
  }
}
