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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #061226;
  color: #ffffff;
  overflow-x: hidden;
}

/* Tailwind custom colors helper */
.bg-power-dark { background-color: #061226; }
.text-power-dark { color: #061226; }
.bg-power-purple { background-color: #7000ff; }
.text-power-purple { color: #7000ff; }
.bg-power-pink { background-color: #ff0099; }
.text-power-pink { color: #ff0099; }
.bg-power-orange { background-color: #ff4d00; }
.text-power-orange { color: #ff4d00; }
.bg-power-yellow { background-color: #ffe600; }
.text-power-yellow { color: #ffe600; }
.bg-power-cyan { background-color: #00f0ff; }
.text-power-cyan { color: #00f0ff; }
.bg-power-paper { background-color: #f5f5f5; }

/* Animated gradient background */
.animated-gradient {
  background: linear-gradient(-45deg, #7000ff, #ff0099, #ff4d00, #ffe600);
  background-size: 400% 400%;
  animation: gradientBG 8s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulsing glow for CTAs */
.pulse-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255, 230, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 230, 0, 0); }
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #ff0099;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ff4d00;
}

/* FAQ transition */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-content:not(.hidden) {
  max-height: 300px;
}

/* Selection color */
::selection {
  background: #ff0099;
  color: #ffffff;
}