@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding: 20px;
}
@media (max-width: 699px) {
  html {
    scroll-padding: 40px;
  }
}

:root {
  --top-safe-pull: 0px;
}
@media (max-width: 699px) {
  :root {
    --top-safe-pull: 60px;
  }
}

.top-safe-pull {
  height: var(--top-safe-pull, 0px);
}

body {
  background-color: var(--page-bg, #2e7ba0);
  background-image: var(--page-bg-image, none);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: background-color 1s ease-in-out;
  font-family: var(--body);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: normal;
  text-transform: uppercase;
}

p {
  font-size: 1rem;
  line-height: 1.4;
}

a {
  color: var(--rdk--color--link);
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.7;
}

:root {
  --rdk--color--link: #167e89;
  --bg: #14131a;
  --surface: #1e1d27;
  --surface-2: #272631;
  --line: #34333f;
  --text: #ecebf2;
  --muted: #9b9aab;
  --accent: #ff5a4d;
  --accent-soft: rgba(255, 90, 77, 0.14);
  --radius: 10px;
  --display: "Oswald", system-ui, sans-serif;
  --body: "Roboto Condensed", system-ui, sans-serif;
}

.screen-reader-text {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.responsive-image {
  display: block;
  height: auto;
  width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.has-reversed-links a {
  color: #77f9f5;
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .scroll-fade-in-shrink {
      animation-name: fadeInShrink;
      animation-fill-mode: forwards;
      animation-range: -20vh 120vh;
      animation-timeline: view();
      animation-timing-function: linear;
      opacity: 0.5;
      transform: scale(2);
    }
    .scroll-fade-in-grow {
      animation-name: fadeInGrow;
      animation-fill-mode: forwards;
      animation-range: 0vh 65vh;
      animation-timeline: view();
      animation-timing-function: linear;
      opacity: 0;
      transform: scale(0.5);
    }
    .scroll-grow-shrink {
      animation-name: growShrink;
      animation-fill-mode: both;
      animation-range: cover 0% cover 100%;
      animation-timeline: view();
      animation-timing-function: linear;
    }
  }
}
@keyframes fadeInShrink {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInGrow {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes growShrink {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  35% {
    opacity: 1;
    transform: scale(1);
  }
  65% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.75);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeSlideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-2rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.has-pl-font-size {
  font-size: 1.2rem;
}

.has-ps-font-size {
  font-size: 0.8rem;
}

.info-card {
  align-items: center;
  background-color: #ffffff;
  border-radius: 0.6rem;
  display: flex;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.7));
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 2rem 3rem;
  position: relative;
  text-align: center;
  z-index: 2;
}
.info-card img {
  max-width: 200px;
}
.info-card p {
  max-width: 400px;
}
@media (max-width: 699px) {
  .info-card {
    padding: 2rem 1.5rem;
  }
}

:root .info-card-and-photo {
  align-items: flex-start;
  display: grid;
  gap: 20px;
  grid-template-columns: auto 55%;
  margin-top: 0rem;
  max-width: 1000px;
}
:root .info-card-and-photo__card {
  align-self: stretch;
}
:root .info-card-and-photo__photo {
  aspect-ratio: 1.085/1;
  border-radius: 0.6rem;
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media (max-width: 849px) {
  :root .info-card-and-photo {
    grid-template-columns: 1fr;
    margin-top: 0;
    max-width: 500px !important;
  }
}

.site-header {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  min-height: 800px;
  padding: 2rem clamp(1rem, 0.6364rem + 1.8182vw, 2rem) 4rem;
  position: relative;
  row-gap: 0rem;
  width: 100%;
  z-index: 5;
}
.site-header__logo {
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.5s;
  display: block;
  height: auto;
  flex-shrink: 1;
  left: clamp(0.4375rem, 0.3466rem + 0.4545vw, 0.6875rem);
  margin-inline: auto;
  margin-bottom: 1rem;
  max-width: 360px;
  opacity: 0;
  position: relative;
  width: 100%;
}
.site-header .nav--inline {
  margin-bottom: clamp(2.5rem, 1.5909rem + 4.5455vw, 5rem);
  margin-top: clamp(2.5rem, 1.5909rem + 4.5455vw, 5rem);
}
@media (prefers-reduced-motion: no-preference) {
  .site-header__socials .socials > a {
    animation: fadeSlideFromLeft 2s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  }
  .site-header__socials .socials > a:nth-child(1) {
    animation-delay: 1.3s;
  }
  .site-header__socials .socials > a:nth-child(2) {
    animation-delay: 1.42s;
  }
  .site-header__socials .socials > a:nth-child(3) {
    animation-delay: 1.54s;
  }
  .site-header__socials .socials > a:nth-child(4) {
    animation-delay: 1.66s;
  }
  .site-header__socials .socials > a:nth-child(5) {
    animation-delay: 1.78s;
  }
}
.site-header p {
  animation: fadeIn 2s ease forwards;
  animation-delay: 0.5s;
  font-weight: 300;
  margin: 0;
  opacity: 0;
  text-align: center;
}
.site-header .is-tagline {
  font-size: clamp(1.25rem, 1.0227rem + 1.1364vw, 1.875rem);
}
.site-header .is-handle {
  color: #beebf7;
  font-size: clamp(1.125rem, 0.9886rem + 0.6818vw, 1.5rem);
}
@media (max-width: 699px) {
  .site-header {
    justify-content: flex-start;
    padding-bottom: 2rem;
    padding-top: 3rem;
  }
  .site-header__logo {
    max-width: 240px;
  }
}

/* Reusable click-to-play video facade.
   The `player` block here is just the stage + poster + play button: nothing
   from YouTube (no iframe, no API) loads until the facade is clicked. It's
   shared by the music playlist (two-column layout, see `_video-playlist.scss`)
   and the standalone show video (`.player--single`). Keep anything
   playlist-specific out of this file so both consumers stay in sync. */
.player--single {
  margin-inline: auto;
  max-width: 960px;
}
.player--stacked {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.player__item {
  min-width: 0;
}
.player__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.3rem 0.7rem;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
  pointer-events: none;
}
.player__stage {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  align-self: start;
}
.player__stage iframe,
.player__stage > div {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.player {
  /* Click-to-play facade: just a poster + play button until the user starts.
     Nothing from YouTube loads (no iframe, no API) until this is clicked. */
}
.player__facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  display: block;
  z-index: 2;
}
.player__facade:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}
.player__poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  transition: opacity 0.2s ease;
}
.player__play svg {
  width: 100%;
  height: 100%;
  display: block;
}
.player__play-bg {
  fill: #212121;
  opacity: 0.8;
  transition: fill 0.2s ease, opacity 0.2s ease;
}
.player__facade:hover .player__play-bg, .player__facade:focus-visible .player__play-bg {
  fill: #f00;
  opacity: 1;
}

/* Two-column media player: a video stage on the left and a scrollable playlist
   on the right. Collapses to a single column (playlist beneath the stage) under
   860px. The shared stage + click-to-play facade lives in `_video-facade.scss`
   (the `player` block); this file owns only the playlist-specific layout and the
   `playlist` sidebar block. A container query on .player would be the more
   component-correct version of the breakpoint — noted in the chat. */
.player__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
}
.player {
  /* The column stretches to the stage's height; the playlist absolutely fills
     it so its own content never grows the row — it scrolls within instead. */
}
.player__sidebar {
  position: relative;
}

.playlist {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.playlist__head {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}
.playlist__scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
}
.playlist {
  /* Album divider: a titled break between batches of videos. Sticks to the
     top of the scroll area so the current album's title stays visible while
     its videos scroll past. An empty album (none released yet) still renders,
     carrying a "coming soon" note instead of rows. */
}
.playlist__album {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.playlist__album-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.playlist__album-note {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.playlist__item {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 12px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px;
  cursor: pointer;
  color: #ffffff;
  font: inherit;
  transition: background 0.15s ease;
}
.playlist__item:last-child {
  border-bottom: 0;
}
.playlist__item:hover {
  background: var(--surface-2);
}
.playlist__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}
.playlist__item[aria-current=true] {
  background: var(--accent-soft);
}
.playlist__item[aria-current=true] .playlist__thumb {
  box-shadow: 0 0 0 2px var(--accent);
}
.playlist__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-2);
}
.playlist__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.playlist__duration {
  position: absolute;
  right: 4px;
  bottom: 4px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  padding: 1px 5px;
  border-radius: 4px;
}
.playlist__meta {
  min-width: 0;
  align-self: center;
}
.playlist__title {
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.playlist__channel {
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 1100px) {
  .player__layout {
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .player__sidebar {
    position: static;
  }
  .player__stage:has(+ .player__sidebar) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .playlist {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: static;
    max-height: 250px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .playlist__item {
    transition: none;
  }
}
.nav img {
  display: block;
  height: auto;
  transition: width 0.25s ease;
  width: clamp(0.75rem, 0.3864rem + 1.8182vw, 1.75rem);
}
.nav a {
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(0.875rem, 0.6477rem + 1.1364vw, 1.5rem);
  font-weight: 300;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  transition: font-size 0.5s ease, color 0.5s ease, font-weight 0.5s ease;
}

.nav--inline {
  align-items: center;
  background: transparent;
  display: flex;
  gap: clamp(0.625rem, 0.125rem + 2.5vw, 2rem);
  height: auto;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 3;
}
.nav--inline .nav-menu {
  align-items: center;
  display: flex;
  gap: clamp(0.625rem, 0.125rem + 2.5vw, 2rem);
  justify-content: center;
}
@media (prefers-reduced-motion: no-preference) {
  .nav--inline .nav-menu > a,
  .nav--inline .nav-menu > img {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  .nav--inline .nav-menu a:hover {
    color: #000000;
  }
  .nav--inline .nav-menu > a {
    animation-name: fadeSlideDown;
  }
  .nav--inline .nav-menu > img {
    animation-name: fadeScaleIn;
  }
  .nav--inline .nav-menu > :nth-child(1) {
    animation-delay: 0.7s;
  }
  .nav--inline .nav-menu > :nth-child(2) {
    animation-delay: 0.79s;
  }
  .nav--inline .nav-menu > :nth-child(3) {
    animation-delay: 0.88s;
  }
  .nav--inline .nav-menu > :nth-child(4) {
    animation-delay: 0.97s;
  }
  .nav--inline .nav-menu > :nth-child(5) {
    animation-delay: 1.06s;
  }
  .nav--inline .nav-menu > :nth-child(6) {
    animation-delay: 1.15s;
  }
  .nav--inline .nav-menu > :nth-child(7) {
    animation-delay: 1.24s;
  }
}
@media (max-width: 699px) {
  .nav--inline {
    height: auto;
    padding-block: 1rem;
  }
  .nav--inline .nav-menu {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  .nav--inline a {
    font-size: 1.2rem;
  }
  .nav--inline img {
    display: none;
  }
}

.nav--sticky {
  display: none;
  z-index: 4;
}
@media (min-width: 700px) {
  .nav--sticky {
    align-items: center;
    background: rgba(47, 188, 191, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: clamp(0.625rem, 0.125rem + 2.5vw, 2rem);
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    padding: 0.75rem 1.5rem;
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }
  .nav--sticky.is-visible {
    transform: translateY(0);
    visibility: visible;
  }
  .nav--sticky .nav-toggle {
    display: none;
  }
  .nav--sticky .nav-menu {
    align-items: center;
    display: flex;
    gap: clamp(0.625rem, 0.125rem + 2.5vw, 2rem);
    justify-content: center;
  }
  .nav--sticky a {
    font-size: clamp(0.875rem, 0.7841rem + 0.4545vw, 1.125rem);
    font-weight: 400;
  }
  .nav--sticky a.is-current {
    color: #000000;
  }
  .nav--sticky img {
    width: 15px;
  }
}
@media (max-width: 699px) {
  .nav--sticky {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    height: 60px;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
  }
  .nav--sticky.is-visible {
    transform: translateY(0);
    visibility: visible;
  }
  .nav--sticky .nav-toggle {
    align-items: center;
    background: rgba(47, 188, 191, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    backdrop-filter: blur(12px) saturate(160%);
    border: 0;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    font-family: "Oswald", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    gap: 0.4em;
    height: 100%;
    justify-content: center;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    width: 100%;
  }
  .nav--sticky .nav-menu {
    background: rgba(47, 188, 191, 0.85);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    backdrop-filter: blur(12px) saturate(160%);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    left: 0;
    position: absolute;
    right: 0;
    top: 100%;
  }
  .nav--sticky .nav-menu img {
    display: none;
  }
  .nav--sticky .nav-menu a {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    padding: 0.9rem 1.5rem;
    width: 100%;
  }
  .nav--sticky .nav-menu a.is-current {
    color: #000000;
  }
  .nav--sticky.is-open .nav-toggle {
    background: rgba(42, 169, 172, 0.85);
  }
  .nav--sticky.is-open .nav-menu {
    display: flex;
  }
}

.section {
  min-height: 100vh;
  overflow-x: clip;
  padding: clamp(3.125rem, 1.5341rem + 7.9545vw, 7.5rem) clamp(1rem, 0.6364rem + 1.8182vw, 2rem);
  position: relative;
  z-index: 2;
}
.section > div {
  margin-inline: auto;
  max-width: 1380px;
  position: relative;
  z-index: 3;
}
.section__intro {
  align-items: center;
  display: flex;
  padding: 2rem;
  min-height: 140px;
  position: relative;
  z-index: 1;
}
.section__intro h2 {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12rem;
  left: 0;
  line-height: 1;
  margin: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  z-index: 1;
}
.section__intro p {
  color: #ffffff;
  font-size: clamp(1.1875rem, 1.0739rem + 0.5682vw, 1.5rem);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 780px;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media (max-width: 699px) {
  .section {
    min-height: 40vh;
  }
  .section__intro h2 {
    font-size: 5rem;
    top: 0;
  }
}

.social-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto 2.5rem;
  max-width: 958px;
}
@media (min-width: 600px) {
  .social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.social-grid img {
  aspect-ratio: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.socials {
  --rdk--socials--color: #000000;
  --rdk--socials--hover: rgba(11, 156, 173, 0.2);
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.625rem, 0.3977rem + 1.1364vw, 1.25rem);
  justify-content: center;
}
.socials a {
  background-color: transparent;
  border-radius: 12px;
  display: block;
  padding: clamp(0.625rem, 0.4886rem + 0.6818vw, 1rem);
  transition: background-color 0.25s ease;
}
.socials a:hover {
  background-color: var(--rdk--socials--hover);
}
.socials a:hover svg {
  transform: scale(1.1);
}
.socials svg {
  display: block;
  height: clamp(1.625rem, 1.3523rem + 1.3636vw, 2.375rem);
  width: clamp(1.625rem, 1.3523rem + 1.3636vw, 2.375rem);
  transition: transform 0.25s ease;
}
.socials svg path {
  fill: var(--rdk--socials--color);
}

.reverse-socials .socials {
  --rdk--socials--color: #ffffff;
  --rdk--socials--hover: rgba(234, 87, 24, 0.4);
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
  z-index: 1;
  --fade-strength: 1;
}
@media (min-width: 700px) {
  .video-background {
    --fade-strength: 0.5;
  }
}
.video-background::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--page-bg, #2e7ba0));
  opacity: var(--fade-strength, 1);
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}
.video-background.has-hard-bottom::after {
  opacity: 0;
}
.video-background.is-booting > video, .video-background.is-booting::after {
  transition: none;
}
.video-background > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
}
.video-background > video.is-active {
  opacity: var(--active-opacity, 1);
  filter: blur(var(--active-blur, 0));
}
