.yt-watch-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ff0000;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.yt-watch-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 0, 0, 0.4);
  background: #e60000;
}

.yt-watch-button:active {
  transform: translateY(0);
}

.yt-watch-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.yt-watch-button:hover::before {
  left: 100%;
}

.yt-watch-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Modal independiente con nombres únicos */

.yt-video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yt-video-modal.yt-active {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.yt-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yt-video-modal.yt-active .yt-modal-content {
  transform: scale(1);
  opacity: 1;
}

.yt-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.yt-close-modal {
  position: absolute;
  top: -60px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.yt-close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

/* Responsive */

@media (max-width: 768px) {
  .yt-watch-button {
    padding: 14px 28px;
    font-size: 15px;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .yt-watch-icon {
  }
}

@media (max-width: 768px) {
  .yt-modal-content {
    width: 95%;
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .yt-close-modal {
    top: -50px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .yt-watch-button {
  }
}

@media (max-width: 480px) {
  .yt-modal-content {
    width: 98%;
    margin: 0 5px;
  }
}

@media (min-width:768px) {
  .p-md-5 {
    padding: 1rem!important;
  }
}

.link hover {
  cursor: all-scroll;
}

a {
  text-decoration: none !important;
}

