/*
    editorial-pages.css — Shared styles for content/legal pages.

    Used by: AboutUs, PrivacyPolicy, TermsOfService, CookiePolicy, Contact,
    FAQ, HowToPlay, Rules.

    These pages all wrap their content in <div class="about-page"> and use the
    helper classes below. Originally the styles lived in AboutUs.razor.css, but
    since Blazor scopes razor.css to a single component, they were not applied
    to the other editorial pages. Moving them here makes the same look and feel
    available everywhere.
*/

.about-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Main Title — top banner of the page */
.about-page .main-title {
    background: linear-gradient(180deg, #8B2020 0%, #6B1818 100%);
    color: #FFFFFF !important;
    font-size: 24px;
    font-weight: bold;
    padding: 12px 20px;
    margin: 0 0 30px 0;
    border-left: 4px solid #B33030;
    text-align: center;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
}

/* Red Title — used for section headers like "Credits & Acknowledgments" */
.about-page .red-title {
    background: linear-gradient(180deg, #8B2020 0%, #6B1818 100%);
    color: #FFFFFF !important;
    font-size: 24px;
    font-weight: bold;
    padding: 12px 20px;
    margin: 0 0 30px 0;
    border-left: 4px solid #B33030;
    text-align: center;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-clip: unset !important;
}

/* Content blocks */
.about-page .content-section,
.about-page .credits-section,
.about-page .company-section {
    margin-bottom: 30px;
}

.about-page .section-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
}

.about-page .subsection-title {
    font-size: 18px;
    color: #FFFFFF;
    font-weight: bold;
    margin: 25px 0 15px 0;
    text-align: center;
}

.about-page .text-content {
    color: #FFFFFF;
    font-size: 11pt;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
}

.about-page .text-content strong {
    color: #FFFFFF;
    font-weight: bold;
}

.about-page .text-content ul,
.about-page ul.text-content {
    color: #FFFFFF;
    margin: 8px 0 16px 24px;
    padding: 0;
}

.about-page .text-content ul li,
.about-page ul.text-content li {
    margin-bottom: 6px;
    line-height: 1.55;
}

/* Email & inline links */
.about-page .email-link {
    color: #FFFFFF;
    text-decoration: none;
}

.about-page .email-link:hover {
    color: #FFD700;
    text-decoration: underline;
}
