#ip-boot-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #1a1625;
  overflow: hidden;
}

.ip-boot-splash__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.ip-boot-splash__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-boot-splash__logo-plate {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 32px;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(26, 22, 37, 0.72) 0%,
    rgba(26, 22, 37, 0.35) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.ip-boot-splash__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow:
    0 0 56px rgba(167, 139, 250, 0.65),
    0 0 16px rgba(255, 255, 255, 0.25);
  animation: ip-boot-splash-pulse 2.4s ease-in-out infinite;
}

@keyframes ip-boot-splash-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
