/* style/responsible-gambling-self-exclusion.css */
.page-responsible-gambling-self-exclusion {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for readability on dark backgrounds */
    background-color: #1A1A1A; /* Dark background */
}

.page-responsible-gambling-self-exclusion__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-self-exclusion__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Dark red to gold gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-self-exclusion__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-responsible-gambling-self-exclusion__hero-title,
.page-responsible-gambling-self-exclusion__hero-description {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
}

.page-responsible-gambling-self-exclusion__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFFFFF; /* Ensure high contrast */
}

.page-responsible-gambling-self-exclusion__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #F5F5F5; /* Slightly lighter for contrast */
}

.page-responsible-gambling-self-exclusion__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-responsible-gambling-self-exclusion__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-responsible-gambling-self-exclusion__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling-self-exclusion__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-self-exclusion__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-responsible-gambling-self-exclusion p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0; /* Light grey for body text */
}

.page-responsible-gambling-self-exclusion__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-responsible-gambling-self-exclusion__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gambling-self-exclusion__list li strong {
    color: #FFD700;
}

.page-responsible-gambling-self-exclusion__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-responsible-gambling-self-exclusion__link:hover {
    color: #FFEF80; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-responsible-gambling-self-exclusion__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-responsible-gambling-self-exclusion__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark red text */
    margin-top: 20px;
}

.page-responsible-gambling-self-exclusion__btn--primary:hover {
    background-color: #FFEF80;
    transform: translateY(-3px);
}

.page-responsible-gambling-self-exclusion__btn--secondary {
    background-color: #8B0000; /* Dark red */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin: 10px;
}

.page-responsible-gambling-self-exclusion__btn--secondary:hover {
    background-color: #A00000;
    transform: translateY(-3px);
}

.page-responsible-gambling-self-exclusion__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-responsible-gambling-self-exclusion__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-self-exclusion__hero {
        padding: 80px 0;
    }

    .page-responsible-gambling-self-exclusion__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-self-exclusion__hero-description,
    .page-responsible-gambling-self-exclusion p,
    .page-responsible-gambling-self-exclusion__list li {
        font-size: 1em;
    }

    .page-responsible-gambling-self-exclusion__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-self-exclusion__sub-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-self-exclusion__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-responsible-gambling-self-exclusion__cta-buttons {
        flex-direction: column;
    }

    .page-responsible-gambling-self-exclusion__btn--secondary {
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-self-exclusion__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-self-exclusion__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-self-exclusion__btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}