/* style/responsible-gaming.css */

/* --- General Page Styles (BEM) --- */
.page-responsible-gaming {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #f8f8f8; /* Light background for the page content */
}

.page-responsible-gaming__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-responsible-gaming__section-title {
    font-size: 38px;
    color: #26A9E0; /* Brand color for main titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-responsible-gaming__subsection-title {
    font-size: 24px;
    color: #000000; /* Darker color for subsections */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.page-responsible-gaming__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-responsible-gaming__content-section:nth-of-type(odd) {
    background-color: #f0f8ff; /* Light blue tint for alternating sections */
}

.page-responsible-gaming__dark-bg {
    background-color: #26A9E0; /* Brand primary color for dark sections */
    color: #ffffff; /* White text for dark background */
}

.page-responsible-gaming__dark-bg .page-responsible-gaming__section-title,
.page-responsible-gaming__dark-bg .page-responsible-gaming__subsection-title {
    color: #ffffff; /* Ensure titles are white on dark background */
}

.page-responsible-gaming__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-responsible-gaming__list-item {
    background-color: #ffffff;
    border-left: 5px solid #26A9E0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    color: #333333;
}

.page-responsible-gaming__dark-bg .page-responsible-gaming__list-item {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left-color: #ffffff;
}

.page-responsible-gaming a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: 500;
}

.page-responsible-gaming a:hover {
    text-decoration: underline;
    color: #EA7C07; /* Login color on hover for emphasis */
}

/* --- Banner Section (Hero-like but not homepage specific) --- */
.page-responsible-gaming__banner-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #e0f2f7; /* Light blue background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-responsible-gaming__banner-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Ensure content is above potential background effects */
}

.page-responsible-gaming__banner-image {
    width: 100%;
    margin-bottom: 30px;
    max-width: 100%; /* Ensure image wrapper doesn't overflow */
    overflow: hidden; /* Hide any overflow from image */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-responsible-gaming__banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.page-responsible-gaming__banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background for text */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: -80px; /* Overlap with image for visual appeal */
}

.page-responsible-gaming__main-title {
    font-size: 48px;
    color: #26A9E0;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.page-responsible-gaming__intro-text {
    font-size: 20px;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gaming__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #26A9E0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(38, 169, 224, 0.4);
    border: none;
}

.page-responsible-gaming__cta-button:hover {
    background: #EA7C07; /* Login color on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(234, 124, 7, 0.5);
}

.page-responsible-gaming__cta-button--secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
    box-shadow: none;
}

.page-responsible-gaming__cta-button--secondary:hover {
    background: #f0f8ff;
    color: #EA7C07;
    border-color: #EA7C07;
}

/* --- Image Wrappers for content sections --- */
.page-responsible-gaming__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-responsible-gaming__image-wrapper--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
    max-width: 500px; /* Smaller for floating */
}

.page-responsible-gaming__image-wrapper--center {
    text-align: center;
    margin-bottom: 30px;
}

/* Clearfix for floating images */
.page-responsible-gaming__tips-section .page-responsible-gaming__container::after {
    content: "";
    display: table;
    clear: both;
}

/* --- FAQ Section Styles (BEM) --- */
.page-responsible-gaming__faq-section {
    padding: 60px 0;
    background-color: #e0f2f7; /* Light blue background */
    border-radius: 8px;
    margin-top: 20px;
}

.page-responsible-gaming__faq-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #555555;
}

.page-responsible-gaming__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}