/* ════════════════════════════════════════════════════════════════
   MiniMind — inner page styles (about, privacy, terms, cookies,
   delete-account). Requires site.css loaded first.
════════════════════════════════════════════════════════════════ */

/* ── Page hero ────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #0d0d24 60%, #1a0a32 100%);
    padding: 80px 0 64px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,.15) 0%, transparent 65%);
    border-radius: 50%; pointer-events: none;
}
.page-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3);
    color: #a78bfa; padding: 5px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600; margin-bottom: 20px;
}
.page-hero h1 {
    font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: #fff;
    line-height: 1.15; margin-bottom: 16px;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 580px; }

/* ── Legal / content body ─────────────────────────────────────── */
.legal-body { padding: 72px 0 96px; }
.legal-toc {
    position: sticky; top: 90px;
    background: #fff; border: 1px solid var(--c-border);
    border-radius: 16px; padding: 24px; font-size: .875rem;
}
.legal-toc h6 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--c-muted); margin-bottom: 12px; }
.legal-toc a { display: block; color: var(--c-muted); padding: 4px 0; transition: color .2s; }
.legal-toc a:hover { color: var(--c-primary); }
.legal-toc a.active { color: var(--c-primary); font-weight: 600; }
.legal-content h2 { font-size: 1.45rem; font-weight: 800; margin: 48px 0 16px; padding-top: 8px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: #1f2937; }
.legal-content p  { color: #374151; line-height: 1.85; margin-bottom: 16px; font-size: .97rem; }
.legal-content ul, .legal-content ol { color: #374151; line-height: 1.85; margin-bottom: 16px; padding-left: 24px; font-size: .97rem; }
.legal-content li { margin-bottom: 6px; }
.legal-content a  { color: var(--c-primary); }
.legal-content a:hover { text-decoration: underline; }
.legal-meta {
    background: var(--c-soft); border: 1px solid var(--c-border); border-radius: 12px;
    padding: 16px 20px; margin-bottom: 40px; font-size: .875rem; color: var(--c-muted);
}
.legal-meta strong { color: var(--c-text); }
.legal-nav-strip {
    background: #f9fafb; border: 1px solid var(--c-border); border-radius: 12px;
    padding: 20px; margin-top: 56px;
}
.legal-nav-strip a {
    color: var(--c-primary); font-weight: 600; font-size: .875rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.legal-nav-strip a:hover { text-decoration: underline; }
.contact-box {
    background: linear-gradient(135deg, var(--c-primary), var(--c-violet));
    border-radius: 20px; padding: 40px; color: #fff; margin-top: 56px;
}
.contact-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.contact-box p  { color: rgba(255,255,255,.8); margin-bottom: 20px; font-size: .97rem; }
.btn-contact {
    background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.35);
    color: #fff; padding: 11px 24px; border-radius: 10px; font-weight: 700; font-size: .925rem;
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-contact:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── About page ───────────────────────────────────────────────── */
.value-card {
    background: #fff; border: 1px solid var(--c-border); border-radius: 16px;
    padding: 28px; height: 100%; transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.07); transform: translateY(-2px); }
.value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(99,102,241,.08); display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; margin-bottom: 16px;
}
.game-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid var(--c-border); border-radius: 10px;
    padding: 10px 16px; font-size: .875rem; font-weight: 600; color: var(--c-text);
    transition: all .2s; width: 100%;
}
.game-chip:hover { border-color: var(--c-primary); color: var(--c-primary); box-shadow: 0 4px 16px rgba(99,102,241,.12); }
.stat-pill {
    background: rgba(99,102,241,.08); border-radius: 12px;
    padding: 20px 24px; text-align: center;
}
.stat-pill .num { font-size: 2rem; font-weight: 900; color: var(--c-primary); line-height: 1; }
.stat-pill .lbl { font-size: .78rem; color: var(--c-muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 767px) {
    .page-hero { padding: 56px 0 48px; text-align: center; }
    .page-hero p { margin: 0 auto; }
    .legal-body { padding: 48px 0 72px; }
    .legal-toc  { display: none; }
}
