@keyframes neon-glow {
  0% {
    text-shadow: 0 0 5px #03dac6, 0 0 10px #03dac6, 0 0 20px #03dac6;
  }
  50% {
    text-shadow: 0 0 10px #ff4081, 0 0 20px #ff4081, 0 0 40px #ff4081;
  }
  100% {
    text-shadow: 0 0 5px #03dac6, 0 0 10px #03dac6, 0 0 20px #03dac6;
  }
}

.beinav {
  font-size: calc(1.375rem + 1.5vw);
  animation: neon-glow 2s infinite alternate;
  color: #03dac6;
  text-align: center;
  padding-bottom: 0.5%;
}

.feature-card iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  /*margin-top: 2.3rem;*/
}

.feature-card {
  background: rgba(0, 102, 255, 0.4);
  border: 1px solid var(--accent);
  border-radius: 15px;
  padding: 2.5rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  cursor: pointer;
  min-height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(247, 0, 255);
}

.feature-card h3 {
  color: rgba(247, 0, 255);
  /*font-size: 1.5rem;*/
}

.feature-card p {
  color: rgba(247, 0, 255);
  opacity: 0.8;
  text-align: center;
}

.button {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255);
  background: #ff0077;
  border: rgb(0, 0, 0);
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.feature-card:hover .button {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #e100ff33;
}

.event-image {
  display: flex;
  justify-content: center;
}

.cardwhite {
  color: #5960ff;
}

.cardwhiteh3 {
  color: #ffffff;
}

