/* General dark theme overrides */
body {
  background-color: #0a0a0a;
  color: #e5e7eb;
  font-family: 'Inter', sans-serif;
}

/* Glassmorphism card */
.glass-card {
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.25rem;
  transition: all 0.25s ease;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}
.glass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.9);
}

/* Feature cards */
.feature-card {
  border-radius: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.25);
  padding: 1rem;
  transition: all 0.25s ease;
}
.feature-card:hover {
  border-color: rgba(124,58,237,0.8);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.feature-card p {
  font-size: 0.85rem;
  color: #a1a1aa;
}

/* Store logos */
.store-logo {
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.25);
  padding: 0.6rem 0.9rem;
  transition: all 0.25s ease;
}
.store-logo:hover {
  transform: translateY(-2px) scale(1.05);
  border-color: rgba(37,99,235,0.8);
  box-shadow: 0 0 15px rgba(37,99,235,0.6);
}

/* Pricing cards */
.pricing-card {
  border-radius: 1.25rem;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.25);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.25s ease;
}
.pricing-card:hover {
  border-color: rgba(37,99,235,0.8);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(124,58,237,0.5);
}
.pricing-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.pricing-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.pricing-button {
  margin-top: auto;
  width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: #e5e7eb;
  transition: all 0.25s ease;
}
.pricing-button:hover {
  background: #2563EB; /* solid neon blue */
  border-color: #2563EB;
  color: #fff;
}

/* CTA spotlight effect */
section.bg-gradient-to-r {
  position: relative;
  overflow: hidden;
}
section.bg-gradient-to-r::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  animation: spotlight 6s ease-in-out infinite alternate;
}
@keyframes spotlight {
  0% { transform: translateX(-10%) translateY(-5%); }
  100% { transform: translateX(10%) translateY(5%); }
}

/* Swiper overrides */
.swiper-slide {
  transition: transform 0.3s ease;
}
.swiper-slide:hover {
  transform: translateY(-4px);
}
.swiper-button-prev,
.swiper-button-next {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(148,163,184,0.25);
  color: #fff;
  transition: all 0.25s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(37,99,235,0.3);
  border-color: rgba(37,99,235,0.8);
}
.footer-link {
  color: #a1a1aa;
  position: relative;
  transition: color 0.3s ease;
}
.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #22D3EE;
  transition: width 0.3s ease;
}
.footer-link:hover {
  color: #fff;
}
.footer-link:hover::after {
  width: 100%;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  transition: all 0.3s ease;
}
.social-icon:hover {
  color: #fff;
  border-color: #2563EB;
  box-shadow: 0 0 15px rgba(124,58,237,0.6);
}
/* Neon nav links */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #22D3EE; /* cyan glow */
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #22D3EE;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

/* Solid header on scroll */
.header-solid {
  background: rgba(0,0,0,0.96);
  border-bottom: 1px solid rgba(148,163,184,0.25);
  backdrop-filter: blur(18px);
}
