body, html {
  height: 100%;
  margin: 0;
}
* {
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
}

.immersive {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
}
.container {
 /* The image used 
  background-image: url("/assets/naramatabench.jpg"); */
  position: relative;

  margin: 0 auto;
 /* Full height */
  height: 100%; 
 /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container img {vertical-align: middle;}

.container .content {
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  margin-left: auto; /* Centers the element horizontally */
  margin-right: auto;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
  color: #f1f1f1;
  width: 100%;
  padding: 28px;
  
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Mobile */
@media (max-width: 768px) {
  #bg-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }
}

.info_link {
 color: #ff9100;
 font-weight: 400;
 text-decoration: none;
 }

.info_link:hover,

.info_link:focus,

.info_link:active,

.info_link:active:focus {

  color: #b33117;

  text-decoration: none;

  background-color: transparent;

}

  .p { display: inline-flex; align-items: center; gap: 10px; padding: 8px 12px; background: var(--color-background-primary); border: 0.5px solid var(--color-border-tertiary); border-radius: 999px; max-width: 340px; }
  .pb { background: transparent; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; color: #ff9100; }
  .pb svg { width: 16px; height: 16px; fill: currentColor; }
  .pb:active { opacity: 0.6; }
  .times { font-size: 11px; color: #ff9100; font-variant-numeric: tabular-nums; white-space: nowrap; }
  
#seek {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 120px;
  height: 3px;
  border-radius: 2px;
  background: #444444;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  min-height: 10px;
}

/* Chrome, Edge, Safari */
#seek::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #ff9100 !important;
  cursor: pointer;
  border: none !important;
  margin-top: -4px; /* vertically centers the thumb on the track */
}

/* Firefox */
#seek::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50% !important;
  background: #ff9100;
  cursor: pointer;
  border: none !important;
  box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -4px; /* vertically centers the thumb on the track */
}

/* Firefox track */
#seek::-moz-range-track {
  height: 3px;
  border-radius: 2px;
  background: #ff9100;
  border: none;
}
#seek::-moz-range-thumb,
#seek::-moz-range-thumb:hover,
#seek::-moz-range-thumb:active {
  border: none !important;
  outline: none !important;
}

/* Edge / Chrome track */
#seek::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 2px;
  background: transparent;
  border: none !important;
  box-sizing: border-box;
}

/* Safari mobile tap target fix */
#seek {
  min-height: 10px;
}






