body.starlight-shell-page {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(172, 75, 255, 0.08), transparent 22%),
    #020617;
}

.starlight-shell-glows {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.starlight-shell-glows::before,
.starlight-shell-glows::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  opacity: 0.32;
  mix-blend-mode: screen;
}

.starlight-shell-glows::before {
  width: 56vw;
  height: 56vw;
  top: -12%;
  left: -10%;
  background: rgba(99, 102, 241, 0.18);
}

.starlight-shell-glows::after {
  width: 44vw;
  height: 44vw;
  right: -10%;
  top: 18%;
  background: rgba(168, 85, 247, 0.16);
}

.starlight-shell-stars {
  z-index: -1;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.starlight-shell-star {
  position: absolute;
  border-radius: 9999px;
  background: #fff;
  opacity: 0;
  animation: starlightTwinkle var(--duration, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes starlightTwinkle {
  0%,
  100% {
    opacity: 0.16;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.15);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
  }
}

.starlight-logo-shimmer {
  position: relative;
  overflow: hidden;
}

.starlight-logo-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-150%) skewX(-30deg);
  animation: starlightShimmer 4.5s linear infinite;
  pointer-events: none;
}

@keyframes starlightShimmer {
  0% {
    transform: translateX(-150%) skewX(-30deg);
  }

  100% {
    transform: translateX(150%) skewX(-30deg);
  }
}

.starlight-shell-page .glass-nav,
.starlight-shell-page nav.glass-nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(2, 6, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.starlight-shell-page footer {
  position: relative;
}

.starlight-shell-page footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.04), transparent 28%);
  pointer-events: none;
}
