.music-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  border: none;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--secondary), var(--primary));
  cursor: pointer;
  transition: 0.3 ease;
  transition: transform 0.3s ease;
}

.music-toggle:hover{
  transform: translateY(-2px) scale(1.03);
}


@media (max-width: 768px) {

  .music-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    position: fixed;
    right: 12px;
    bottom: 30px;
  }

  .music-toggle.music-off::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 34px;
    background: #fff;
    border-radius: 2px;
    transform: rotate(45deg);
  }

}