/* ── Legal pages shared styles ─────────────────────────────────────────────── */
.legal-page {
    min-height: 100vh;
    background: #060607;
    padding: 120px 18px 80px;
    position: relative;
}

.legal-page::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,45,45,.08) 0%, transparent 70%);
    pointer-events: none;
}

.legal-wrap {
    max-width: 780px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

/* ── Page header ────────────────────────────────────────────────────────────── */
.legal-head {
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.legal-label {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(255,45,45,.10);
    border: 1px solid rgba(255,45,45,.25);
    color: #ff6b6b;
    font-size: .72rem; font-weight: 800;
    letter-spacing: .10em; text-transform: uppercase;
    margin-bottom: 14px;
}

.legal-head h1 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -.04em;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.1;
}

.legal-head .meta {
    color: rgba(255,255,255,.30);
    font-size: .82rem;
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
}
.legal-head .meta span {
    display: flex; align-items: center; gap: 6px;
}
.legal-head .meta i { color: rgba(255,45,45,.55); }

/* ── Content ────────────────────────────────────────────────────────────────── */
.legal-content {
    color: rgba(255,255,255,.60);
    font-size: .92rem;
    line-height: 1.75;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-content h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.01em;
    margin: 0 0 14px;
    display: flex; align-items: center; gap: 10px;
}
.legal-content h2::before {
    content: '';
    display: inline-block;
    width: 3px; height: 1rem;
    background: #ff3b3b;
    border-radius: 4px;
    flex-shrink: 0;
}

.legal-content ul {
    padding: 0;
    margin: 0 0 16px;
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
}
.legal-content ul li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,.55);
}
.legal-content ul li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: rgba(255,45,45,.70);
    margin-top: 8px;
    flex-shrink: 0;
}

.legal-content strong {
    color: rgba(255,255,255,.85);
    font-weight: 700;
}

/* ── Alert box ──────────────────────────────────────────────────────────────── */
.legal-alert {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(255,45,45,.08);
    border: 1px solid rgba(255,45,45,.20);
    border-left: 3px solid #ff3b3b;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 36px;
    color: rgba(255,255,255,.65);
    font-size: .88rem; line-height: 1.6;
}
.legal-alert i { color: #ff5555; margin-top: 2px; flex-shrink: 0; }
