@charset "UTF-8";
/* CSS Document */

.smart-video-wrapper {
  position: relative;
  overflow: hidden;
}

.clean-player {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  background: #000;
}

.clean-player::before {
  content: "";
  background: #000 center/cover no-repeat;
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.clean-player::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  z-index: 2;
  text-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.clean-player.active::before,
.clean-player.active::after {
  opacity: 0;
}

.clean-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
  z-index: 3;
}

.clean-player.active iframe {
  display: block;
}

.cta-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 5;
}

.cta-overlay.visible {
  opacity: 1;
}

.cta-overlay a {
  color: inherit;
  text-decoration: none;
}

