/*
 * PULSCAM_TURNSTILE_LOGIN_AND_HOMEPAGE_R2
 */

.pcTurnstileMountWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 70px;
}

.pcLoginTurnstileWrap {
  margin: 14px 0 12px;
}

.pcTurnstileGateLocked {
  overflow: hidden !important;
}

.pcTurnstileGate {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 100dvh;
  padding: 24px;
  overflow: auto;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(255, 183, 214, 0.19),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 15%,
      rgba(255, 162, 207, 0.15),
      transparent 31%
    ),
    radial-gradient(
      circle at 52% 100%,
      rgba(255, 198, 220, 0.12),
      transparent 40%
    ),
    linear-gradient(
      180deg,
      rgba(255, 238, 246, 0.24),
      rgba(255, 228, 240, 0.18)
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pcTurnstileGateCard {
  width: min(100%, 460px);
  box-sizing: border-box;
  padding: 34px 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 245, 250, 0.80)
    );
  box-shadow:
    0 24px 70px rgba(255, 171, 207, 0.22),
    0 0 34px rgba(255, 201, 224, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #5b3650;
  text-align: center;
}

.pcTurnstileGateBrand {
  margin-bottom: 18px;
  color: #ff8a35;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pcTurnstileGateCard h1 {
  margin: 0;
  color: #6e3d5e;
  font-size: clamp(27px, 6vw, 36px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.pcTurnstileGateText {
  max-width: 340px;
  margin: 14px auto 22px;
  color: rgba(103, 67, 89, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.pcTurnstileStatus {
  min-height: 22px;
  margin: 16px 0 0;
  color: rgba(110, 73, 95, 0.70);
  font-size: 13px;
  line-height: 1.45;
}

.pcTurnstileStatus[data-tone="success"] {
  color: #4d9a6a;
}

.pcTurnstileStatus[data-tone="error"] {
  color: #d76f7f;
}

.pcTurnstileStatus[data-tone="info"] {
  color: #b9708d;
}

@media (max-width: 520px) {
  .pcTurnstileGate {
    padding: 16px;
  }

  .pcTurnstileGateCard {
    padding: 28px 18px 24px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcTurnstileGate,
  .pcTurnstileGateCard {
    scroll-behavior: auto;
  }
}
