.am-video {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.am-privacy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

.am-video:hover .am-privacy-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.am-overlay-content p {
  margin: 10px 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.am-overlay-content small {
  font-size: 11px;
  opacity: 0.8;
}

.am-play-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background: var(--bs-secondary);
}

.am-video.play .am-privacy-overlay {
  display: none;
}