.nmp-player-wrap {
  width: 100%;
  max-width: 960px;
  margin: 1rem 0;
  font-family: Arial, sans-serif;
}

.nmp-stage {
  position: relative;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.nmp-stage video {
  width: 100%;
  height: auto;
  display: block;
}

.nmp-controls {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nmp-source-btn {
  border: 1px solid var(--nmp-primary-color, #ff385c);
  background: transparent;
  color: var(--nmp-primary-color, #ff385c);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nmp-source-btn:hover,
.nmp-source-btn.is-active {
  background: var(--nmp-primary-color, #ff385c);
  color: #fff;
}

.nmp-ad-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.nmp-ad-overlay.is-hidden {
  display: none;
}

.nmp-ad-content {
  color: #fff;
  max-width: 100%;
}

.nmp-ad-close {
  border: none;
  border-radius: 8px;
  background: var(--nmp-primary-color, #ff385c);
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 600;
}
