.page-resources-game-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #121212; /* Explicitly set to match shared.css body if not inherited perfectly */
}

.page-resources-game-strategy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-game-strategy__container--center {
    text-align: center;
}

.page-resources-game-strategy__section {
    padding: 60px 0;
}

.page-resources-game-strategy__dark-section {
    background-color: #017439; /* Brand primary color for dark sections */
}

.page-resources-game-strategy__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff; /* Default heading color on dark background */
}

.page-resources-game-strategy__heading--white {
    color: #ffffff;
}

.page-resources-game-strategy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-resources-game-strategy__paragraph--white {
    color: #ffffff;
}

/* Hero Section */
.page-resources-game-strategy__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-game-strategy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-game-strategy__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-game-strategy__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-resources-game-strategy__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-game-strategy__hero-description {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

/* Buttons */
.page-resources-game-strategy__btn-primary,
.page-resources-game-strategy__btn-secondary,
.page-resources-game-strategy__hero-cta {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-game-strategy__btn-primary,
.page-resources-game-strategy__hero-cta {
    background-color: #C30808; /* Custom color for Register/Login-like CTA */
    color: #FFFF00; /* Custom font color for Register/Login-like CTA */
    border: 2px solid #C30808;
    margin-top: 20px;
}

.page-resources-game-strategy__btn-primary:hover,
.page-resources-game-strategy__hero-cta:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-resources-game-strategy__btn-secondary {
    background-color: transparent;
    color: #FFFF00; /* Adjusted for better contrast on dark green background */
    border: 2px solid #FFFF00; /* Adjusted for better contrast on dark green background */
    margin-top: 15px;
}

.page-resources-game-strategy__btn-secondary:hover {
    background-color: #FFFF00;
    color: #017439; /* Text becomes brand green on yellow hover */
}

/* Content Images */
.page-resources-game-strategy__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Game Strategies Grid */
.page-resources-game-strategy__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-game-strategy__card {
    background-color: rgba(255, 255, 255, 0.1); /* Light transparent background on dark sections */
    color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}