body {
  font-family: 'Inter', sans-serif;
}

#star-container {
  background:
    linear-gradient(rgba(255, 179, 216, 0.08), rgba(0, 0, 0, 1)) center center / cover no-repeat,
    repeating-linear-gradient(to right, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 80px),
    radial-gradient(ellipse at top center, rgba(255, 179, 216, 0.08), #0a0a0a 70%);
    overflow: hidden;
}


.star {
  position: absolute;
  bottom: 0;
  background: #ffb3d8;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatUp linear;
  pointer-events: none;
}

@keyframes floatUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-110vh);
    opacity: 0;
  }
}

.navbar-glossy {
  background-color: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(50px);
  position: relative;
  overflow: hidden;
}

.navbar-glossy::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05), transparent);
  transform: rotate(25deg);
  animation: shine 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
    z-index: -1;
  }
  100% {
    transform: translateX(100%) rotate(25deg);
    z-index: -1;
  }
}

#custom-context {
  transition: all 0.2s ease;
}
#custom-context:hover {
  background-color: rgba(40, 40, 40, 0.9);
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide + fade out to top */
@keyframes slideOutTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

.animate-slide-in-top {
  animation: slideInTop 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.animate-slide-out-top {
  animation: slideOutTop 0.3s ease-in forwards;
}

/* Overlay fade */
#menu-overlay {
  transition: opacity 0.4s ease;
}

.gradient-tab {
  background: linear-gradient(to bottom right, rgba(255, 179, 216, 0.06), rgba(255, 179, 216, 0.01));
  transition: all 0.3s ease;
}
.api-tab.active {
  border-color: #ffb3d8;
  box-shadow: 0 0 10px rgba(255, 179, 216, 0.2);
  background: linear-gradient(to bottom right, rgba(255, 179, 216, 0.12), rgba(255, 179, 216, 0.02));
}
.api-tab:hover {
  background: rgba(255, 179, 216, 0.04);
}

footer {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 1));
    backdrop-filter: blur(10px);
}

/* Social icons hover effects */
footer a:hover {
    transform: translateY(-2px);
}


