/* Expose Bible Party Games — legal hub only (isolated from main site) */
:root {
    --bg: #0f0a14;
    --bg-card: #1a1220;
    --text: #f4eef8;
    --text-muted: #b9a8c4;
    --accent: #e879a9;
    --accent-soft: rgba(232, 121, 169, 0.15);
    --border: rgba(244, 238, 248, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px 48px;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(15, 10, 20, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 10;
}

.brand {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.brand:hover {
    text-decoration: none;
    color: var(--accent);
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text);
    text-decoration: none;
}

.nav-link.active {
    color: var(--accent);
}

.hero {
    padding: 48px 0 24px;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1rem;
}

.legal {
    padding-top: 8px;
}

.legal h2 {
    font-size: 1.15rem;
    margin: 28px 0 12px;
    color: var(--text);
}

.legal h2:first-child {
    margin-top: 0;
}

.legal p,
.legal li {
    color: var(--text-muted);
    margin-bottom: 12px;
}

.legal ul {
    padding-left: 1.25rem;
    margin-bottom: 12px;
}

.legal strong {
    color: var(--text);
}

.meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.card p:last-child {
    margin-bottom: 0;
}

.footer-note {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}
