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

body {
  font-family: 'Inter', sans-serif;
  background-color: #050505;
}

/* Custom glow for the lightning card */
.electric-card {
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.3), inset 0 0 20px rgba(249, 115, 22, 0.1);
}

.electric-border {
  background: linear-gradient(180deg, rgba(251, 146, 60, 1) 0%, rgba(251, 146, 60, 0) 100%);
}

/* Starry background effect */
.stars {
  background-image:
    radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 50px 160px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 130px 80px, #ffffff, rgba(0, 0, 0, 0));
  background-size: 200px 200px;
  opacity: 0.2;
}

/* Subtle grid background for app showcase */
.grid-bg {
  background-image: linear-gradient(to right, #ffffff05 1px, transparent 1px),
    linear-gradient(to bottom, #ffffff05 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Hide scrollbar for clean UI look */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.invisible {
  visibility: hidden !important;
}

@keyframes fadeInUpBlur {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px)
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0)
  }
}

.animate-entry {
  animation: fadeInUpBlur 1s cubic-bezier(0.2, 0.8, 0.2, 1) both
}

.delay-75 {
  animation-delay: 75ms
}

.delay-100 {
  animation-delay: 100ms
}

.delay-150 {
  animation-delay: 150ms
}

.delay-200 {
  animation-delay: 200ms
}

.delay-300 {
  animation-delay: 300ms
}

.delay-500 {
  animation-delay: 500ms
}

.delay-700 {
  animation-delay: 700ms
}

@keyframes animationIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

.font-bricolage {
  font-family: 'Bricolage Grotesque', sans-serif !important;
}

[style*="--border-gradient"]::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: var(--border-radius-before, inherit);
  -webkit-mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  background: var(--border-gradient);
  pointer-events: none;
}