html, body {
    overflow-x: hidden;
}

.hero-thumb {
    border: 1px solid #333;
    border-radius: 4px;
}

.bg-button {
    background-color: #FFD700;
    color: #000;
}

/* Play Button Styles */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 120px;      /* larger size */
  height: 120px;
  background-color: #e3342f; /* Tailwind red-600 */
  border-radius: 50%;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: pulse 2.5s infinite;
}

/* White play triangle inside the button */
.play-button::before {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border-style: solid;
  border-width: 22px 0 22px 34px;
  border-color: transparent transparent transparent white;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.7);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 25px rgba(227, 52, 47, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 0 rgba(227, 52, 47, 0);
  }
}

/* Responsive: smaller button on mobile */
@media (max-width: 768px) {
  .play-button {
    width: 80px;
    height: 80px;
  }

  .play-button::before {
    border-width: 14px 0 14px 22px;
    margin-left: 4px;
  }
}
