#ad-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.ad-container {
  position: relative;
  max-width: 90%;
  width: 600px;
  text-align: center;
}

.ad-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  box-shadow: 0 0 20px #000;
}

#skip-ad-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ffd600;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: none;
}

.cta-box {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  background-color: #fff;
  color: #111;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.cta-box a {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 12px;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.play-button {
  width: 60px;
  height: 60px;
  background: #ffd600;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #000;
  border: none;
}