.akf-app-splash {
  position: fixed;
  inset: 0;
  z-index: 2147482000;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  pointer-events: none;
  color: #f4f8fc;
  background:
    radial-gradient(560px 360px at 50% 42%, rgba(34, 154, 226, .2), transparent 68%),
    radial-gradient(520px 300px at 50% 52%, rgba(216, 183, 106, .08), transparent 72%),
    linear-gradient(155deg, #030a14 0%, #061426 48%, #081c30 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .32s ease, visibility .32s ease;
}

.akf-app-splash,
.akf-app-splash *,
.akf-app-splash *::before,
.akf-app-splash *::after {
  box-sizing: border-box;
}

.akf-app-splash::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(121, 192, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 192, 255, .028) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.akf-app-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.akf-app-splash__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(88vw, 270px);
  padding: 26px 24px 22px;
  overflow: hidden;
  border: 1px solid rgba(143, 200, 255, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(41, 154, 226, .13), transparent 48%),
    rgba(4, 13, 25, .8);
  box-shadow:
    0 32px 84px rgba(0, 0, 0, .46),
    0 0 0 1px rgba(255, 255, 255, .025) inset;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.akf-app-splash__emblem {
  position: relative;
  display: grid;
  width: clamp(116px, 22vw, 142px);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 2px;
}

.akf-app-splash__emblem::before,
.akf-app-splash__emblem::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.akf-app-splash__emblem::before {
  inset: -7px;
  border: 1px solid rgba(121, 192, 255, .24);
  border-top-color: #79c0ff;
  border-right-color: rgba(216, 183, 106, .72);
  animation: akf-splash-orbit 2.2s linear infinite;
}

.akf-app-splash__emblem::after {
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, .09);
  box-shadow: 0 0 34px rgba(41, 154, 226, .2);
  animation: akf-splash-pulse 1.7s ease-in-out infinite;
}

.akf-app-splash__emblem img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, .34));
}

.akf-app-splash__name {
  max-width: 220px;
  color: #f4f8fc;
  font: 800 12px/1.25 Bahnschrift, "Segoe UI", system-ui, sans-serif;
  letter-spacing: .075em;
  text-align: center;
  text-transform: uppercase;
}

.akf-app-splash__progress {
  position: relative;
  width: min(100%, 170px);
  height: 3px;
  margin-top: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(143, 200, 255, .14);
}

.akf-app-splash__progress > span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #28a9e2, #79c0ff 68%, #d8b76a);
  box-shadow: 0 0 16px rgba(121, 192, 255, .48);
  animation: akf-splash-progress 1.15s ease-in-out infinite;
}

.akf-app-splash__text {
  color: #aebfd0;
  font: 650 12px/1.35 Bahnschrift, "Segoe UI", system-ui, sans-serif;
  letter-spacing: .045em;
}

@keyframes akf-splash-orbit {
  to { transform: rotate(360deg); }
}

@keyframes akf-splash-pulse {
  50% { opacity: .52; transform: scale(.965); }
}

@keyframes akf-splash-progress {
  0% { left: -45%; }
  55% { left: 58%; }
  100% { left: 105%; }
}

@media (max-width: 430px) {
  .akf-app-splash {
    padding: 14px;
  }

  .akf-app-splash__panel {
    width: min(90vw, 235px);
    padding: 22px 18px 19px;
    border-radius: 26px;
  }

  .akf-app-splash__emblem {
    width: 116px;
  }

  .akf-app-splash__name {
    max-width: 190px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .akf-app-splash {
    transition: none;
  }

  .akf-app-splash__emblem::before,
  .akf-app-splash__emblem::after,
  .akf-app-splash__progress > span {
    animation: none;
  }

  .akf-app-splash__progress > span {
    left: 0;
    width: 100%;
  }
}
