body {
  font-family: Arial, sans-serif;
  background: inherit; /* Use the site's background instead of forcing */
  margin: 0;
  overflow-x: hidden; /* Still good to prevent horizontal shift */
}

/* Reuse this for full-width solo videos */
.promo-video-wrapper {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  background: transparent; /* Add background here if needed */
}

.promo-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Dark mode adaptable navigation styles */
@media (prefers-color-scheme: dark) {
  .navbar-dark-mode {
    background: rgba(18, 18, 18, 0.95) !important;
    color: #ffffff;
  }
}

/* Mobile-responsive improvements */
@media (max-width: 768px) {
  .promo-video-wrapper {
    margin: 1rem;
    padding: 0.5rem;
  }
}