/* Public, read-only promoter legal pages: the Data Sharing & Joint Controller
   Agreement and the Service Agreement. Both wrap their content in
   .dpa-public-page, so every selector is scoped under that container and shared.
   The two pages render the same chrome and card; the DPA additionally uses h4
   and code elements, so those rules live here too and simply match nothing on
   the service-agreement page. font-family is set explicitly because the global
   body font is Orbitron and would otherwise inherit in. The print block resets
   the neon palette to ink-on-white for a clean hard copy. */

.dpa-public-page {
    max-width: 880px;
    margin: 0 auto;
    padding: 110px 1rem 4rem;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255, 255, 255, 0.92);
}

.dpa-public-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dpa-public-title {
    font-size: clamp(1.85rem, 4.2vw, 2.6rem);
    font-weight: 700;
    margin: 0 0 0.6rem 0;
    color: #ff00c3;
    text-shadow: 0 0 18px rgba(255, 0, 195, 0.35);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.dpa-public-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.dpa-public-card {
    background: rgba(20, 8, 40, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 2rem 2.25rem;
    backdrop-filter: blur(8px);
}

.dpa-public-card h3 {
    font-size: 1.2rem;
    color: #ff00c3;
    margin: 1.75rem 0 0.6rem;
    font-weight: 700;
}
.dpa-public-card h3:first-of-type {
    margin-top: 0.5rem;
}
.dpa-public-card h4 {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.1rem 0 0.45rem;
    font-weight: 600;
}
.dpa-public-card p,
.dpa-public-card li {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}
.dpa-public-card p {
    margin: 0 0 0.75rem;
}
.dpa-public-card ul {
    padding-left: 1.4rem;
    margin: 0 0 0.75rem;
}
.dpa-public-card li {
    margin-bottom: 0.35rem;
}
.dpa-public-card strong {
    color: rgba(255, 255, 255, 0.97);
}
.dpa-public-card em {
    color: rgba(255, 255, 255, 0.7);
}
.dpa-public-card a {
    color: #ff00c3;
    text-decoration: underline;
}
.dpa-public-card a:hover {
    color: #fff;
}
.dpa-public-card code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.12rem 0.45rem;
    border-radius: 4px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
}
.dpa-public-card hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    margin: 1.75rem 0;
}

@media (max-width: 600px) {
    .dpa-public-page {
        padding: 90px 0.75rem 3rem;
    }
    .dpa-public-card {
        padding: 1.25rem 1.1rem;
        border-radius: 10px;
    }
    .dpa-public-card h3 {
        font-size: 1.1rem;
    }
}

@media print {
    body, html {
        background: #fff !important;
        color: #000 !important;
    }
    nav, header, footer {
        display: none !important;
    }
    .dpa-public-page {
        padding: 0;
        max-width: none;
        color: #000 !important;
    }
    .dpa-public-title {
        color: #000 !important;
        text-shadow: none !important;
    }
    .dpa-public-subtitle {
        color: #555 !important;
    }
    .dpa-public-card {
        background: #fff !important;
        border: 1px solid #ddd !important;
        color: #000 !important;
        padding: 0 !important;
    }
    .dpa-public-card h3,
    .dpa-public-card h4,
    .dpa-public-card p,
    .dpa-public-card li,
    .dpa-public-card strong,
    .dpa-public-card em {
        color: #000 !important;
    }
    .dpa-public-card a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}
