/* ── LEGAL PAGE LAYOUT ─────────────────────────────────── */
.legal-page {
    display: flex;
    justify-content: center;
    padding: 40px 20px 60px;
}

.legal-card {
    width: 100%;
    max-width: 720px;
    background: rgba(14, 14, 14, 0.92);
    border: 1px solid rgba(255, 191, 0, 0.18);
    border-radius: 16px;
    padding: 44px 42px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
}

/* ── HEADER ────────────────────────────────────────────── */
.legal-heading {
    font-family: 'DragonSlayer', sans-serif;
    font-size: 1.8rem;
    color: #ffbf00;
    margin: 0;
    letter-spacing: 0.06em;
}

.legal-effective {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: #5a5248;
    margin: -18px 0 0;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.legal-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-section-title {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: #ffbf00;
    text-transform: uppercase;
    margin: 0;
}

.legal-text {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #a8a09a;
    letter-spacing: 0.03em;
    margin: 0;
}

.legal-text a {
    color: rgba(255, 191, 0, 0.6);
    text-decoration: none;
    transition: color 0.18s ease;
}

.legal-text a:hover {
    color: #ffbf00;
}

.legal-list {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.78rem;
    line-height: 1.7;
    color: #a8a09a;
    letter-spacing: 0.03em;
    margin: 4px 0 0;
    padding-left: 22px;
}

.legal-list li {
    margin-bottom: 4px;
}

/* ── CONTACT BLOCK ─────────────────────────────────────── */
.legal-contact {
    font-family: 'HwyGothic', sans-serif;
    font-size: 0.75rem;
    color: #7a7068;
    letter-spacing: 0.04em;
    border-top: 1px solid rgba(255, 191, 0, 0.08);
    padding-top: 20px;
    margin: 0;
    line-height: 1.7;
}

.legal-contact a {
    color: rgba(255, 191, 0, 0.6);
    text-decoration: none;
    transition: color 0.18s ease;
}

.legal-contact a:hover {
    color: #ffbf00;
}

/* ── MOBILE ────────────────────────────────────────────── */
@media only screen and ((max-width: 767px) or (hover: none)) {
    .legal-card {
        padding: 28px 20px;
        gap: 22px;
    }

    .legal-heading {
        font-size: 1.4rem;
    }
}
