.wy-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  isolation: isolate;
  color: #fafbf7;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.wy-intro-active .wy-loader {
  display: grid;
  animation: wy-loader-failsafe 0s 1800ms forwards;
}

.wy-loader__curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: calc(50% + 1px);
  background: #173f31;
  transition: transform 440ms cubic-bezier(.76, 0, .24, 1);
}

.wy-loader__curtain--left {
  left: 0;
  border-right: 1px solid #315844;
}

.wy-loader__curtain--right {
  right: 0;
}

.wy-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  transition: opacity 240ms ease, transform 400ms ease;
}

.wy-loader__eyebrow {
  margin-bottom: 24px;
  color: #c2d4aa;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .32em;
  padding-left: .32em;
}

.wy-loader__orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 196px;
  height: 196px;
}

.wy-loader__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #466a51;
}

.wy-loader__ring--outer {
  inset: 0;
  border-top: 2px solid #f2d968;
  border-bottom: 2px solid #f2d968;
  animation: wy-orbit 2.2s linear infinite;
}

.wy-loader__ring--inner {
  inset: 16px;
  border-right-color: #a8c193;
  border-left-color: #a8c193;
  animation: wy-orbit 3s linear reverse infinite;
}

.wy-loader__logo {
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 0 0 9px #224a37, 0 18px 40px -25px #071c11;
  animation: wy-logo-arrive 600ms cubic-bezier(.2, .8, .2, 1) both;
}

.wy-loader__logo img {
  width: 69px;
  height: auto;
}

.wy-loader__currency {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2d968;
  color: #173f31;
  font-size: 20px;
  font-weight: 600;
  box-shadow: 0 0 0 6px #173f31;
}

.wy-loader__currency--usdt {
  top: 13px;
  left: 6px;
  animation: wy-currency-arrive 500ms 80ms ease both;
}

.wy-loader__currency--inr {
  right: 6px;
  bottom: 13px;
  background: #c9dcb7;
  animation: wy-currency-arrive 500ms 180ms ease both;
}

.wy-loader__name {
  margin-top: 26px;
  font-size: clamp(34px, 8vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.055em;
  animation: wy-word-arrive 500ms 100ms ease both;
}

.wy-loader__name strong {
  font-weight: 700;
}

.wy-loader__tagline {
  margin: 14px 0 0;
  color: #c0d0c5;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-align: center;
  animation: wy-word-arrive 500ms 170ms ease both;
}

.wy-loader__tagline span {
  padding-inline: 7px;
  color: #f2d968;
}

.wy-loader__track {
  width: 112px;
  height: 2px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 2px;
  background: #466a51;
}

.wy-loader__track span {
  display: block;
  width: 44%;
  height: 100%;
  background: #f2d968;
  animation: wy-track 1s ease-in-out infinite;
}

.wy-loader__hint {
  position: absolute;
  bottom: max(28px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border: 1px solid #729077;
  border-radius: 50px;
  background: transparent;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .18em;
  color: #c0d0c5;
  text-align: center;
  transition: opacity 180ms ease;
}

.wy-loader__hint:focus-visible {
  outline: 2px solid #f2d968;
  outline-offset: 4px;
}

@keyframes wy-loader-failsafe {
  to { visibility: hidden; pointer-events: none; }
}

.wy-intro-leaving .wy-loader {
  pointer-events: none;
}

.wy-intro-leaving .wy-loader__content {
  opacity: 0;
  transform: translateY(-14px) scale(.97);
}

.wy-intro-leaving .wy-loader__hint {
  opacity: 0;
}

.wy-intro-leaving .wy-loader__curtain--left {
  transform: translateX(-101%);
}

.wy-intro-leaving .wy-loader__curtain--right {
  transform: translateX(101%);
}

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

@keyframes wy-logo-arrive {
  from { opacity: 0; transform: rotate(-12deg) scale(.8); }
  to { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes wy-currency-arrive {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes wy-word-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wy-track {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(340%); }
}

@media (max-height: 540px) {
  .wy-loader__eyebrow { margin-bottom: 12px; }
  .wy-loader__orbit { width: 154px; height: 154px; }
  .wy-loader__logo { width: 82px; height: 82px; border-radius: 22px; }
  .wy-loader__logo img { width: 56px; }
  .wy-loader__currency--usdt { top: 0; left: 0; }
  .wy-loader__currency--inr { right: 0; bottom: 0; }
  .wy-loader__name { margin-top: 18px; font-size: 32px; }
  .wy-loader__tagline { margin-top: 9px; }
  .wy-loader__track { margin-top: 18px; }
  .wy-loader__hint { bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .wy-intro-active .wy-loader { display: none; }
}
