:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --dark-bg-color: #1a1a2e; /* From shared.css body background */
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --button-register-login-bg: #C30808;
    --button-register-login-text: #FFFF00;
}

.page-resources-789live-apk-game-strategies {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--light-text-color); /* Default text color for dark body background */
    background-color: var(--dark-bg-color); /* Inherit from body or set for clarity */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

/* Hero Section */
.page-resources-789live-apk-game-strategies__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--dark-bg-color);
    position: relative;
    overflow: hidden;
}

.page-resources-789live-apk-game-strategies__hero-content {
    max-width: 900px;
    z-index: 1;
    margin-bottom: 40px;
}

.page-resources-789live-apk-game-strategies__hero-title {
    font-size: 3.2em;
    color: var(--light-text-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-789live-apk-game-strategies__hero-description {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-resources-789live-apk-game-strategies__hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.page-resources-789live-apk-game-strategies__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-resources-789live-apk-game-strategies__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7); /* Allowed for background images to ensure text readability, not changing original color */
}

/* General Content Area */
.page-resources-789live-apk-game-strategies__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-resources-789live-apk-game-strategies__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-789live-apk-game-strategies__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-789live-apk-game-strategies__subsection-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-resources-789live-apk-game-strategies__paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--light-text-color);
}

.page-resources-789live-apk-game-strategies__paragraph strong {
    color: var(--primary-color);
}

.page-resources-789live-apk-game-strategies__unordered-list,
.page-resources-789live-apk-game-strategies__ordered-list {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--light-text-color);
}

.page-resources-789live-apk-game-strategies__unordered-list li,
.page-resources-789live-apk-game-strategies__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Dark background section */
.page-resources-789live-apk-game-strategies__dark-bg {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.page-resources-789live-apk-game-strategies__dark-bg .page-resources-789live-apk-game-strategies__section-title,
.page-resources-789live-apk-game-strategies__dark-bg .page-resources-789live-apk-game-strategies__subsection-title {
    color: var(--secondary-color);
}
.page-resources-789live-apk-game-strategies__dark-bg .page-resources-789live-apk-game-strategies__section-title::after {
    background-color: var(--secondary-color);
}

.page-resources-789live-apk-game-strategies__dark-bg .page-resources-789live-apk-game-strategies__paragraph strong {
    color: var(--button-register-login-text); /* Yellow for contrast */
}

/* Buttons */
.page-resources-789live-apk-game-strategies__btn-primary {
    background-color: var(--button-register-login-bg); /* Red for CTA */
    color: var(--button-register-login-text); /* Yellow for text */
    border: 2px solid var(--button-register-login-bg);
}