/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BtSh Legal Pages â€” legal.css
   Full stylesheet for Terms of Service, Privacy, Cookie, Community
   Version 2.0 â€” May 2026
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ RESET & BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --navy: #05070D;
    --navy-2: #0A1220;
    --navy-3: #111827;
    --card: #0D1A30;
    --dgrn: #0D2A1A;
    --green: #22C55E;
    --green-2: #16A34A;
    --green-dim: rgba(34, 197, 94, 0.12);
    --green-border: rgba(34, 197, 94, 0.35);
    --white: #E6EDF3;
    --muted: #7A8AA8;
    --muted-dim: rgba(122, 138, 168, 0.15);
    --gold: #FBBF24;
    --gold-dim: rgba(251, 191, 36, 0.12);
    --gold-border: rgba(251, 191, 36, 0.35);
    --lgrey: #F2F4F7;
    --dgrey: #E2E8F0;
    --border: rgba(255, 255, 255, 0.07);
    --radius: 8px;
    --radius-sm: 4px;
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* â”€â”€ BODY & THEME â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.theme-dark {
    background-color: var(--navy);
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* â”€â”€ OUTER WRAPPER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

/* â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.legal-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--green);
    border-radius: 0 2px 2px 0;
}

.legal-title h1 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 14px;
}

.legal-title p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 620px;
}

/* Meta sidebar */
.legal-meta {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--green);
    border-radius: var(--radius);
    padding: 16px 20px;
    min-width: 200px;
    flex-shrink: 0;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 5px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}

.meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-row span {
    color: var(--muted);
    font-weight: 400;
}

.meta-row b {
    color: var(--white);
    font-weight: 600;
    text-align: right;
}

/* â”€â”€ NOTICE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-card {
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 0.93rem;
    line-height: 1.6;
}

/* Standard notice â€” amber/gold */
.legal-card.notice {
    background: var(--gold-dim);
    border-left: 4px solid var(--gold);
    color: var(--white);
}

.legal-card.notice b {
    color: var(--gold);
}

/* Green highlight â€” escrow guarantee boxes */
.legal-card.highlight-green {
    background: var(--dgrn);
    border-left: 4px solid var(--green);
    color: var(--white);
}

.legal-card.highlight-green p {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 0.93rem;
    line-height: 1.6;
}

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

.legal-card.highlight-green ul {
    margin: 10px 0 10px 16px;
    padding: 0;
}

.legal-card.highlight-green li {
    color: var(--white);
    margin-bottom: 7px;
    line-height: 1.55;
    font-size: 0.93rem;
}

.legal-card.highlight-green b {
    color: var(--green);
}

/* Info card â€” muted */
.legal-card.info {
    background: var(--muted-dim);
    border-left: 4px solid var(--muted);
    color: var(--muted);
}

/* â”€â”€ TABLE OF CONTENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0 40px;
}

.toc h2 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 16px;
}

.toc a {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.toc a:last-child {
    border-bottom: none;
}

.toc a:hover {
    color: var(--green);
    padding-left: 6px;
}

/* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section {
    margin-bottom: 48px;
    padding-top: 8px;
}

.section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.section h4 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--green-2);
    margin: 22px 0 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.section p {
    color: var(--white);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

/* â”€â”€ LISTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section ul,
.section ol {
    margin: 10px 0 14px 20px;
    padding: 0;
}

.section ul li,
.section ol li {
    color: var(--white);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 8px;
    padding-left: 4px;
}

.section ul li b,
.section ol li b {
    color: var(--white);
}

.section ol {
    counter-reset: none;
}

.section ol li {
    padding-left: 6px;
}

/* â”€â”€ BADGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge-new {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: var(--radius-sm);
    padding: 2px 8px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1.5;
    white-space: nowrap;
}

/* â”€â”€ VERSION HISTORY TABLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 0.88rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.legal-table thead tr {
    background: var(--navy-2);
}

.legal-table thead th {
    color: var(--green);
    font-weight: 700;
    text-align: left;
    padding: 11px 16px;
    border-bottom: 2px solid var(--green);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.legal-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.02);
}

.legal-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.legal-table tbody tr:last-child {
    background: rgba(34, 197, 94, 0.06);
}

.legal-table tbody td {
    color: var(--white);
    padding: 10px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:last-child td:first-child {
    color: var(--green);
    font-weight: 700;
}

/* â”€â”€ STRONG / BOLD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section b,
.section strong {
    color: var(--white);
    font-weight: 600;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.legal-footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    font-style: italic;
}

.legal-footer br {
    content: '';
    display: block;
    margin-bottom: 8px;
}

/* â”€â”€ SCROLLBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy-2);
}

::-webkit-scrollbar-thumb {
    background: var(--green-2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

/* â”€â”€ LINKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: var(--white);
}

/* â”€â”€ SELECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
::selection {
    background: rgba(34, 197, 94, 0.25);
    color: var(--white);
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 700px) {
    .legal-wrap {
        padding: 28px 16px 60px;
    }

    .legal-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-meta {
        min-width: unset;
    }

    .legal-title h1 {
        font-size: 1.3rem;
    }

    .toc {
        padding: 18px 18px;
    }

    .section h3 {
        font-size: 1.05rem;
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table thead th,
    .legal-table tbody td {
        padding: 8px 10px;
    }

    .badge-new {
        font-size: 0.58rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .legal-table thead {
        display: none;
    }

    .legal-table tbody tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
    }

    .legal-table tbody td {
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .legal-table tbody td:last-child {
        border-bottom: none;
    }
}

/* â”€â”€ PRINT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media print {
    body.theme-dark {
        background: #fff;
        color: #000;
    }

    .legal-wrap {
        max-width: 100%;
        padding: 0;
    }

    .toc a {
        color: #000;
    }

    .section h3 {
        color: #000;
        border-bottom-color: #22C55E;
    }

    .section h4 {
        color: #16A34A;
    }

    .section p,
    .section li {
        color: #111;
    }

    .legal-card.notice {
        border-left-color: #FBBF24;
        background: #fffbeb;
        color: #111;
    }

    .legal-card.highlight-green {
        border-left-color: #22C55E;
        background: #f0fdf4;
        color: #111;
    }

    .badge-new {
        border-color: #22C55E;
        color: #16A34A;
        background: #f0fdf4;
    }

    .legal-meta {
        background: #f8fafc;
        border-color: #e2e8f0;
    }

    .meta-row span,
    .meta-row b {
        color: #111;
    }

    .legal-footer {
        color: #555;
    }
}