/* style/responsible-gaming-self-exclusion.css */

/* Variables for consistency */
:root {
    --page-bg-color: #f8f8f8; /* Light background for readability */
    --primary-color: #0A192F; /* Dark blue */
    --accent-color: #FFD700; /* Gold */
    --text-color-dark: #333333; /* Dark gray for main text */
    --text-color-light: #ffffff; /* White for dark backgrounds */
    --text-color-highlight: #0A192F; /* Primary color for highlights */
    --link-color: #FFD700; /* Gold for links */
    --link-hover-color: #e6c200; /* Slightly darker gold on hover */
    --border-color: #e0e0e0; /* Light gray border */
}

.page-responsible-gaming-self-exclusion {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--page-bg-color);
    padding-bottom: 60px; /* Space for footer */
}

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

/* Hero Section */
.page-responsible-gaming-self-exclusion__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a60 100%);
    color: var(--text-color-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gaming-self-exclusion__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-responsible-gaming-self-exclusion__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-responsible-gaming-self-exclusion__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
}

.page-responsible-gaming-self-exclusion__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-responsible-gaming-self-exclusion__subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

/* General Sections */
.page-responsible-gaming-self-exclusion__section {
    padding: 60px 0;
}

.page-responsible-gaming-self-exclusion__section:nth-of-type(even) {
    background-color: #f0f0f0; /* Slightly different background for alternating sections */
}

.page-responsible-gaming-self-exclusion__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gaming-self-exclusion__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Text and Paragraphs */
.page-responsible-gaming-self-exclusion p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: var(--text-color-dark);
}

.page-responsible-gaming-self-exclusion strong.text-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-responsible-gaming-self-exclusion p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-responsible-gaming-self-exclusion p a:hover {
    color: var(--link-hover-color);
}

/* Lists */
.page-responsible-gaming-self-exclusion__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5em;
}

.page-responsible-gaming-self-exclusion__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gaming-self-exclusion__list li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-responsible-gaming-self-exclusion__list--bullet {
    list-style: disc;
    padding-left: 20px;
}

.page-responsible-gaming-self-exclusion__list--bullet li::before {
    content: none;
}

/* Images */
.page-responsible-gaming-self-exclusion__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.page-responsible-gaming-self-exclusion__button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-self-exclusion__button:hover {
    background-color: var(--link-hover-color);
    transform: translateY(-2px);
}

.page-responsible-gaming-self-exclusion__button--secondary {
    background-color: var(--primary-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    margin-top: 20px;
}

.page-responsible-gaming-self-exclusion__button--secondary:hover {
    background-color: #0d284a; /* Slightly lighter primary for hover */
    color: var(--link-hover-color);
    border-color: var(--link-hover-color);
}

/* FAQ Section */
.page-responsible-gaming-self-exclusion__faq-item {
    background-color: var(--text-color-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-responsible-gaming-self-exclusion__faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-responsible-gaming-self-exclusion__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

/* For an expandable FAQ, JS would toggle an 'active' class */
.page-responsible-gaming-self-exclusion__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-responsible-gaming-self-exclusion__faq-answer {
    font-size: 1.1em;
    color: var(--text-color-dark);
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-responsible-gaming-self-exclusion__faq-question.active + .page-responsible-gaming-self-exclusion__faq-answer {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gaming-self-exclusion__title {
        font-size: 2.5em;
    }

    .page-responsible-gaming-self-exclusion__subtitle {
        font-size: 1.2em;
    }

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

    .page-responsible-gaming-self-exclusion p,
    .page-responsible-gaming-self-exclusion__list li,
    .page-responsible-gaming-self-exclusion__faq-item p {
        font-size: 1em;
    }

    .page-responsible-gaming-self-exclusion__hero {
        padding: 60px 20px;
    }

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

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

    .page-responsible-gaming-self-exclusion__subtitle {
        font-size: 1em;
    }

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

    .page-responsible-gaming-self-exclusion__hero {
        padding: 40px 15px;
    }
}