/* Import Tailwind and fonts if needed, but here we will use a CDN for Tailwind in the HTML for simplicity and maintain the custom styles */

:root {
  --primary: #8b5cf6;
  --primary-foreground: #ffffff;
  --background: #0a0e27;
  --foreground: #f5f5f5;
  --card: #1a1f3a;
  --card-foreground: #f5f5f5;
  --popover: #1a1f3a;
  --popover-foreground: #f5f5f5;
  --secondary: #2d1b4e;
  --secondary-foreground: #e0d5ff;
  --muted: #3d2563;
  --muted-foreground: #c4b5fd;
  --accent: #8b5cf6;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #2d1b4e;
  --input: #1a1f3a;
  --ring: #a855f7;
  --radius: 0.65rem;
  --font-poppins: "Poppins", sans-serif;
  --font-inter: "Inter", sans-serif;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-inter);
  margin: 0;
  padding: 0;
}

.gradient-text {
  background: linear-gradient(to right, #c084fc, #a855f7, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-effect {
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.glow-effect-lg {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.transition-smooth {
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #a855f7, #9333ea);
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: linear-gradient(to right, #9333ea, #7e22ce);
  transform: translateY(-2px);
}

.btn-secondary {
  padding: 0.75rem 2rem;
  border: 2px solid #a855f7;
  color: #c084fc;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.section-spacing {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .section-spacing {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #a855f7, transparent);
}

/* Header blur effect */
header.scrolled {
  background-color: rgba(10, 14, 39, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.7s ease-out forwards;
}
