/* Modern Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #020617;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #22d3ee, #a855f7);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #fff;
}

/* The Aurora Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #020617;
  z-index: -1;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  animation: moveBlobs 20s infinite alternate;
  border-radius: 50%;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #2563eb;
  animation-duration: 25s;
}
.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: #7c3aed;
  animation-duration: 30s;
}
.blob-3 {
  top: 40%;
  left: 40%;
  width: 30vw;
  height: 30vw;
  background: #ec4899;
  animation-duration: 20s;
}

@keyframes moveBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

/* Glassmorphism Cards */
.glass-panel {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-panel:hover {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
  background: rgba(30, 41, 59, 0.7);
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(to right, #22d3ee, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Smooth Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

#dp {
  transition:
    transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}
#dp:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 40px rgba(122, 34, 238, 0.4),
    0 0 80px rgba(168, 85, 247, 0.2);
  border-color: rgba(34, 58, 238, 0.5);
}
