/* Target the button inside that block */
.glow-wrap .t-btn {
  background-color: #9d0000;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255,255,255,0.4), 0 0 12px 4px rgba(255,255,255,0.5);
  animation: glowCycle 1s ease-in-out infinite alternate;
}

/* Glow animation keyframes */
@keyframes glowCycle {
  from {
    box-shadow: 0 0 6px rgba(255,255,255,0.35), 0 0 12px 4px rgba(255,255,255,0.45);
    transform: scale(1);
  }
  to {
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.65), 0 0 22px 8px rgba(255,255,255,0.85);
    transform: scale(1.03);
  }
}
