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

:root { --accent: #ff3030; --border: #272727; --dim: #b5b5b5; }

body {
    min-height: 100vh;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

a { color: #fff; }

.legal-header {
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    padding: 14px clamp(18px, 5vw, 64px);
    border-bottom: 1px solid var(--border);
}

.brand { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; text-decoration: none; }
.brand span, .eyebrow { color: var(--accent); }

main { width: min(860px, calc(100% - 36px)); margin: 0 auto; padding: 70px 0 90px; }
.eyebrow { margin-bottom: 10px; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; }
h1 { margin-bottom: 24px; font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { margin: 34px 0 10px; font-size: 1.4rem; }
p, li { color: var(--dim); }
p + p { margin-top: 12px; }
ul { margin: 12px 0 0 22px; }
.notice { margin: 26px 0; padding: 16px; border-left: 3px solid var(--accent); background: #080808; }
.notice strong { color: #fff; }
footer { padding: 28px 18px; border-top: 1px solid var(--border); color: var(--dim); text-align: center; font-size: .76rem; }
.legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 12px; }
.legal-links a { color: #d0d0d0; text-decoration: none; }

