@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply font-['Outfit'] text-slate-400 bg-slate-950 antialiased selection:bg-indigo-500 selection:text-white;
  }
  
  h1, h2, h3, h4, h5, h6 {
    @apply text-white font-semibold tracking-tight;
  }
}

@layer components {
  .btn-accent {
    @apply inline-flex items-center justify-center px-8 py-4 bg-indigo-500 text-white font-medium rounded-full hover:bg-indigo-400 hover:shadow-[0_0_20px_rgba(99,102,241,0.4)] transition-all duration-300;
  }
  
  .btn-outline-accent {
    @apply inline-flex items-center justify-center px-8 py-4 border border-indigo-500/50 text-indigo-400 font-medium rounded-full hover:bg-indigo-500 hover:text-white hover:border-indigo-500 transition-all duration-300 shadow-[0_0_15px_rgba(99,102,241,0.1)];
  }
}

.text-glow {
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.glass-nav-dark {
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-dark {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.accent-gradient-text {
  background: linear-gradient(to right, #818cf8, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
