/* ============================================
   ArcticPlay Hub - Winter Frost Theme
   ============================================ */

:root {
    --bg: #0c1929;
    --bg-card: #112238;
    --bg-card-hover: #162c45;
    --bg-header: rgba(12, 25, 41, 0.9);
    --cyan: #69c4e8;
    --magenta: #b06ced;
    --cyan-glow: rgba(105, 196, 232, 0.2);
    --magenta-glow: rgba(176, 108, 237, 0.15);
    --text: #eaf2f8;
    --text-dim: #7a9bb8;
    --border: rgba(105, 196, 232, 0.14);
    --border-card: rgba(105, 196, 232, 0.08);
    --radius: 6px;
    --radius-md: 12px;
    --font-heading: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --max-w: 1140px;
    --ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--cyan); text-decoration: none; transition: color var(--ease); }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* Neon text */
.neon-text { color: var(--cyan); text-shadow: 0 0 10px var(--cyan-glow); }

/* Section labels */
.tag-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
    padding: 4px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sec-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}
.sec-title-center { text-align: center; }

.sec-desc { color: var(--text-dim); font-size: 1.05rem; max-width: 560px; margin-bottom: 48px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { max-width: var(--max-w); margin: 0 auto; }
.cookie-text h3 { font-family: var(--font-heading); font-size: 1rem; color: var(--cyan); margin-bottom: 6px; }
.cookie-text p { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 14px; }
.cookie-text a { color: var(--cyan); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }

.ck-btn {
    padding: 8px 18px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
}
.ck-accept { background: var(--cyan); color: var(--bg); }
.ck-accept:hover { background: #55b5d4; }
.ck-reject { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.ck-reject:hover { border-color: var(--cyan); color: var(--text); }
.ck-prefs { background: transparent; color: var(--text-dim); border: 1px solid var(--border); }
.ck-prefs:hover { border-color: var(--cyan); color: var(--text); }

.cookie-panel { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.ck-toggle { font-size: 0.82rem; color: var(--text-dim); display: flex; align-items: center; gap: 6px; cursor: pointer; }
.ck-toggle input { accent-color: var(--cyan); }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.4s ease;
}
.header.scrolled {
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}
.logo-bracket { color: var(--cyan); }
.logo-name { color: var(--text); }

.nav-list { list-style: none; display: flex; align-items: center; gap: 28px; }
.nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--ease);
}
.nav-link:hover { color: var(--text); }

.nav-cta {
    background: var(--cyan);
    color: var(--bg) !important;
    padding: 7px 18px;
    border-radius: var(--radius);
    font-weight: 600;
}
.nav-cta:hover { background: #55b5d4; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(12, 25, 41, 0.96);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.mob-menu.open { opacity: 1; pointer-events: all; }
.mob-menu ul { list-style: none; text-align: center; }
.mob-menu li { margin-bottom: 24px; }
.mob-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
}
.mob-link:hover { color: var(--cyan); }
.mob-cta { color: var(--cyan) !important; }

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(105,196,232,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(105,196,232,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}
.hero-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--cyan);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; margin-bottom: 44px; flex-wrap: wrap; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--ease);
}
.btn-neon {
    background: var(--cyan);
    color: var(--bg);
    box-shadow: 0 0 20px var(--cyan-glow);
}
.btn-neon:hover { background: #55b5d4; color: var(--bg); transform: translateY(-2px); box-shadow: 0 4px 30px var(--cyan-glow); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats { display: flex; gap: 36px; }
.h-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
}
.h-stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { display: flex; justify-content: center; }
.hero-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 40px var(--cyan-glow);
}
.hero-frame img { width: 100%; height: auto; display: block; }
.frame-glow {
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--cyan), var(--magenta)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .hero { padding: 100px 0 60px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
}

/* ============================================
   GAME MODES
   ============================================ */
.modes-section { padding: 100px 0; }

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mode-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all var(--ease);
}
.mode-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 24px var(--cyan-glow);
    transform: translateY(-3px);
}

.mode-icon {
    width: 44px;
    height: 44px;
    color: var(--cyan);
    margin-bottom: 16px;
}

.mode-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.mode-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }

@media (max-width: 600px) { .modes-grid { grid-template-columns: 1fr; } }

/* ============================================
   ARSENAL
   ============================================ */
.arsenal-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(17,34,56,0.4), transparent);
}

.arsenal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.arsenal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--ease);
}
.arsenal-card:hover { border-color: var(--magenta); box-shadow: 0 0 20px var(--magenta-glow); }

.arsenal-img { height: 180px; overflow: hidden; }
.arsenal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.arsenal-card:hover .arsenal-img img { transform: scale(1.05); }

.arsenal-info { padding: 24px; }
.arsenal-info h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.arsenal-info p { font-size: 0.88rem; color: var(--text-dim); line-height: 1.7; }

@media (max-width: 768px) { .arsenal-grid { grid-template-columns: 1fr; } }

/* ============================================
   CAPTURES GALLERY
   ============================================ */
.captures-section { padding: 100px 0; }

.captures-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.capture-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-card);
    transition: all var(--ease);
}
.capture-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 24px var(--cyan-glow);
}
.capture-card img { width: 100%; height: 100%; object-fit: cover; }

.capture-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(12,25,41,0.9));
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--ease);
}
.capture-card:hover .capture-overlay { opacity: 1; transform: translateY(0); }

@media (max-width: 600px) {
    .captures-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .capture-card { height: 200px; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); }
.lb-body { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
    position: absolute;
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.lb-close { top: -18px; right: -18px; }
.lb-prev { left: -52px; top: 50%; transform: translateY(-50%); }
.lb-next { right: -52px; top: 50%; transform: translateY(-50%); }
.lb-count { text-align: center; margin-top: 10px; color: var(--text-dim); font-size: 0.82rem; }

@media (max-width: 768px) {
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
    .lb-close { top: 8px; right: 8px; }
}

/* ============================================
   PLAYER TRANSMISSIONS
   ============================================ */
.players-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(17,34,56,0.35), transparent);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: border-color var(--ease);
}
.player-card:hover { border-color: var(--magenta); }

.player-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: var(--bg);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.player-name { display: block; font-weight: 600; font-size: 0.9rem; }
.player-loc { display: block; font-size: 0.75rem; color: var(--text-dim); }
.player-rating { margin-left: auto; color: var(--cyan); font-size: 0.85rem; letter-spacing: 1px; }

.player-msg { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; font-style: italic; }

@media (max-width: 768px) { .players-grid { grid-template-columns: 1fr; } }

/* ============================================
   FAQ
   ============================================ */
.faq-section { padding: 100px 0; }

.faq-list { max-width: 760px; margin-top: 40px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    text-align: left;
    transition: color var(--ease);
}
.faq-q:hover { color: var(--cyan); }

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 14px;
    color: var(--cyan);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

.faq-a p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; }
.faq-a a { color: var(--cyan); text-decoration: underline; }

/* ============================================
   ACCESS / SIGNUP
   ============================================ */
.access-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(17,34,56,0.4), transparent);
}

.access-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.access-info p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.7; }

.access-perks { list-style: none; margin-top: 24px; }
.access-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 12px;
}
.perk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    flex-shrink: 0;
}

.access-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 32px;
}
.access-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.fg { margin-bottom: 18px; }
.fg label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.opt { color: var(--text-dim); font-weight: 400; }

.fg input[type="text"],
.fg input[type="email"],
.fg input[type="tel"] {
    width: 100%;
    padding: 11px 14px;
    background: rgba(12, 25, 41, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: border-color var(--ease);
}
.fg input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
}
.fg input::placeholder { color: var(--text-dim); opacity: 0.4; }

.fg-check { display: flex; flex-direction: column; }
.fg-check label {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}
.fg-check input[type="checkbox"] { accent-color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.fg-check a { color: var(--cyan); text-decoration: underline; }

.fg-err { display: block; font-size: 0.78rem; color: var(--magenta); margin-top: 4px; min-height: 1em; }

.form-note { font-size: 0.78rem; color: var(--text-dim); margin-top: 14px; text-align: center; }
.form-note a { color: var(--cyan); }

.form-ok {
    text-align: center;
    padding: 32px;
}
.form-ok h3 { font-family: var(--font-heading); color: var(--cyan); margin-bottom: 10px; }
.form-ok p { color: var(--text-dim); }

@media (max-width: 768px) {
    .access-wrapper { grid-template-columns: 1fr; }
}

/* ============================================
   SECURITY
   ============================================ */
.security-section { padding: 80px 0; }

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.security-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}
.security-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--cyan);
    margin-bottom: 8px;
}
.security-card p { font-size: 0.85rem; color: var(--text-dim); line-height: 1.7; }
.security-card a { color: var(--cyan); text-decoration: underline; }

@media (max-width: 900px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 56px 0 28px;
    border-top: 1px solid var(--border);
    background: rgba(12, 25, 41, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-logo {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 10px; line-height: 1.6; }
.footer-addr { font-size: 0.8rem; color: var(--text-dim); }

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--cyan);
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 7px; }
.footer-col a { font-size: 0.85rem; color: var(--text-dim); text-decoration: none; }
.footer-col a:hover { color: var(--cyan); }

.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 4px; }
.footer-disc { font-size: 0.72rem; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================
   REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page { padding: 130px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--cyan);
    margin-bottom: 8px;
}
.legal-page .legal-date { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 36px; }
.legal-page h2 { font-family: var(--font-heading); font-size: 1.25rem; margin-top: 32px; margin-bottom: 10px; }
.legal-page h3 { font-size: 1rem; margin-top: 20px; margin-bottom: 6px; }
.legal-page p { color: var(--text-dim); margin-bottom: 10px; line-height: 1.7; }
.legal-page ul, .legal-page ol { color: var(--text-dim); margin-bottom: 10px; padding-left: 24px; line-height: 1.7; }
.legal-page a { color: var(--cyan); text-decoration: underline; }
