.pc-only-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 7, 5, 0.86);
  backdrop-filter: blur(8px);
}

.pc-only-gate[hidden] {
  display: none !important;
}

.pc-only-gate__card {
  width: min(520px, 100%);
  border-radius: 18px;
  border: 1px solid var(--border, rgba(108, 163, 131, 0.3));
  background:
    linear-gradient(155deg, rgba(14, 33, 26, 0.95), rgba(7, 15, 12, 0.94));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  padding: 30px 24px;
  text-align: center;
  color: var(--text, #e9f5ee);
}

.pc-only-gate__title {
  margin: 0 0 12px;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.3;
  color: inherit;
}

.pc-only-gate__text {
  margin: 0;
  color: var(--muted, #9cb6a8);
}

.pc-only-gate__button {
  margin-top: 20px;
  border: 1px solid var(--border, rgba(108, 163, 131, 0.3));
  border-radius: 10px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 650;
  color: #052012;
  background: linear-gradient(135deg, var(--accent, #33ff88), var(--accent2, #21cb6d));
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.pc-only-gate__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(28, 203, 109, 0.22);
  filter: brightness(1.03);
}

.pc-only-gate__button:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(51, 255, 136, 0.28),
    0 10px 18px rgba(28, 203, 109, 0.22);
}

html.pc-only-gate-lock,
body.pc-only-gate-lock {
  overflow: hidden !important;
}
