/* style/resources-dr88-games.css */

.page-resources-dr88-games {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds, high contrast */
    background-color: #f9f9f9;
}

.page-resources-dr88-games__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-dr88-games__hero {
    background: linear-gradient(135deg, #0A2463, #3A5A9B); /* Dark blue to a slightly lighter blue variant */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-dr88-games__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern]'); /* Abstract background pattern */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-dr88-games__hero > .page-resources-dr88-games__container {
    position: relative;
    z-index: 1;
}

.page-resources-dr88-games__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title, good contrast on dark blue */
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-dr88-games__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light gray for subtitle, good contrast */
}

.page-resources-dr88-games__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-resources-dr88-games__cta-group--bottom {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-resources-dr88-games__cta-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.2s ease;
    min-width: 180px;
    text-align: center;
    cursor: pointer;
}

.page-resources-dr88-games__cta-button:first-of-type {
    background-color: #FFD700; /* Gold primary button */
    color: #0A2463; /* Dark blue text on gold, high contrast */
    border: 2px solid #FFD700;
}

.page-resources-dr88-games__cta-button:first-of-type:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-dr88-games__cta-button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary on dark blue */
    border: 2px solid #FFD700;
}

.page-resources-dr88-games__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463; /* Dark blue text on gold */
    transform: translateY(-2px);
}

.page-resources-dr88-games__content-article {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-resources-dr88-games__article-body {
    max-width: 800px; /* Fluid layout, controlled width */
    margin: 0 auto;
    font-size: 1.1em; /* 16px-18px equivalent */
    color: #333333;
}

.page-resources-dr88-games__article-body p {
    margin-bottom: 1.5em;
    line-height: 1.7;
}

.page-resources-dr88-games__heading-2 {
    font-size: 2em;
    color: #0A2463; /* Dark blue heading on light background */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700; /* Gold accent line */
    padding-bottom: 10px;
    font-weight: bold;
}

.page-resources-dr88-games__heading-3 {
    font-size: 1.5em;
    color: #0A2463; /* Dark blue heading on light background */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources-dr88-games__article-body ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
}

.page-resources-dr88-games__article-body ol {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 1.5em;
}

.page-resources-dr88-games__article-body li {
    margin-bottom: 0.8em;
}

.page-resources-dr88-games__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-dr88-games__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-dr88-games__cta-inline {
    text-align: center;
    margin: 40px 0;
}

.page-resources-dr88-games__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
    min-width: unset;
}

.page-resources-dr88-games__return-link {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
}

.page-resources-dr88-games__return-link a {
    color: #0A2463; /* Dark blue link on light background */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-dr88-games__return-link a:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-dr88-games__title {
        font-size: 2em;
    }

    .page-resources-dr88-games__subtitle {
        font-size: 1em;
    }

    .page-resources-dr88-games__heading-2 {
        font-size: 1.6em;
    }

    .page-resources-dr88-games__heading-3 {
        font-size: 1.3em;
    }

    .page-resources-dr88-games__article-body {
        font-size: 1em;
        padding: 0 15px;
    }

    .page-resources-dr88-games__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-dr88-games__cta-button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-resources-dr88-games__hero {
        padding: 50px 0;
    }

    .page-resources-dr88-games__title {
        font-size: 1.8em;
    }

    .page-resources-dr88-games__content-article {
        padding: 30px 0;
    }
}