.auth-gate-host {
  position: relative;
}

.auth-gate-host.is-locked .auth-gate-blur-zone {
  filter: blur(5px);
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
  transition: filter 0.25s, opacity 0.25s;
}

.auth-gate-block {
  position: relative;
}

.auth-gate-host.is-locked .auth-gate-block-inner {
  filter: blur(5px);
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
  transition: filter 0.25s, opacity 0.25s;
}

.auth-gate-block-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(12, 14, 32, 0.08);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.auth-gate-host.is-locked .auth-gate-block-overlay {
  opacity: 1;
  pointer-events: auto;
}

.auth-gate-block-btn {
  padding: 10px 22px;
  border: none;
  border-bottom: 3px solid #016b38;
  border-radius: 10px;
  background: linear-gradient(180deg, #03d46a 0%, var(--green, #02b757) 55%, #019648 100%);
  color: #fff;
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 183, 87, 0.3);
  transition: transform 0.12s;
}

.auth-gate-block-btn:hover {
  transform: translateY(-1px);
}

.auth-gate-card {
  width: min(100%, 340px);
  padding: 22px 20px 18px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(145deg, rgba(42, 50, 90, 0.97) 0%, rgba(35, 40, 69, 0.98) 55%, rgba(26, 32, 56, 0.98) 100%);
  border: 2px solid rgba(255, 201, 54, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.auth-gate-card__icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 10px;
}

.auth-gate-card__title {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.auth-gate-card__text {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(238, 241, 255, 0.72);
  margin: 0 0 14px;
}

.auth-gate-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 11px 20px;
  border: none;
  border-bottom: 3px solid #016b38;
  border-radius: 10px;
  background: linear-gradient(180deg, #03d46a 0%, var(--green, #02b757) 55%, #019648 100%);
  color: #fff;
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 183, 87, 0.3);
  transition: transform 0.12s;
}

.auth-gate-card__btn:hover {
  transform: translateY(-1px);
}

.auth-gate-host--wheel.is-locked .auth-gate-blur-zone {
  opacity: 0.82;
}

.auth-gate-host--wheel .auth-gate-block-overlay {
  display: none;
}

@media (max-width: 640px) {
  .auth-gate-card {
    padding: 18px 16px 16px;
  }

  .auth-gate-card__title {
    font-size: 0.98rem;
  }
}
