/* style/responsible-gaming-support-resources.css */

/* General Page Styling */
.page-responsible-gaming-support-resources {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-responsible-gaming-support-resources__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%); /* Gold to Dark Blue */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gaming-support-resources__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-responsible-gaming-support-resources__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 0;
}

.page-responsible-gaming-support-resources__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-responsible-gaming-support-resources__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.page-responsible-gaming-support-resources__hero-image-wrapper {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.page-responsible-gaming-support-resources__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
.page-responsible-gaming-support-resources__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-responsible-gaming-support-resources__section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-responsible-gaming-support-resources__section-title {
    font-size: 2.2em;
    color: #000080; /* Dark Blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-responsible-gaming-support-resources__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.page-responsible-gaming-support-resources__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-responsible-gaming-support-resources__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #333333;
}

.page-responsible-gaming-support-resources__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-responsible-gaming-support-resources__list li strong {
    color: #000080;
}

/* Image Styling within sections */
.page-responsible-gaming-support-resources__image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-responsible-gaming-support-resources__image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Button Styling */
.page-responsible-gaming-support-resources__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: 2px solid #FFD700;
    margin-top: 30px;
}

.page-responsible-gaming-support-resources__btn:hover {
    background-color: #000080; /* Dark Blue */
    color: #FFD700; /* Gold */
    transform: translateY(-3px);
    border-color: #000080;
}

.page-responsible-gaming-support-resources__btn--primary {
    background-color: #FFD700;
    color: #000080;
}

.page-responsible-gaming-support-resources__btn--primary:hover {
    background-color: #000080;
    color: #FFD700;
}

.page-responsible-gaming-support-resources__note {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gaming-support-resources__title {
        font-size: 2em;
    }
    .page-responsible-gaming-support-resources__subtitle {
        font-size: 1em;
    }
    .page-responsible-gaming-support-resources__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gaming-support-resources__text {
        font-size: 1em;
    }
    .page-responsible-gaming-support-resources__list {
        margin-left: 0;
    }
    .page-responsible-gaming-support-resources__image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming-support-resources__hero {
        padding: 50px 0;
    }
    .page-responsible-gaming-support-resources__title {
        font-size: 1.6em;
    }
    .page-responsible-gaming-support-resources__subtitle {
        font-size: 0.9em;
    }
    .page-responsible-gaming-support-resources__section {
        padding: 40px 0;
    }
    .page-responsible-gaming-support-resources__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gaming-support-resources__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}