.player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  z-index: -1;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 0.6s,
    z-index 0s linear 0.6s;
  will-change: opacity, visibility, z-index;
}
.player.open {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
  pointer-events: auto;
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 0s,
    z-index 0s linear 0s;
}
.player.closing {
  transition:
    opacity 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53),
    visibility 0s linear 0.5s,
    z-index 0s linear 0.5s;
}

.player.loading .cover {
  animation: shimmer 2s infinite linear;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 62.5rem 100%;
}

.player.isPlaying .controlBtn.primary .playIcon {
  display: none;
}
.player.isPlaying .controlBtn.primary .pauseIcon {
  display: block;
}

.player::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0rem);
  -webkit-backdrop-filter: blur(0rem);
  transition:
    background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    backdrop-filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  will-change: background, backdrop-filter;
}
.player.open::before {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(0.3125rem);
  -webkit-backdrop-filter: blur(0.3125rem);
  pointer-events: auto;
}
.player.closing::before {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0rem);
  -webkit-backdrop-filter: blur(0rem);
  transition:
    background 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53),
    backdrop-filter 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.player .curtain {
  position: fixed;
  inset: 0;
  background: transparent;
  border: none;
  cursor: default;
  z-index: 1;
}

.player .scroller {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 10;
  will-change: transform;
}
.player.open .scroller {
  transform: translateY(0);
}
.player.closing .scroller {
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.player .slide {
  min-height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
}

.player .inner {
  position: relative;
  margin: auto;
  background-color: #2d333b;
  border: 0.0938rem solid #444c56;
  border-radius: 1.25rem 1.25rem 0 0;
  box-shadow: 0rem -0.25rem 1.5rem rgba(0, 0, 0, 0.35);
  color: #adbac7;
  width: 90svw;
  height: 75vh;
  max-height: 75vh;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(1.25rem);
  opacity: 0;
  transition:
    transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}
.player.open .inner {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}
.player.closing .inner {
  transform: translateY(1.25rem);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53),
    opacity 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@media (max-width: 30rem) {
  .player .inner {
    width: 95%;
    border-radius: 1.25rem 1.25rem 0 0;
    min-height: 80vh;
    max-height: 90%;
  }
}

@media (min-width: 48rem) {
  .player .inner {
    max-width: 37.5rem;
    margin: 0 auto;
    border-radius: 1.25rem 1.25rem 0 0;
    min-height: 75vh;
  }
}

/* Drag handle and close button */
.player .dragArea {
  display: flex;
  justify-content: center;
  padding: 0.75rem 0 0.5rem;
  position: absolute;
  top: 0;
  z-index: 100;
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: translateY(-0.625rem);
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.player.open .dragArea {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.player .dragHandle {
  width: 3rem;
  height: 0.3125rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 62.4375rem;
  border: none;
  cursor: grab;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(50%);
  will-change: transform, width, background;
}
.player .dragHandle:active {
  cursor: grabbing;
  transform: scaleX(1.2);
}
.player .dragHandle:hover {
  background: rgba(255, 255, 255, 0.5);
  width: 4rem;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.player .closeBtn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.player.open .closeBtn {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}
.player .closeBtn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg) scale(1.1);
}
.player .closeBtn svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: #fff;
}

/* Dot navigation indicators */
.player .dotIndicators {
  position: relative;
  width: 100%;
  padding: 1rem 0 0.75rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(0.625rem);
  transition:
    opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 50;
  will-change: opacity, transform;
}
.player.open .dotIndicators {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}
.player .dotIndicator {
  position: relative;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 0.125rem solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  will-change: transform, background;
}
.player .dotIndicator:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}
.player .dotIndicator.active {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: rgba(255, 255, 255, 0.4);
  width: 0.75rem;
  height: 0.75rem;
  box-shadow: 0 0 0.75rem rgba(139, 92, 246, 0.6);
}
.player .dotIndicator.active:hover {
  transform: scale(1.2);
}

.player .dotIndicator .dotLabel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(0.3125rem);
  background: rgba(45, 51, 59, 0.98);
  color: #adbac7;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.0312rem;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  z-index: 100;
  will-change: opacity, transform;
}
.player .dotIndicator .dotLabel::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 0.3125rem solid transparent;
  border-top-color: rgba(45, 51, 59, 0.98);
}

.player .dotIndicator:hover .dotLabel,
.player .dotIndicator:focus .dotLabel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.player .dotIndicator.active .dotLabel {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.player .dotIndicator.active .dotLabel::after {
  border-top-color: #3b82f6;
}

/* Now Playing section - cover art and metadata */
/**""
.player .nowPlaying {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 15.625rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.player.open .nowPlaying {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.player .coverWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 0.75rem 0.75rem;
  flex-shrink: 0;
}
.player .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 2;
  min-height: 12.5rem;
  background: #1a1f24;
}
.player .coverGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, rgba(59, 130, 246, 0.2) 30%, transparent 70%);
  filter: blur(3.75rem);
  opacity: 0.6;
  z-index: 1;
}
***/

.player .separator {
  position: absolute;
  bottom: -2.375rem;
  left: 0;
  width: 100%;
  height: 3.75rem;
  z-index: 3;
  color: #2d333b;
  overflow: visible;
  pointer-events: none;
}
.player .separator svg {
  width: 100%;
  height: 100%;
  display: block;
}
.player .separatorTop {
  position: absolute;
  top: -2.375rem;
  left: 0;
  width: 100%;
  height: 3.75rem;
  z-index: 3;
  color: #2d333b;
  overflow: visible;
  pointer-events: none;
  transform: rotate(180deg);
}
.player .separatorTop svg {
  width: 100%;
  height: 100%;
  display: block;
}

.customShapeDivider {
  position: absolute;
  bottom: -0.125rem;
  left: -0.125rem;
  right: -0.125rem;
  width: 105%;
  overflow: visible;
  line-height: 0;
  height: auto;
}
.customShapeDivider svg {
  position: relative;
  display: block;
  width: calc(125%);
  height: 1.875rem;
  z-index: 99;
  pointer-events: none;
}
.customShapeDivider .shapeFill {
  fill: #2d333b;
}

.player .info {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.player .details {
  flex: 1;
  min-width: 0;
}
.player .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.375rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.player .artist {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}
.player .album {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: 0.0844rem;
  text-align: center;
}

.player .favoriteBtn {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, background;
}
.player .favoriteBtn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  transform: scale(1.1);
}
.player .favoriteBtn.favorited {
  background: rgba(239, 68, 68, 0.3);
  border-color: #ef4444;
}

.player .favoriteBtn svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.player .favoriteBtn:hover svg,
.player .favoriteBtn.favorited svg {
  color: #ef4444;
  fill: #ef4444;
}
.player .favoriteBtn.favorited svg {
  animation: heartBeat 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 30rem) {
  .player .coverWrapper {
    padding: 2rem 1.25rem 3rem;
  }

  .player .info {
    padding: 1rem;
  }

  .player .title {
    font-size: 1rem;
  }

  .player .artist {
    font-size: 0.8125rem;
  }

  .customShapeDivider svg {
    width: calc(216% + 0.0813rem);
    height: 4.6875rem;
  }
}

@media (min-width: 48rem) {
  .player .nowPlaying {
    height: 45vh;
    min-height: 23.75rem;
  }
}

/* Progress bar and time display */
.player .progressSection {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.player .progressBar {
  position: relative;
  width: 100%;
  height: 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 62.4375rem;
  cursor: pointer;
  overflow: visible;
  transition: height 0.2s ease;
}
.player .progressBar:hover,
.player .progressBar.is-hovering {
  height: 0.5rem;
}
.player .progressBar.is-dragging {
  height: 0.5rem;
}

.player .progressBuffer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 62.4375rem;
  transition: width 0.3s ease;
  pointer-events: none;
}
.player .progressFill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
  border-radius: 62.4375rem;
  transition: width 0.1s linear;
  position: relative;
  pointer-events: none;
}

.player .progressThumb {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.player .progressBar:hover .progressThumb,
.player .progressBar.is-hovering .progressThumb {
  width: 1rem;
  height: 1rem;
  box-shadow:
    0 0.25rem 0.75rem rgba(0, 0, 0, 0.4),
    0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}
.player .progressBar.is-dragging .progressThumb {
  width: 1.125rem;
  height: 1.125rem;
  box-shadow:
    0 0.25rem 0.75rem rgba(0, 0, 0, 0.5),
    0 0 0 0.375rem rgba(255, 255, 255, 0.15);
  cursor: grabbing;
}

.player .timeDisplay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.25rem;
}
.player .currentTime,
.player .totalTime {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}

/* Playback controls and action buttons */
.player .controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.player .controlBtn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  will-change: transform, background;
}
.player .controlBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.player .controlBtn:hover::before {
  opacity: 1;
}
.player .controlBtn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-0.125rem);
}
.player .controlBtn:active {
  transform: translateY(0) scale(0.95);
}
.player .controlBtn svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  z-index: 1;
}

.player .controlBtn.secondary {
  width: 3rem;
  height: 3rem;
}
.player .controlBtn.secondary svg {
  width: 1.375rem;
  height: 1.375rem;
}

.player .controlBtn.primary {
  width: 4.25rem;
  height: 4.25rem;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  box-shadow:
    0 0.5rem 1.5rem rgba(139, 92, 246, 0.4),
    0 0.25rem 0.75rem rgba(59, 130, 246, 0.3);
}
.player .controlBtn.primary:hover {
  background: linear-gradient(135deg, #9d6dff, #4c93ff);
  box-shadow:
    0 0.75rem 2rem rgba(139, 92, 246, 0.5),
    0 0.375rem 1rem rgba(59, 130, 246, 0.4);
  transform: translateY(-0.25rem) scale(1.05);
}
.player .controlBtn.primary svg {
  width: 1.75rem;
  height: 1.75rem;
}

.player .controlBtn.primary .pauseIcon {
  display: none;
}

.player .controlBtn.rewind,
.player .controlBtn.forward {
  position: relative;
}

.player .skipLabel {
  position: absolute;
  bottom: 0.5rem;
  font-size: 0.5625rem;
  font-weight: 700;
  color: #fff;
}

.player .actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0 0 0;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}
.player .actionBtn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: transparent;
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, background;
}
.player .actionBtn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-0.125rem);
}
.player .actionBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}
.player .actionBtn:hover svg {
  color: #fff;
}

.player .coverWrapper .actions.musicPlayerActions.albumOverlayActions {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  gap: 1rem;
  z-index: 10;
  opacity: 0.5;
  padding: 0;
  border: none;
  width: auto;
  justify-content: center;
  align-items: center;
  transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.player .coverWrapper .actions.albumOverlayActions:hover {
  opacity: 1;
}

.player .coverWrapper .albumOverlayActions .actionBtn {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(0.625rem);
  -webkit-backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
  margin: 0;
  padding: 0;
}
.player .coverWrapper .albumOverlayActions .actionBtn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.4);
}
.player .coverWrapper .albumOverlayActions .actionBtn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.player .coverWrapper .albumOverlayActions .actionBtn.active {
  background: rgba(139, 92, 246, 0.8);
  border-color: rgba(139, 92, 246, 1);
}

.player .main > .actions.musicPlayerActions,
.player .controls + .actions.musicPlayerActions {
  display: none;
}

@media (max-width: 30rem) {
  .player .controls {
    gap: 0.5rem;
  }

  .player .controlBtn.primary {
    width: 3.75rem;
    height: 3.75rem;
  }

  .player .controlBtn.secondary {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (max-width: 48rem) {
  .player .coverWrapper .albumOverlayActions {
    left: 0.5rem;
    gap: 0.75rem;
  }

  .player .coverWrapper .albumOverlayActions .actionBtn {
    width: 2.375rem;
    height: 2.375rem;
  }

  .player .coverWrapper .albumOverlayActions .actionBtn svg {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/* Content area, panels, and lists */
/**************************************************
***************************************************
.player .content {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1;
  overflow-y: auto;
  will-change: opacity, transform;
}
.player.open .content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.player .main {
  padding: 0 0.5rem 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.player .panel {
  display: none;
  animation: fadeIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex: 1;
  overflow-y: auto;
}
.player .panel.active {
  display: flex;
  flex-direction: column;
}

.player .listHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem 1rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.player .listTitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.player .listCount {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 62.4375rem;
}


.list {
  list-style: none;
  padding: 1rem 1.5rem 2.5rem;
  margin: 0;
  max-height: 31.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.list::-webkit-scrollbar {
  width: 0.375rem;
}
.list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 62.4375rem;
}
.list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 62.4375rem;
}
.list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
  text-align: center;
  flex: 1;
  min-height: 12.5rem;
}

.emptyIcon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.emptyIcon svg {
  width: 100%;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.emptyText {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}
.emptySubtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  width: 100%;
  line-height: 1.4;
}

.list:has(.empty-state:not([hidden])) {
  justify-content: center;
  align-items: center;
}
.list.empty {
  justify-content: space-around;
  align-items: center;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0.5rem;
  border-bottom: var(--border-200);
}
.list-item:hover {
  background: rgba(255, 255, 255, 0.05);
}
.list-item.active {
  background: rgba(139, 92, 246, 0.15);
  border-left: 0.1875rem solid #8b5cf6;
}



.item-artwork {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
}
.item-metadata {
  flex: 1;
  min-width: 0;
}
.item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-artist {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-actions {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.list-item:hover .item-actions {
  opacity: 1;
}

.action-button {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.action-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.action-button svg {
  width: 1.125rem;
  height: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}
****************************************************
****************************************************/

/* Accessibility */
.player .controlBtn:focus,
.player .actionBtn:focus,
.player .dotIndicator:focus {
  outline: 0.125rem solid rgba(139, 92, 246, 0.6);
  outline-offset: 0.125rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -62.5rem 0;
  }
  100% {
    background-position: 62.5rem 0;
  }
}

/* ============================================
   SMOOTH TRANSITIONS - Apply to ALL elements
   ============================================ */

/* Header - ALWAYS smooth */
.player .header {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 17.5rem;
  overflow: visible;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  flex-shrink: 0;
  /* ALWAYS have transition */
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, min-height;
}

/* Cover Area - ALWAYS smooth */

/* Cover Image Container - ALWAYS smooth */

/* Cover Glow - ALWAYS smooth */

/* Action Buttons - ALWAYS smooth */
.player .actions {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  padding: 0;
  z-index: 10;
  pointer-events: none;
  /* ALWAYS have transition */
  transition:
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, visibility;
}

/* Mini Header - ALWAYS smooth */
.player .miniHeader {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  z-index: 3;
  /* ALWAYS have transition */
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

/* Mini Controls - ALWAYS smooth */
.player .miniControls {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  /* ALWAYS have transition */
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

/* List Container transitions */
.player .panel[data-tab="playlist"] .listContainer,
.player .panel[data-tab="queue"] .listContainer {
  flex: 0 0 auto;
  max-height: 75svh;
  min-height: 17.5rem;
  overflow-y: auto;
  /* ALWAYS have transition */
  transition:
    flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: flex, max-height, min-height;
}

/* List transitions */
.player .panel[data-tab="playlist"] .list,
.player .panel[data-tab="queue"] .list {
  height: auto;
  max-height: 100%;
  min-height: 17.5rem;
  overflow-y: auto;
  flex: 0 0 auto;
  /* ALWAYS have transition */
  transition:
    height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    flex 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, max-height, min-height, flex;
}

/* ============================================
   MUSIC PLAYER - BASE STRUCTURE
   ============================================ */

.player .inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ============================================
   HEADER AREA (Expandable/Collapsible)
   ============================================ */

.player .header.is-collapsing {
  transition:
    height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    min-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.player .header.collapsed {
  height: 6.25rem;
  min-height: 6.25rem;
  position: sticky;
  top: 0;
  z-index: 200;
  left: 0;
}

/* ============================================
   COVER AREA
   ============================================ */

.player .coverArea {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  border-radius: 0 0 0.75rem 0.75rem;
  flex-shrink: 0;
  background: #1a1f24;
  /* ALWAYS have transition */
  transition:
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: border-radius, box-shadow;
}
.player .header.is-collapsing .coverArea {
  transition:
    border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.player .header.collapsed .coverArea {
  border-radius: 0;
  border-bottom: 0.0938rem solid var(--border-200);
}

/* ============================================
   COVER IMAGE
   ============================================ */

/* Now Playing */
.player .coverImageContainer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  /* ALWAYS have transition */
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: left, top, width, height, transform, inset, border-radius;
}

/* Mini Player */
.player .header.is-collapsing .coverImageContainer {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Now Playing */
.player .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  background: #1a1f24;
  display: block;
  /* ALWAYS have transition */
  transition:
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    object-fit 0.45s ease-in-out,
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: border-radius, object-fit, box-shadow;
}

/* Mini Player */
.player .header.is-collapsing .cover {
  transition:
    border-radius 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    object-fit 0.45s ease-in-out;
}
.player .header.collapsed .cover {
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.4);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Mini Player */
.player[data-active-tab="playlist"] .header.collapsed .coverImageContainer,
.player[data-active-tab="queue"] .header.collapsed .coverImageContainer {
  left: 1rem !important;
  bottom: 1rem;

  position: absolute;
  width: 3.75rem;
  height: 3.75rem;
  inset: auto;
  border-radius: 50%;
  overflow: hidden;
  border: 0.0938rem solid var(--border-200);
}

.player[data-active-tab="playlist"] .miniHeader,
.player[data-active-tab="queue"] .miniHeader {
  width: calc(75% - 5rem);
  height: 6.25rem;
  align-items: center;
  right: 0 !important;
}

.player[data-active-tab="playlist"] .coverArea,
.player[data-active-tab="queue"] .coverArea {
  background: transparent;
  box-shadow: 0;
}

.player[data-active-tab="playlist"] .customShapeDivider,
.player[data-active-tab="queue"] .customShapeDivider {
  display: none;
}

/* ============================================
   COVER GLOW EFFECT
   ============================================ */

.player .coverGlow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(59, 130, 246, 0.2) 30%,
    transparent 70%
  );
  filter: blur(3.75rem);
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
  /* ALWAYS have transition */
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.player .header.is-collapsing .coverGlow {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.player .header.collapsed .coverGlow {
  opacity: 0;
}

/* ============================================
   ACTION BUTTONS (Album Overlay)
   ============================================ */

.player .header.is-collapsing .actions {
  transition:
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.player .header.collapsed .actions {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player .actionBtn {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.player .actionBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.player .actionBtn:hover::before {
  opacity: 1;
}

.player .actionBtn:hover {
  color: #fff;
  transform: scale(1.05);
}

.player .actionBtn:active {
  transform: scale(0.95);
}

.player .actionBtn svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.3));
}

/* ============================================
   MINI HEADER (Collapsed State)
   ============================================ */

.player .header.is-collapsing .miniHeader {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.player .header.collapsed .miniHeader {
  opacity: 1;
  pointer-events: auto;
}

.player .miniTitle {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player .miniArtist {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ============================================
   MINI CONTROLS (Collapsed State)
   ============================================ */

.player .header.is-collapsing .miniControls {
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.player .header.collapsed .miniControls {
  opacity: 1;
  pointer-events: auto;
}

.player .miniControlBtn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(0.625rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.player .miniControlBtn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.player .miniControlBtn svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #fff;
}

/* ============================================
   CONTENT AREA (Tabs)
   ============================================ */

.player .content {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ============================================
   PANELS (Tab Content)
   ============================================ */

.player .panel {
  display: none;
  flex-direction: column;
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem);
  transition:
    opacity 0.45s cubic-bezier(0.34, 1.26, 0.64, 1),
    transform 0.45s cubic-bezier(0.34, 1.26, 0.64, 1),
    visibility 0s linear 0.45s;
}

.player .panel.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.45s cubic-bezier(0.34, 1.26, 0.64, 1) 0.1s,
    transform 0.45s cubic-bezier(0.34, 1.26, 0.64, 1) 0.1s,
    visibility 0s linear 0s;
}

/* ============================================
   NOW PLAYING PANEL (Playback Controls)
   ============================================ */

.player .panel[data-tab="playing"] .main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  padding: 0;
}

/* ============================================
   LIST PANELS (Recently Played & Queue)
   ============================================ */

.player .panel[data-tab="playlist"],
.player .panel[data-tab="queue"] {
  padding-top: 0;
}

/* List containers - default and collapsed states */

.player .header.collapsed ~ .content .panel[data-tab="playlist"] .listContainer,
.player .header.collapsed ~ .content .panel[data-tab="queue"] .listContainer {
  flex: 1;
  max-height: none;
  min-height: 0;
}

/* List element itself */

.player .header.collapsed ~ .content .panel[data-tab="playlist"] .list,
.player .header.collapsed ~ .content .panel[data-tab="queue"] .list {
  height: 100%;
  max-height: none;
  min-height: 0;
  flex: 1;
}

/* Panel state when collapsed */
.player .header.collapsed ~ .content .panel.active {
  flex: 1;
  min-height: 0;
}

/* List Container - expandHeight class for JS control */
.listContainer.expandHeight {
  height: calc(100svh - 6.25rem) !important;
  flex: 1 !important;
  min-height: 0 !important;
  margin-top: 6.25rem !important;
}

.player .header.collapsed ~ .content .panel[data-tab="playlist"].active .listContainer.expandHeight,
.player .header.collapsed ~ .content .panel[data-tab="queue"].active .listContainer.expandHeight {
  height: 100% !important;
  margin-top: 0 !important;
}

/* ============================================
   LIST STYLING
   ============================================ */

.list {
  list-style: none;
  padding: 1rem 1.5rem 2.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.player .list {
  list-style: none;
  padding: 1rem 1.5rem 2.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* ============================================
   LIST HEADER
   ============================================ */

.player .listHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.625rem);
}
.player .listTitle {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.player .listCount {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   LIST ITEMS
   ============================================ */

.list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease;
  cursor: pointer;
}

.list-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.item-artwork-wrapper {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  overflow: hidden;
}

.item-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.list-item:hover .item-play-overlay {
  opacity: 1;
}

.item-play-overlay svg {
  width: 1.25rem;
  height: 1.25rem;
}

.item-metadata {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.item-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-artist {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.item-actions {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.list-item:hover .item-actions {
  opacity: 1;
}

.action-button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.action-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.action-button svg {
  width: 1rem;
  height: 1rem;
  fill: #fff;
}

/* ============================================
   RESPONSIVE (Mobile)
   ============================================ */

@media (max-width: 30rem) {
  .player .header {
    height: 35vh;
    min-height: 15rem;
  }

  .player .header.collapsed {
    height: 5rem;
    min-height: 5rem;
  }

  .player .header.collapsed .coverImageContainer {
    left: 0.75rem !important;
    width: 3.5rem;
    height: 3.5rem;
  }

  .player .miniHeader {
    left: 5rem;
    max-width: calc(100% - 8.75rem);
  }

  .player .miniTitle {
    font-size: 0.875rem;
  }

  .player .miniArtist {
    font-size: 0.75rem;
  }

  .listContainer.expandHeight {
    height: calc(100svh - 5rem) !important;
    margin-top: 5rem !important;
  }
}






.playPause {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.playPause svg {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .18s ease;
}

.playPause .play {
  opacity: 1;
  visibility: visible;
}

.playPause .pause {
  opacity: 0;
  visibility: hidden;
}

.playPause .play.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.playPause .pause.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.miniControlBtn.playPause svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-control-btn.playPause svg {
  width: 1.5rem;
  height: 1.5rem;
}

.controlBtn.primary.playPause svg {
  width: 2.25rem;
  height: 2.25rem;
}