/* style/responsible-gambling.css */
.page-responsible-gambling {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f8ff; /* Light text for dark background */
    background-color: #003366; /* Main dark blue background */
}

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

.page-responsible-gambling__hero {
    background: linear-gradient(135deg, #003366, #004d99);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__subtitle {
    font-size: 1.3em;
    color: #e0eaf6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling__intro-text {
    font-size: 1.1em;
    color: #c0d9ed;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling__hero-image-wrapper {
    margin: 40px auto;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.page-responsible-gambling__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-responsible-gambling__sub-section-title {
    font-size: 1.8em;
    color: #e0eaf6;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-responsible-gambling__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #e0eaf6;
}

.page-responsible-gambling__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0eaf6;
}

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

.page-responsible-gambling__content-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-responsible-gambling__content-row--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling__text-content {
    flex: 1;
}

.page-responsible-gambling__image-wrapper {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__image-wrapper--center {
    text-align: center;
    flex: none;
    margin: 30px auto;
    max-width: 600px;
}

.page-responsible-gambling__image {
    width: 100%;
    height: auto;
    display: block;
}

.page-responsible-gambling__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

.page-responsible-gambling__button {
    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;
    margin: 0 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Dark blue text */
}

.page-responsible-gambling__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-responsible-gambling__button--secondary {
    background-color: #004d99; /* Lighter blue */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
}

.page-responsible-gambling__button--secondary:hover {
    background-color: #0066cc;
    transform: translateY(-3px);
}

.page-responsible-gambling__disclaimer {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #c0d9ed;
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gambling__title {
        font-size: 2.8em;
    }

    .page-responsible-gambling__subtitle {
        font-size: 1.2em;
    }

    .page-responsible-gambling__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling__sub-section-title {
        font-size: 1.6em;
    }

    .page-responsible-gambling__content-row {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling__content-row--reverse {
        flex-direction: column;
    }

    .page-responsible-gambling__image-wrapper {
        margin-top: 20px;
    }

    .page-responsible-gambling__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-responsible-gambling__button {
        margin: 0;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling__hero {
        padding: 60px 0 30px;
    }

    .page-responsible-gambling__title {
        font-size: 2.2em;
    }

    .page-responsible-gambling__subtitle {
        font-size: 1.1em;
    }

    .page-responsible-gambling__section {
        padding: 40px 0;
    }

    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling__sub-section-title {
        font-size: 1.4em;
    }

    .page-responsible-gambling__list,
    .page-responsible-gambling__text-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling__title {
        font-size: 1.8em;
    }

    .page-responsible-gambling__subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling__section-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling__sub-section-title {
        font-size: 1.2em;
    }

    .page-responsible-gambling__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}