body {
  background-color: #050505;
  color: #f3f4f6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.bg-glow-spot {
  background: radial-gradient(circle at center,
      rgba(34, 197, 94, 0.12) 0%,
      transparent 70%);
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Fix for centered containers */
.container-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-glow {
  text-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.wpp-pulse {
  animation: wpp-pulse 2s infinite;
}

@keyframes wpp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

details summary::-webkit-details-marker {
  display: none;
}

summary {
  list-style: none;
}

/* FAQ refined styles */
details.glass-card {
  transition: all 0.3s ease;
}

details[open].glass-card {
  border-color: rgba(242, 110, 33, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.toast-notification {
  animation: slide-up 0.5s ease-out forwards,
    fade-out 0.5s ease-in forwards 4.5s;
  transform: translateY(100%);
  opacity: 0;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Responsive Image Fixes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}