.tvplayer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Donkere achtergrond */
  backdrop-filter: blur(20px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.tvplayer-box {
  aspect-ratio: 16 / 9;
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 675px;
  background-color: #000;
  border-radius: 20px;
  box-shadow:
  0 0 30px rgba(255, 255, 255, 0.4), /* buitenlicht */
  inset 0 0 10px rgba(255, 255, 255, 0.1); /* binnenlicht */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tvplayer-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  display: block;
}

.tvplayer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.tvplayer-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

