body {
  cursor: none;
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: rgba(25, 65, 174, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(44, 51, 69, 0.5);
}

#cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(105, 152, 161, 0.763);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

*,
*::before,
*::after {
  cursor: none !important;
}

.footer-time {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.music-footer-visualizer {
  position: relative;
  margin: 1.5rem auto 1rem;
  padding: 1rem 1rem 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(61, 82, 117, 0.82), rgba(62, 99, 166, 0.796)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 40px rgba(4, 24, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.music-footer-visualizer.is-fallback {
  border-color: rgba(255, 196, 110, 0.28);
  box-shadow:
    0 18px 40px rgba(43, 27, 10, 0.2),
    inset 0 1px 0 rgba(255, 244, 214, 0.18);
}

.music-footer-visualizer__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: #f2fbff;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.music-footer-visualizer__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.music-footer-visualizer.is-fallback .music-footer-visualizer__tag {
  background: rgba(255, 196, 110, 0.18);
}

.music-footer-visualizer__status {
  color: rgba(242, 251, 255, 0.84);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-footer-visualizer__body {
  position: relative;
  min-height: 180px;
  padding: 0.75rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.music-footer-visualizer__bars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.38rem;
  width: 100%;
  height: 180px;
}

.music-footer-visualizer__bar {
  flex: 1 1 0;
  min-width: 6px;
  height: 100%;
  border-radius: 999px;
  transform-origin: center bottom;
  transform: scaleY(0.12);
  opacity: 0.5;
  background: linear-gradient(180deg, rgba(112, 122, 191, 0.98), rgba(78, 125, 205, 0.86) 55%, rgba(26, 83, 92, 0.34));
  box-shadow: 0 0 14px rgba(84, 117, 188, 0.2);
  transition: transform 90ms linear, opacity 90ms linear, filter 90ms linear;
}

.music-footer-visualizer.is-fallback .music-footer-visualizer__bar {
  background: linear-gradient(180deg, rgba(112, 122, 191, 0.98), rgba(78, 125, 205, 0.86) 55%, rgba(26, 83, 92, 0.34));
  box-shadow: 0 0 16px rgba(84, 117, 188, 0.2);
}

.music-footer-visualizer__glow {
  position: absolute;
  inset: 12% 18%;
  z-index: 0;
  background: radial-gradient(circle, rgba(120, 167, 255, 0.25), rgba(120, 172, 255, 0));
  filter: blur(22px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .music-footer-visualizer {
    padding: 0.85rem;
    border-radius: 18px;
  }

  .music-footer-visualizer__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .music-footer-visualizer__body,
  .music-footer-visualizer__bars {
    min-height: 150px;
    height: 150px;
  }

  .music-footer-visualizer__bars {
    gap: 0.28rem;
  }
}
