/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
figure {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* main CSS */
.page-loader {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
}

.page-loader_logo-wrap {
  position: relative;
  width: 32rem;
  max-width: 90%;
}

.page-loader_logo {
  width: 100%;
}

.page-intro {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  overflow: hidden;
  z-index: 999;
}

.page-intro_bg {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: rotateY(180deg);
  z-index: 0;
  opacity: 0.5;
}

.page-intro_overlay {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(100px);
  z-index: 0;
}

.page-intro svg {
  position: absolute;
  right: 50%;
  bottom: 50%;
  transform: translate(50%, 50%);
  width: 90vw;
  height: auto;
  z-index: 9;
  visibility: hidden;
}

.van_menu {
  filter: blur(10px);
}
.section-main {
  background: #000;
  min-height: 100vh;
}

.coming-soon-content {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-image {
  max-width: 420px; /* adjust this number to taste */
  width: 80%;
  height: auto;
}
.section-main {
  background: #000;
  min-height: 100vh;
}

.coming-soon-content {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-image {
  max-width: 420px;
  width: 80%;
  height: auto;
  filter:
    drop-shadow(0 0 18px rgba(255, 47, 167, 0.75))
    drop-shadow(0 0 42px rgba(255, 47, 167, 0.85))
    drop-shadow(0 0 80px rgba(255, 47, 167, 0.65));
  animation: subtleGlow 1.6s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
  from {
    transform: scale(1);
    filter:
      drop-shadow(0 0 14px rgba(255, 47, 167, 0.55))
      drop-shadow(0 0 34px rgba(255, 47, 167, 0.65))
      drop-shadow(0 0 60px rgba(255, 47, 167, 0.45));
  }

  to {
    transform: scale(1.025);
    filter:
      drop-shadow(0 0 24px rgba(255, 47, 167, 0.95))
      drop-shadow(0 0 58px rgba(255, 47, 167, 0.9))
      drop-shadow(0 0 110px rgba(255, 47, 167, 0.75));
  }
}
.coming-soon-content {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-content::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 47, 167, 0.75) 0%, rgba(255, 47, 167, 0.35) 35%, rgba(255, 47, 167, 0) 70%);
  filter: blur(35px);
  animation: glowPulse 1.35s ease-in-out infinite alternate;
  z-index: 0;
}

.coming-soon-image {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 80%;
  height: auto;
  animation: logoPulse 1.35s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    transform: scale(0.9);
    opacity: 0.55;
  }
  to {
    transform: scale(1.25);
    opacity: 1;
  }
}

@keyframes logoPulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.018);
  }
}
.coming-soon-image {
  animation: logoPulse 1.35s ease-in-out infinite alternate,
             neonFlicker 5.5s infinite;
}

@keyframes neonFlicker {
  0%, 92%, 100% {
    opacity: 1;
  }

  93% {
    opacity: 0.88;
  }

  94% {
    opacity: 1;
  }

  95% {
    opacity: 0.72;
  }

  96% {
    opacity: 1;
  }

  97% {
    opacity: 0.9;
  }

  98% {
    opacity: 1;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 10px;
  border: 2px solid #ff2fa7;
  border-radius: 18px;
  pointer-events: none;
  z-index: 99999;
  box-shadow:
    0 0 8px rgba(255, 47, 167, 0.95),
    0 0 18px rgba(255, 47, 167, 0.75),
    0 0 38px rgba(255, 47, 167, 0.55),
    inset 0 0 12px rgba(255, 47, 167, 0.65);
  animation: borderNeonFlicker 4.5s infinite;
}

@keyframes borderNeonFlicker {
  0%, 88%, 100% {
    opacity: 1;
    box-shadow:
      0 0 8px rgba(255, 47, 167, 0.95),
      0 0 18px rgba(255, 47, 167, 0.75),
      0 0 38px rgba(255, 47, 167, 0.55),
      inset 0 0 12px rgba(255, 47, 167, 0.65);
  }

  89% {
    opacity: 0.55;
    box-shadow:
      0 0 4px rgba(255, 47, 167, 0.5),
      0 0 10px rgba(255, 47, 167, 0.35);
  }

  90% {
    opacity: 1;
  }

  92% {
    opacity: 0.7;
  }

  94% {
    opacity: 1;
  }
}