/* Legal pages styling */
.legal-page {
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(36px, 5vw, 56px);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--white-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: var(--border);
}

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
    color: var(--white);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--orange);
}

.legal-content p {
    font-size: 15px;
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 12px 0 20px 24px;
    color: var(--white-dim);
    font-size: 15px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

.legal-back {
    margin-top: 48px;
    display: inline-flex;
}

/* Highlighted contact/email block inside legal pages — e.g. DMCA mailbox. */
.legal-contact-block {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 106, 0, 0.22);
    border-left: 3px solid var(--orange, #ff6a00);
    border-radius: 6px;
    padding: 18px 22px !important;
    margin: 8px 0 24px !important;
    color: var(--white) !important;
    font-size: 15px !important;
    line-height: 1.9 !important;
}
.legal-contact-block a {
    color: var(--orange, #ff6a00);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 106, 0, 0.4);
}
.legal-contact-block a:hover {
    color: #ff8a2e;
    border-bottom-color: #ff8a2e;
}
