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

:root {
    --go99-primary-color: #0A2463;
    --go99-secondary-color: #E3B505;
    --go99-text-dark: #333333;
    --go99-text-light: #ffffff;
    --go99-background-light: #f9f9f9;
    --go99-background-dark: #1a1a1a;
    --go99-border-color: #e0e0e0;
}

.page-resources-go99-responsible-gaming__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-go99-responsible-gaming__hero-section {
    background: linear-gradient(135deg, var(--go99-primary-color), #2A4A83);
    color: var(--go99-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-resources-go99-responsible-gaming__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--go99-text-light);
    line-height: 1.2;
}

.page-resources-go99-responsible-gaming__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-resources-go99-responsible-gaming__btn-primary {
    display: inline-block;
    background-color: var(--go99-secondary-color);
    color: var(--go99-primary-color);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-resources-go99-responsible-gaming__btn-primary:hover {
    background-color: #FFC91A;
    transform: translateY(-2px);
}

.page-resources-go99-responsible-gaming__content-section {
    padding: 60px 0;
    background-color: var(--go99-background-light);
    color: var(--go99-text-dark);
}

.page-resources-go99-responsible-gaming__article-content {
    font-size: 1.1em;
    line-height: 1.7;
}

.page-resources-go99-responsible-gaming__article-content p {
    margin-bottom: 1em;
    color: var(--go99-text-dark);
}

.page-resources-go99-responsible-gaming__section-title {
    font-size: 2.2em;
    color: var(--go99-primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--go99-secondary-color);
    padding-bottom: 10px;
}

.page-resources-go99-responsible-gaming__sub-section-title {
    font-size: 1.7em;
    color: var(--go99-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-go99-responsible-gaming__list,
.page-resources-go99-responsible-gaming__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    color: var(--go99-text-dark);
}

.page-resources-go99-responsible-gaming__ordered-list {
    list-style-type: decimal;
}

.page-resources-go99-responsible-gaming__list li,
.page-resources-go99-responsible-gaming__ordered-list li {
    margin-bottom: 0.8em;
}

.page-resources-go99-responsible-gaming__image-full-width {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-go99-responsible-gaming__image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-go99-responsible-gaming__conclusion {
    background-color: #e6f0ff; /* Lighter shade of primary for background */
    border-left: 5px solid var(--go99-primary-color);
    padding: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 5px;
}

.page-resources-go99-responsible-gaming__conclusion p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--go99-primary-color);
}

.page-resources-go99-responsible-gaming__return-link {
    text-align: center;
    margin-top: 50px;
}

.page-resources-go99-responsible-gaming__btn-secondary {
    display: inline-block;
    background-color: var(--go99-primary-color);
    color: var(--go99-text-light);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid var(--go99-primary-color);
}

.page-resources-go99-responsible-gaming__btn-secondary:hover {
    background-color: #071C4B;
    transform: translateY(-2px);
}

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

    .page-resources-go99-responsible-gaming__section-title {
        font-size: 1.8em;
    }

    .page-resources-go99-responsible-gaming__sub-section-title {
        font-size: 1.4em;
    }

    .page-resources-go99-responsible-gaming__article-content {
        font-size: 1em;
    }

    .page-resources-go99-responsible-gaming__hero-section {
        padding: 60px 0;
    }

    .page-resources-go99-responsible-gaming__content-section {
        padding: 40px 0;
    }
}

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

    .page-resources-go99-responsible-gaming__hero-description {
        font-size: 1em;
    }

    .page-resources-go99-responsible-gaming__btn-primary,
    .page-resources-go99-responsible-gaming__btn-secondary {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-go99-responsible-gaming__section-title {
        font-size: 1.6em;
    }

    .page-resources-go99-responsible-gaming__sub-section-title {
        font-size: 1.2em;
    }

    .page-resources-go99-responsible-gaming__list,
    .page-resources-go99-responsible-gaming__ordered-list {
        margin-left: 20px;
    }
}