.page-resources-online-gambling-tips {
    color: #333333; /* Default text color for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

@media (max-width: 768px) {
    .page-resources-online-gambling-tips {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header if needed, but var should handle it */
    }
}

/* Hero Section */
.page-resources-online-gambling-tips__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero section to contrast with white text */
    color: #FFFFFF;
    padding: 0;
}

.page-resources-online-gambling-tips__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim the image for text readability */
}

.page-resources-online-gambling-tips__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.page-resources-online-gambling-tips__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-online-gambling-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-resources-online-gambling-tips__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-online-gambling-tips__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    font-size: 1em;
}

.page-resources-online-gambling-tips__button--register {
    background-color: #000000; /* Register button background: Main color */
    color: #FFFFFF; /* Register button text: Auxiliary color */
    border: 2px solid #FFFFFF;
}

.page-resources-online-gambling-tips__button--register:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.page-resources-online-gambling-tips__button--login {
    background-color: #FCBC45; /* Login button background: Custom color */
    color: #000000; /* Login button text: Main color for contrast */
    border: 2px solid #FCBC45;
}

.page-resources-online-gambling-tips__button--login:hover {
    background-color: #E0A83B;
    transform: translateY(-2px);
}

/* Content Area */
.page-resources-online-gambling-tips__content-area {
    max-width: 800px; /* Content width for readability */
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF; /* White background for article content */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.page-resources-online-gambling-tips__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-resources-online-gambling-tips__back-link:hover {
    color: #FCBC45;
}

.page-resources-online-gambling-tips__back-link--bottom {
    display: block;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-resources-online-gambling-tips__article-heading {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-resources-online-gambling-tips__article-subheading {
    font-size: 1.5em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-online-gambling-tips__article p {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #333333;
}

.page-resources-online-gambling-tips__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: #333333;
}

.page-resources-online-gambling-tips__list li {
    margin-bottom: 0.5em;
    font-size: 1.1em;
}

.page-resources-online-gambling-tips__article-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
}

/* Ensure all images are responsive and not too small on mobile */
@media (max-width: 768px) {
    .page-resources-online-gambling-tips__hero-title {
        font-size: 2em;
    }
    .page-resources-online-gambling-tips__hero-description {
        font-size: 1em;
    }
    .page-resources-online-gambling-tips__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-online-gambling-tips__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-resources-online-gambling-tips__content-area {
        margin: 20px auto;
        padding: 15px;
    }
    .page-resources-online-gambling-tips__article-heading {
        font-size: 1.8em;
    }
    .page-resources-online-gambling-tips__article-subheading {
        font-size: 1.3em;
    }
    .page-resources-online-gambling-tips__article p,
    .page-resources-online-gambling-tips__list li {
        font-size: 1em;
    }
    .page-resources-online-gambling-tips__article-image {
        max-width: 100%;
        height: auto;
    }
    /* Enforce min size for images in content area, should be handled by default style already, but reinforce */
    .page-resources-online-gambling-tips__article-image[width],
    .page-resources-online-gambling-tips__article-image[height] {
        min-width: 200px;
        min-height: 200px;
    }
    .page-resources-online-gambling-tips__article-image {
        width: 100%; /* Ensure it doesn't overflow */
        max-width: 100%; /* Ensure it doesn't overflow */
        height: auto;
    }
}

/* Center buttons */
.page-resources-online-gambling-tips__button--center {
    display: block;
    margin: 30px auto;
    width: fit-content;
    max-width: 90%;
}

/* Call to action section at the end */
.page-resources-online-gambling-tips__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px 20px;
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    border-radius: 10px;
}

.page-resources-online-gambling-tips__cta-title {
    font-size: 2em;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.page-resources-online-gambling-tips__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-online-gambling-tips__button--download {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-online-gambling-tips__button--download:hover {
    background-color: #E0A83B;
    transform: translateY(-2px);
}

.page-resources-online-gambling-tips__button--responsible-gambling,
.page-resources-online-gambling-tips__button--vip,
.page-resources-online-gambling-tips__button--support {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-resources-online-gambling-tips__button--responsible-gambling:hover,
.page-resources-online-gambling-tips__button--vip:hover,
.page-resources-online-gambling-tips__button--support:hover {
    background-color: #E0A83B;
    transform: translateY(-2px);
}