@keyframes ring-pulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow:
      0 0 14px rgba(142, 212, 255, 0.3),
      0 0 28px rgba(181, 107, 255, 0.18);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 26px rgba(142, 212, 255, 0.65),
      0 0 50px rgba(181, 107, 255, 0.4);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 -32px, 32px 0;
  }
}

@keyframes smp-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 6px rgba(142, 212, 255, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(181, 107, 255, 0.8));
  }
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.event-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.event-top time {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--muted);
}

.mc-select h3,
.mc-slot h3 {
  margin-bottom: 0.4rem;
}

.mc-select p,
.mc-slot p {
  flex: 1;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.step-num {
  font-family: var(--font-ui);
  font-size: 1.6rem;
  color: var(--glow);
  text-shadow: 2px 2px 0 #000, 0 0 10px rgba(142, 212, 255, 0.4);
  margin-bottom: 0.4rem;
}

.about-copy {
  display: grid;
  gap: 0.9rem;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.9rem;
}

.event-detail .hero-actions {
  margin-top: 1rem;
}

.event-missing {
  text-align: center;
  padding: 3rem 1rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

@media (max-width: 960px) {
  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mc-btn:active {
    transform: none;
  }

  .mc-slot:hover,
  .mc-select:hover {
    transform: none;
  }
}
