#lsr-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px 32px;
  box-sizing: border-box;
  overflow: auto;
  background: #f5f5f5;
  color: #0a0a0a;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.2s ease;
}

#lsr-gate.lsr-gate-out {
  opacity: 0;
  pointer-events: none;
}

#lsr-gate .lsr-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  box-sizing: border-box;
}

/* checking */
#lsr-gate:not(.lsr-blocked) {
  align-items: center;
  background: #fff;
}

#lsr-gate:not(.lsr-blocked) .lsr-box {
  text-align: center;
  max-width: 480px;
}

#lsr-gate .lsr-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #313131;
}

#lsr-gate .lsr-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #595959;
}

#lsr-gate .lsr-spin {
  width: 32px;
  height: 32px;
  margin: 18px auto;
  border: 3px solid #e8e8e8;
  border-top-color: #2c7be5;
  border-radius: 50%;
  animation: lsr-spin 0.75s linear infinite;
}

@keyframes lsr-spin {
  to { transform: rotate(360deg); }
}

#lsr-gate .lsr-host {
  margin: 24px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #6b6b6b;
}

/* blocked — как на макете */
#lsr-gate.lsr-blocked .lsr-spin,
#lsr-gate.lsr-blocked .lsr-host {
  display: none;
}

#lsr-gate .lsr-vpn-icon {
  position: relative;
  width: 56px;
  height: 56px;
  margin: 0 0 28px;
  border-radius: 14px;
  background: #ebebeb;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lsr-gate .lsr-vpn-icon svg.lsr-globe {
  width: 30px;
  height: 30px;
  display: block;
  color: #1a1a1a;
}

#lsr-gate .lsr-vpn-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e53935;
  border: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#lsr-gate .lsr-vpn-badge svg {
  width: 10px;
  height: 10px;
  display: block;
}

#lsr-gate.lsr-blocked .lsr-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

#lsr-gate.lsr-blocked .lsr-text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.45;
  color: #6b6b6b;
}

#lsr-gate .lsr-vpn-sub {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #0a0a0a;
}

#lsr-gate .lsr-vpn-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#lsr-gate .lsr-vpn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
}

#lsr-gate .lsr-vpn-list li:last-child {
  margin-bottom: 0;
}

#lsr-gate .lsr-vpn-check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lsr-gate .lsr-vpn-check svg {
  width: 12px;
  height: 12px;
  display: block;
}

#lsr-gate .lsr-vpn-item-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #0a0a0a;
}

#lsr-gate .lsr-vpn-item-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #8a8a8a;
}

body.lsr-captcha-page {
  margin: 0;
  min-height: 100vh;
  background: #f5f5f5;
}

@media (max-width: 480px) {
  #lsr-gate {
    padding: 36px 20px 28px;
  }

  #lsr-gate.lsr-blocked .lsr-title {
    font-size: 24px;
  }
}
