/* /css/guestGate.css */

.gate {
  max-width: 520px;
  margin: 48px auto;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: 12px;
  text-align: center;
}

/* =========================
   TEXT
========================= */

.gate h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.gate p {
  font-size: 0.85rem;
  color: rgba(230, 237, 243, 0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* =========================
   ACTION BUTTON
========================= */

.gate button {
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.gate button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* =========================
   MOBILE TUNING
========================= */

@media (max-width: 480px) {
  .gate {
    margin: 32px 16px;
    padding: 24px 18px;
  }
}
