/* Video background for carousel slides */
.slide-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* Below overlay and content */
}

/* Tilted video style for content sections */
.video-tilted {
  display: block;
  transform-origin: center;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  overflow: hidden; /* Ensure rounded corners clip video */
}
.rotated-video-left {
  transform: rotate(-5deg);
}

.rotated-video-right {
  transform: rotate(5deg);
}

/* Cookie consent banner */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  padding: 20px;
}

#cookie-consent-banner .cc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#cookie-consent-banner p {
  margin: 0;
  font-size: 14px;
}

#cookie-consent-banner .cc-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  #cookie-consent-banner .cc-container {
    flex-direction: column;
    align-items: stretch;
  }
  #cookie-consent-banner .cc-actions {
    justify-content: flex-end;
  }
}
