.profile-noise {
  filter: grayscale(0.5) contrast(1.1);
}

.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d1117;
  overflow: hidden;
  z-index: -1;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: rgba(88, 166, 255, 0.4);
  animation-duration: 25s;
}

.blob-2 {
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: rgba(63, 185, 80, 0.3);
  animation-delay: -5s;
  animation-duration: 30s;
}

.blob-3 {
  top: 30%;
  left: 40%;
  width: 45vw;
  height: 45vw;
  background: rgba(137, 87, 229, 0.3);
  animation-delay: -10s;
  animation-duration: 28s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(5%, 10%) scale(1.1);
  }
  66% {
    transform: translate(-5%, -5%) scale(0.9);
  }
  100% {
    transform: translate(10%, -10%) scale(1.05);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1117;
}

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8b949e;
}

.track-active {
  background-color: #1f242c;
  border-left: 3px solid #3fb950;
}

.track-active .track-title {
  color: #58a6ff;
  font-weight: 600;
}

.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #0d1117;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fullscreen-modal.hidden {
  display: none;
}

.fullscreen-modal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
