:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-on-dark: #FFFFFF;
    --text-on-light: #333333;
    --background-dark: #1a1a2e; /* From shared.css body */
    --link-color: #C30808; /* Example for register/login, per prompt */
    --highlight-text: #FFFF00; /* For register/login font, per prompt */
    --card-bg-dark: rgba(255, 255, 255, 0.1);
    --card-bg-light: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-resources-game-strategy-analysis {
    font-family: 'Arial', sans-serif;
    color: var(--text-on-dark); /* Default text color for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-resources-game-strategy-analysis__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px);
    background-color: var(--primary-color); /* Use brand color for hero background */
    color: var(--text-on-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

.page-resources-game-strategy-analysis__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-resources-game-strategy-analysis__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-analysis__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.page-resources-game-strategy-analysis__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-game-strategy-analysis__btn-primary,
.page-resources-game-strategy-analysis__btn-secondary {
    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 mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-game-strategy-analysis__btn-primary {
    background-color: #C30808; /* Custom color for register/login type buttons */
    color: var(--highlight-text); /* Custom font color for register/login type buttons */
    border: 2px solid #C30808;
}

.page-resources-game-strategy-analysis__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    color: var(--highlight-text);
}

.page-resources-game-strategy-analysis__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-resources-game-strategy-analysis__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-resources-game-strategy-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-resources-game-strategy-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay */
    filter: none; /* No filter to change color */
}

/* General Content Sections */
.page-resources-game-strategy-analysis__introduction-section,
.page-resources-game-strategy-analysis__game-strategies-section,
.page-resources-game-strategy-analysis__security-section,
.page-resources-game-strategy-analysis__cta-section {
    padding: 60px 20px;
    background-color: var(--card-bg-light); /* Light background for readability */
    color: var(--text-on-light);
}

.page-resources-game-strategy-analysis__principles-section,
.page-resources-game-strategy-analysis__promotions-section {
    padding: 60px 20px;
    background-color: var(--primary-color); /* Dark section background */
    color: var(--text-on-dark);
}

.page-resources-game-strategy-analysis__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-on-dark);
}

.page-resources-game-strategy-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-resources-game-strategy-analysis__section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: inherit; /* Inherit from parent section */
}

.page-resources-game-strategy-analysis__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-resources-game-strategy-analysis__highlight {
    font-weight: bold;
    color: var(--primary-color);
}
.page-resources-game-strategy-analysis__principles-section .page-resources-game-strategy-analysis__highlight {
    color: var(--secondary-color); /* Highlight on dark background */
}
.page-resources-game-strategy-analysis__promotions-section .page-resources-game-strategy-analysis__highlight {
    color: var(--secondary-color); /* Highlight on dark background */
}
.page-resources-game-strategy-analysis__security-section .page-resources-game-strategy-analysis__highlight {
    color: var(--primary-color); /* Highlight on light background */
}
.page-resources-game-strategy-analysis__faq-section .page-resources-game-strategy-analysis__highlight {
    color: var(--highlight-text); /* Highlight on dark background */
}
.page-resources-game-strategy-analysis__cta-section .page-resources-game-strategy-analysis__highlight {
    color: var(--primary-color); /* Highlight on light background */
}

.page-resources-game-strategy-analysis__keyword {
    font-weight: bold;
    color: var(--primary-color); /* Default keyword color */
}
.page-resources-game-strategy-analysis__principles-section .page-resources-game-strategy-analysis__keyword {
    color: var(--secondary-color); /* Keyword on dark background */
}
.page-resources-game-strategy-analysis__promotions-section .page-resources-game-strategy-analysis__keyword {
    color: var(--secondary-color); /* Keyword on dark background */
}
.page-resources-game-strategy-analysis__faq-section .page-resources-game-strategy-analysis__keyword {
    color: var(--highlight-text); /* Keyword on dark background */
}


.page-resources-game-strategy-analysis a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-game-strategy-analysis a:hover {
    color: #005a2e; /* Darker green */
    text-decoration: underline;
}

/* Link colors for dark sections */
.page-resources-game-strategy-analysis__principles-section a,
.page-resources-game-strategy-analysis__promotions-section a,
.page-resources-game-strategy-analysis__faq-section a {
    color: var(--secondary-color);
}
.page-resources-game-strategy-analysis__principles-section a:hover,
.page-resources-game-strategy-analysis__promotions-section a:hover,
.page-resources-game-strategy-analysis__faq-section a:hover {
    color: #e0e0e0;
}


/* Grid Layouts */
.page-resources-game-strategy-analysis__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-game-strategy-analysis__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-resources-game-strategy-analysis__card {
    background-color: var(--card-bg-light);
    color: var(--text-on-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-game-strategy-analysis__principles-section .page-resources-game-strategy-analysis__card {
    background-color: var(--card-bg-dark);
    color: var(--text-on-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-analysis__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-game-strategy-analysis__principles-section .page-resources-game-strategy-analysis__card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-game-strategy-analysis__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: inherit;
}