@import "/mk3/assets/palette.css";

/* sponsor-gate.css — 內部頁面權限閘畫面（support/ 與 conductor/ 共用） */

.gate-screen {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--bg, #f7f8fa);
}

.gate-screen[hidden] { display: none; }

.gate-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line, #e5e7eb);
  border-radius: 16px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(15, 30, 60, .08);
}

.gate-icon { font-size: 3.5rem; margin-bottom: 18px; }

.gate-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}

.gate-message {
  color: var(--ink-soft, #555);
  line-height: 1.8;
  margin: 0 0 24px;
}

.gate-details {
  background: var(--warning-soft, #fff7e8);
  border: 1px solid var(--warning, #b45309);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 26px;
  text-align: left;
  font-size: .95rem;
  color: var(--ink, #222);
}

.gate-details p { margin: 6px 0; }

.gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gate-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.gate-btn-primary {
  background: var(--orange);
  color: var(--navy);
}

.gate-btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.gate-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15, 30, 60, .15); }

.gate-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 5px solid var(--line, #e5e7eb);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: gate-spin 1s linear infinite;
}

@keyframes gate-spin { to { transform: rotate(360deg); } }
