/* ── Legal Pages ── */

.legal-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--clr-border);
  background: radial-gradient(ellipse 60% 40% at 50% -5%, rgba(108,138,255,0.1) 0%, transparent 70%);
}

.legal-game-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 0.75rem;
}

.legal-game-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--clr-muted);
}

.legal-scope {
  font-size: 0.9rem;
  color: var(--clr-muted);
  margin-top: 0.25rem;
}

/* ── Legal Body ── */
.legal-body {
  padding-block: 3.5rem;
  max-width: 760px;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.legal-section p,
.legal-section li {
  color: var(--clr-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.legal-section a {
  color: var(--clr-accent);
}

/* Placeholder styling — visible in dev, remove once content is pasted */
.paste-placeholder {
  color: #e07b4a !important;
  border: 1px dashed #e07b4a;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  font-style: italic;
  font-size: 0.9rem !important;
}

/* ── Footer legal nav ── */
.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: var(--clr-muted);
  transition: color 0.15s;
}
.footer-legal a:hover { color: var(--clr-text); text-decoration: none; }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
}
