:root {
    --primary-color: #003366;
    --accent-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
}

.page-resources-gamezone-gcash-strategy {
    color: var(--text-color-dark);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-gamezone-gcash-strategy__hero-section {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-resources-gamezone-gcash-strategy__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-resources-gamezone-gcash-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--accent-color);
    line-height: 1.2;
}

.page-resources-gamezone-gcash-strategy__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-gamezone-gcash-strategy__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-gamezone-gcash-strategy__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;
    white-space: nowrap;
}

.page-resources-gamezone-gcash-strategy__button--primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.page-resources-gamezone-gcash-strategy__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-gamezone-gcash-strategy__button--secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.page-resources-gamezone-gcash-strategy__button--secondary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.page-resources-gamezone-gcash-strategy__hero-image {
    margin-top: 40px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-gamezone-gcash-strategy__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

.page-resources-gamezone-gcash-strategy__content-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: -60px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 2;
}

.page-resources-gamezone-gcash-strategy__back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-gamezone-gcash-strategy__back-link:hover {
    color: var(--accent-color);
}

.page-resources-gamezone-gcash-strategy__back-link--bottom {
    margin-top: 40px;
    text-align: center;
    width: 100%;
}

.page-resources-gamezone-gcash-strategy__article-container {
    line-height: 1.8;
    font-size: 1.1em;
}

.page-resources-gamezone-gcash-strategy__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 10px;
}

.page-resources-gamezone-gcash-strategy__sub-section-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-resources-gamezone-gcash-strategy__paragraph {
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.page-resources-gamezone-gcash-strategy__paragraph a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-resources-gamezone-gcash-strategy__paragraph a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-resources-gamezone-gcash-strategy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.page-resources-gamezone-gcash-strategy__list-item {
    margin-bottom: 10px;
    padding-left: 5px;
}

.page-resources-gamezone-gcash-strategy__list-item strong {
    color: var(--primary-color);
}

.page-resources-gamezone-gcash-strategy__image-wrapper {
    margin: 30px 0;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-gamezone-gcash-strategy__image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

.page-resources-gamezone-gcash-strategy__call-to-action {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-resources-gamezone-gcash-strategy__hero-title {
        font-size: 2.8em;
    }
    .page-resources-gamezone-gcash-strategy__hero-description {
        font-size: 1.2em;
    }
    .page-resources-gamezone-gcash-strategy__section-title {
        font-size: 2em;
    }
    .page-resources-gamezone-gcash-strategy__sub-section-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-gamezone-gcash-strategy__hero-section {
        padding: 60px 15px;
    }
    .page-resources-gamezone-gcash-strategy__hero-title {
        font-size: 2.4em;
    }
    .page-resources-gamezone-gcash-strategy__hero-description {
        font-size: 1.1em;
    }
    .page-resources-gamezone-gcash-strategy__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-gamezone-gcash-strategy__button {
        width: 80%;
        max-width: 300px;
    }
    .page-resources-gamezone-gcash-strategy__content-area {
        padding: 30px 15px;
        margin-top: -40px;
    }
    .page-resources-gamezone-gcash-strategy__section-title {
        font-size: 1.8em;
    }
    .page-resources-gamezone-gcash-strategy__sub-section-title {
        font-size: 1.4em;
    }
    .page-resources-gamezone-gcash-strategy__paragraph, .page-resources-gamezone-gcash-strategy__list-item {
        font-size: 1em;
    }
    /* Mobile image constraint */
    .page-resources-gamezone-gcash-strategy__image-wrapper img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure image is not too small */
        min-height: 200px;
    }
    .page-resources-gamezone-gcash-strategy__article-container {
      overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

@media (max-width: 480px) {
    .page-resources-gamezone-gcash-strategy__hero-title {
        font-size: 2em;
    }
    .page-resources-gamezone-gcash-strategy__hero-description {
        font-size: 1em;
    }
    .page-resources-gamezone-gcash-strategy__section-title {
        font-size: 1.6em;
    }
    .page-resources-gamezone-gcash-strategy__sub-section-title {
        font-size: 1.2em;
    }
}