.gradient-text {
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-logo {
  width: 10%;
}
.glow-hover:hover {
  box-shadow: 0 0 20px rgba(109, 40, 217, 0.7);
}
.feature-card {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.badge-limited {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #ec4899, #8b5cf6);
  transform: rotate(3deg);
}
.btn-primary {
  background: linear-gradient(90deg, #6d28d9, #5b21b6);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}
.feature-icon {
  background: rgba(109, 40, 217, 0.1);
  border: 1px solid rgba(109, 40, 217, 0.3);
}
.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.section-bg {
  background: linear-gradient(
    135deg,
    rgba(241, 245, 249, 0.1),
    rgba(226, 232, 240, 0.15)
  );
}
body {
  font-family: "Inter", sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  scroll-behavior: smooth;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

.ghost-alert-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ghost-alert-bubble {
  background: linear-gradient(
    145deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.98)
  );
  border: 1px solid rgba(109, 40, 217, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.ghost-alert-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px rgba(109, 40, 217, 0.3);
  border-color: rgba(109, 40, 217, 0.5);
}

.ghost-alert-text {
  font-weight: 500;
  white-space: nowrap;
  background: linear-gradient(90deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ghost-alert-icon {
  animation: ghost-alert-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.ghost-alert-button {
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border: none;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.ghost-alert-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(109, 40, 217, 0.3);
}

@keyframes ghost-alert-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {
  .ghost-alert-container {
    bottom: 1rem;
    right: 1rem;
  }

  .ghost-alert-bubble {
    padding: 0.5rem 1rem;
  }

  .ghost-alert-text {
    font-size: 0.875rem;
  }

  .ghost-alert-button {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}