#lang-toggle {
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  padding-left: 15px;
}

.lang-option {
  opacity: 0.4;
  transition: 0.3s ease;
  padding: 2px 6px;
}

.lang-option.active {
  opacity: 1;
  font-weight: bold;
  color: #0d6efd; /* Bootstrap primary */
}

.divider {
  color: #999;
  padding: 0 4px;
}
.lang-option:hover {
  opacity: 0.8;
}

/* Weekly Schedule */
.ticker-item {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 576px) {
  .ticker-item .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}

.day-box {
  display: inline-block;
  min-width: 100px;
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  border-radius: 4px;
  font-size: 0.9rem;
}

.video-container {
  position: fixed; /* or absolute if inside a section */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* behind content */
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%; /* 100 * (16/9) to cover height */
  height: 100%;
  transform: translate(-50%, -50%);
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.video-foreground iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Mobile adjustments */
@media (max-aspect-ratio: 16/9) {
    .video-foreground iframe {
        width: 177.77vh; /* fill height */
        height: 100vh;
    }
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground iframe {
        width: 100vw;
        height: 56.25vw;
    }
}

@media (max-width: 576px) {
  .day-box {
    width: 100%;
    margin-bottom: 6px;
  }
}
