.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.privacy-overlay-global,
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 40%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.cookie-banner {bottom: 60px;}

.privacy-overlay-global button,
.cookie-banner button {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #e62117;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .privacy-overlay-global,
  .cookie-banner {
    font-size: 14px;
    padding: 15px;
    max-width: 90%;
  }
}
