/* style/responsible-gambling-resources-for-help.css */

.page-responsible-gambling-resources-for-help {
    font-family: 'Arial', sans-serif;
    color: #F0F0F0; /* Light gray for general text on dark background */
    line-height: 1.6;
    background-color: #0A0A0A; /* Main background color */
}

.page-responsible-gambling-resources-for-help__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-resources-for-help__hero-section {
    background: linear-gradient(135deg, #0A0A0A, #1a1a1a); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-resources-for-help__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[IMAGE:background_pattern]'); /* Subtle pattern */
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.page-responsible-gambling-resources-for-help__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling-resources-for-help__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling-resources-for-help__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.page-responsible-gambling-resources-for-help__content-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-responsible-gambling-resources-for-help__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 15px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling-resources-for-help__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-responsible-gambling-resources-for-help__paragraph {
    font-size: 1.1em;
    color: #F0F0F0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-responsible-gambling-resources-for-help__list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 30px;
}

.page-responsible-gambling-resources-for-help__list-item {
    color: #E0E0E0;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-responsible-gambling-resources-for-help__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-responsible-gambling-resources-for-help__button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for buttons */
    color: #0A0A0A; /* Dark text on bright button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.page-responsible-gambling-resources-for-help__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-responsible-gambling-resources-for-help__button--secondary {
    background-color: #333333;
    color: #FFD700;
    border: 1px solid #FFD700;
    margin-left: 20px;
}

.page-responsible-gambling-resources-for-help__button--secondary:hover {
    background-color: #444444;
    color: #FFD700;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-resources-for-help__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling-resources-for-help__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling-resources-for-help__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling-resources-for-help__sub-section-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-resources-for-help__paragraph,
    .page-responsible-gambling-resources-for-help__list-item {
        font-size: 0.95em;
    }

    .page-responsible-gambling-resources-for-help__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-resources-for-help__button--secondary {
        margin-top: 15px;
        margin-left: 0;
        display: block;
        width: fit-content;
        margin-right: auto;
    }
}

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

    .page-responsible-gambling-resources-for-help__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-resources-for-help__sub-section-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling-resources-for-help__list {
        padding-left: 20px;
    }
}