body {
  font-family: "Inter", sans-serif;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 20%, #6a5acd, transparent 40%), radial-gradient(circle at 80% 30%, #ff69b4, transparent 40%), radial-gradient(circle at 50% 80%, #00ffff, transparent 40%), #000;
  background-size: cover;
  animation: cosmicMove 30s linear infinite;
  z-index: -1;
}

.logo {
  font-family: "Pacifico", cursive;
}

@keyframes cosmicMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-25%, -25%) scale(1.2);
  }
}
@keyframes gradientShift {
  to {
    background-position: 200%;
  }
}
.tag-box {
  border-radius: 50px;
  background: linear-gradient(90deg, #D25FB7, #1541A1, #00c3ff, rgba(102, 0, 197, 0.6078431373), #fc90fc, #7a7171);
  animation: gradientShift 7s linear infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.tag-box .tag {
  border-radius: 50px;
  transition: 0.5s ease;
  cursor: pointer;
}
.tag-box .tag:hover {
  color: #5300a0;
}

.Hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.Hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.nav-tabs .nav-link.text-light {
  border: none;
  color: #f8f9fa;
}
.nav-tabs .nav-link.text-light.active {
  font-weight: 600;
  color: #000 !important;
}

.custom-navbar {
  z-index: 1000;
  transition: background-color 0.3s ease;
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.active-pill {
  background-color: #ffffff;
  color: #000000 !important;
  border-radius: 25px;
}

.carousel-item {
  min-height: 700px;
  background-position: center;
  background-size: cover;
}

.sticker-label {
  top: 1rem;
  left: -1.5rem;
  transform: rotate(-45deg);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-indicators li {
  list-style: none;
  height: 70px;
  width: 70px;
  margin: 0 5px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 3px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.carousel-indicators li.active {
  border-color: #fff;
  transform: scale(1.2);
}
.carousel-indicators li:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px 8px rgba(242, 104, 147, 0.7);
}/*# sourceMappingURL=style.css.map */