/* YouTube Play Button - Red & Cool */
.btn-youtube-play {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  border: 2px solid #ff0000;
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.btn-youtube-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-youtube-play:hover::before {
  width: 300px;
  height: 300px;
}

.btn-youtube-play:hover {
  background: linear-gradient(135deg, #ff3333 0%, #ff0000 100%);
  border-color: #ff3333;
  box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
  transform: translateY(-2px);
  color: #ffffff !important;
}

.btn-youtube-play:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.4);
}

.btn-youtube-play i {
  position: relative;
  z-index: 1;
  margin-right: 10px;
  font-size: 18px;
}

.btn-youtube-play span {
  position: relative;
  z-index: 1;
}

/* Pulse animation for extra coolness */
@keyframes pulse-red {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 0, 0, 0.7);
  }
}

.btn-youtube-play {
  animation: pulse-red 2s infinite;
}

.btn-youtube-play:hover {
  animation: none;
}

/* Centered container for detail page */
.youtube-play-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .btn-youtube-play {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .btn-youtube-play i {
    font-size: 16px;
    margin-right: 8px;
  }
}

