:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-bg: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

/* Base styles for the page */
.page-game-strategy-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for dark background */
    background-color: var(--color-bg);
}

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

/* Hero Section */
.page-game-strategy-guides__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
}

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

.page-game-strategy-guides__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-game-strategy-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    margin-top: 80px; /* Adjust as needed to not overlap header */
}

.page-game-strategy-guides__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-game-strategy-guides__description {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.page-game-strategy-guides__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-game-strategy-guides__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-strategy-guides__cta-button--bottom {
    margin-top: 40px;
    font-size: 1.2rem;
    padding: 18px 35px;
}

/* General Section Styles */
.page-game-strategy-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-divider);
}

.page-game-strategy-guides__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-game-strategy-guides__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-game-strategy-guides__text-block p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.page-game-strategy-guides__text-block a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-game-strategy-guides__text-block a:hover {
    color: var(--color-gold);
}

/* Game Types Section */
.page-game-strategy-guides__game-types-section {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-game-strategy-guides__game-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategy-guides__game-card {
    background-color: var(--color-deep-green);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
}

.page-game-strategy-guides__card-title {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-game-strategy-guides__card-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.page-game-strategy-guides__card-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.page-game-strategy-guides__card-list li {
    margin-bottom: 8px;
}

.page-game-strategy-guides__card-list li strong {
    color: var(--color-text-main);
}

.page-game-strategy-guides__card-list li a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-game-strategy-guides__image-content {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Principles Section */
.page-game-strategy-guides__principles-list {
    list-style: none;
    padding: 0;
    counter-reset: principle-counter;
}

.page-game-strategy-guides__principles-list li {
    background-color: var(--color-card-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    padding-left: 70px;
}

.page-game-strategy-guides__principles-list li::before {
    counter-increment: principle-counter;
    content: counter(principle-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: var(--color-primary);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.page-game-strategy-guides__list-item-title {
    font-size: 1.3rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-game-strategy-guides__principles-list li p {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.page-game-strategy-guides__principles-list li a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-game-strategy-guides__principles-list li a:hover {
    color: var(--color-gold);
}

/* Access Section */
.page-game-strategy-guides__access-section {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
}

.page-game-strategy-guides__access-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategy-guides__access-card {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-strategy-guides__access-card .page-game-strategy-guides__card-title {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-game-strategy-guides__access-card .page-game-strategy-guides__card-text {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-game-strategy-guides__image-card {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-game-strategy-guides__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-game-strategy-guides__faq-item {
    background-color: var(--color-card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    font-weight: bold;
    color: var(--color-text-main);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.page-game-strategy-guides__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-game-strategy-guides__faq-qtext {
    flex-grow: 1;
    color: var(--color-gold);
}

.page-game-strategy-guides__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-toggle {
    transform: rotate(45deg);
}

.page-game-strategy-guides__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.page-game-strategy-guides__faq-answer p {
    margin-bottom: 10px;
}

.page-game-strategy-guides__faq-answer a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.page-game-strategy-guides__faq-answer a:hover {
    color: var(--color-gold);
}

/* Conclusion Section */
.page-game-strategy-guides__conclusion-section {
    text-align: center;
}

.page-game-strategy-guides__conclusion-section .page-game-strategy-guides__text-block {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-game-strategy-guides__hero-content {
        padding: 60px 20px;
    }

    .page-game-strategy-guides__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-game-strategy-guides__section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .page-game-strategy-guides__container {
        padding: 0 15px;
    }

    .page-game-strategy-guides__hero-section {
        padding-bottom: 40px;
    }

    .page-game-strategy-guides__hero-content {
        padding: 40px 15px;
        margin-top: 40px;
    }

    .page-game-strategy-guides__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-game-strategy-guides__description {
        font-size: 1rem;
    }

    .page-game-strategy-guides__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .page-game-strategy-guides__cta-button--bottom {
        font-size: 1rem;
        padding: 15px 30px;
    }

    .page-game-strategy-guides__section {
        padding: 30px 0;
    }

    .page-game-strategy-guides__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-game-strategy-guides__sub-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }

    .page-game-strategy-guides__game-list,
    .page-game-strategy-guides__access-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-game-strategy-guides__principles-list li {
        padding-left: 60px;
    }

    .page-game-strategy-guides__principles-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        left: 15px;
        top: 15px;
    }

    .page-game-strategy-guides__list-item-title {
        font-size: 1.2rem;
    }

    .page-game-strategy-guides__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .page-game-strategy-guides__faq-qtext {
        color: var(--color-gold) !important; /* Ensure gold color on dark background */
    }

    /* Mobile image responsiveness */
    .page-game-strategy-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure containers with images/content also adapt */
    .page-game-strategy-guides__section,
    .page-game-strategy-guides__container,
    .page-game-strategy-guides__game-card,
    .page-game-strategy-guides__access-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent content overflow */
    }
    
    /* Mobile button responsiveness */
    .page-game-strategy-guides__cta-button,
    .page-game-strategy-guides__btn-primary,
    .page-game-strategy-guides__btn-secondary,
    .page-game-strategy-guides a[class*="button"],
    .page-game-strategy-guides a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .page-game-strategy-guides__cta-buttons,
    .page-game-strategy-guides__button-group,
    .page-game-strategy-guides__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
        align-items: center;
    }

    .page-game-strategy-guides__dark-section {
        background-color: var(--color-card-bg) !important;
    }
}

/* Dark background for sections where specified */
.page-game-strategy-guides__dark-bg {
    background-color: var(--color-deep-green);
    color: var(--color-text-main);
}

/* Text color for links within content */
.page-game-strategy-guides a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-game-strategy-guides a:hover {
    text-decoration: underline;
    color: var(--color-gold);
}