html {
  background: #071426;
}

.background-corners {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  opacity: 0.56;
}

.background-logo {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: min(940px, 72vw);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  opacity: 0.62;
  filter: saturate(1.18) contrast(1.05);
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(5, 10, 20, 0.55);
}

.funken {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.container,
.rs-container,
.cs-container,
.fc-container,
.fb-container,
.mw-container,
.legal-container,
.vc-footer {
  position: relative;
  z-index: 3;
}

.vc-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 20px 30px;
  color: #8ea0bf;
  font-family: Arial, sans-serif;
}

.vc-footer-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.vc-footer-brand {
  font-size: 13px;
}

.vc-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.vc-footer-links a {
  color: #a0a0a0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.vc-footer-links a:hover {
  color: #2f80ed;
}

@media (max-width: 760px) {
  .background-logo {
    width: 92vw;
  }
}

.funken::before,
.funken::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

.funken::before {
  left: 0;
  top: 0;
  background: radial-gradient(circle, #ffffff 0%, #F97316 24%, rgba(249, 115, 22, 0.58) 54%, transparent 72%);
  box-shadow:
    0 0 18px rgba(249, 115, 22, 0.8),
    0 0 46px rgba(249, 115, 22, 0.42);
  animation: funkenOrange 6.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.funken::after {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, #ffffff 0%, #38BDF8 24%, rgba(59, 130, 246, 0.6) 54%, transparent 72%);
  box-shadow:
    0 0 18px rgba(56, 189, 248, 0.8),
    0 0 46px rgba(59, 130, 246, 0.44);
  animation: funkenBlue 6.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes funkenOrange {
  0% {
    opacity: 0.95;
    transform: translate3d(8px, 8px, 0);
  }
  30% {
    opacity: 1;
    transform: translate3d(calc(50vw - 8px), calc(50vh - 8px), 0);
  }
  46% {
    transform: translate3d(calc(38vw - 8px), calc(42vh - 8px), 0);
  }
  62% {
    transform: translate3d(calc(50vw - 8px), calc(50vh - 8px), 0);
  }
  78% {
    opacity: 0.92;
    transform: translate3d(calc(62vw - 8px), calc(58vh - 8px), 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(50vw - 8px), calc(50vh - 8px), 0);
  }
}

@keyframes funkenBlue {
  0% {
    opacity: 0.95;
    transform: translate3d(-8px, -8px, 0);
  }
  30% {
    opacity: 1;
    transform: translate3d(calc(-50vw + 8px), calc(-50vh + 8px), 0);
  }
  46% {
    transform: translate3d(calc(-38vw + 8px), calc(-42vh + 8px), 0);
  }
  62% {
    transform: translate3d(calc(-50vw + 8px), calc(-50vh + 8px), 0);
  }
  78% {
    opacity: 0.92;
    transform: translate3d(calc(-62vw + 8px), calc(-58vh + 8px), 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50vw + 8px), calc(-50vh + 8px), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .funken::before,
  .funken::after {
    animation: none;
    opacity: 0;
  }
}
