.section.has-bg-motion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section.has-bg-motion > :not(.wc-motion-bg) {
  position: relative;
  z-index: 1;
}

.wc-motion-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  opacity: .28;
  transform: scale(1.04);
}

.wc-motion-bg::before,
.wc-motion-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wc-motion-bg::before {
  background:
    linear-gradient(180deg, #050507 0%, rgba(5, 5, 7, .48) 22%, rgba(5, 5, 7, .58) 78%, #050507 100%),
    radial-gradient(circle at 50% 34%, rgba(245, 245, 247, .14), transparent 52%);
}

.wc-motion-bg::after {
  background: rgba(5, 5, 7, .54);
  backdrop-filter: blur(1.5px) saturate(78%);
  -webkit-backdrop-filter: blur(1.5px) saturate(78%);
}

.wc-motion-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(.12) contrast(1.05) saturate(.82);
  transition: opacity 1.2s var(--ease);
}

.wc-motion-bg.is-ready video {
  opacity: 1;
}

.wc-motion-bg.is-score {
  opacity: .22;
}

.wc-motion-bg.is-groups {
  opacity: .2;
}

.wc-motion-bg.is-teams {
  opacity: .26;
}

.wc-motion-bg.is-bracket {
  opacity: .2;
}

@media (prefers-reduced-motion: reduce) {
  .wc-motion-bg video {
    display: none;
  }
}

@media (max-width: 880px) {
  .wc-motion-bg {
    opacity: .2;
    transform: scale(1.08);
  }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.nav-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #ffffff0a;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.nav-countdown span {
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav-countdown strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  letter-spacing: .02em;
}

.nav-countdown em {
  max-width: 120px;
  overflow: hidden;
  color: #f5f5f799;
  font-style: normal;
  text-overflow: ellipsis;
}

@media (max-width: 880px) {
  .nav-brand {
    gap: 10px;
  }

  .nav-countdown {
    gap: 6px;
    padding: 7px 10px;
  }

  .nav-countdown span,
  .nav-countdown em {
    display: none;
  }

  .nav-countdown strong {
    font-size: 12px;
  }
}
