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

.page-game-strategy-guides {
    color: var(--text-main);
    background-color: var(--page-bg);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-game-strategy-guides__section {
    padding: 60px 0;
    position: relative;
}

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

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

.page-game-strategy-guides__hero-image-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

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

.page-game-strategy-guides__hero-content {
    padding: 20px;
    max-width: 900px;
    z-index: 1; /* Ensure content is above image if there's any overlap possibility */
}

.page-game-strategy-guides__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-game-strategy-guides__intro-text {
    font-size: 1.2em;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-game-strategy-guides__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-game-strategy-guides__cta-button--secondary {
    background: var(--deep-green);
    border: 2px solid var(--primary-color);
}

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

.page-game-strategy-guides__cta-button--light {
    background: var(--text-main);
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
}

.page-game-strategy-guides__cta-button--light:hover {
    background: var(--gold-color);
    color: var(--page-bg);
}

.page-game-strategy-guides__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

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

.page-game-strategy-guides__text-block {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 20px;
    text-align: justify;
}

.page-game-strategy-guides__introduction-section .page-game-strategy-guides__text-block {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-strategy-guides__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-strategy-guides__grid-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-strategy-guides__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-game-strategy-guides__item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.page-game-strategy-guides__item-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-game-strategy-guides__strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-game-strategy-guides__card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-game-strategy-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-guides__card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-game-strategy-guides__card-title {
    font-size: 1.4em;
    color: var(--gold-color);
    padding: 20px 20px 10px;
    font-weight: 600;
}

.page-game-strategy-guides__card-text {
    font-size: 1em;
    color: var(--text-secondary);
    padding: 0 20px 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-game-strategy-guides__btn-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 20px 20px;
    align-self: flex-start;
    transition: background 0.3s ease;
}

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

.page-game-strategy-guides__dark-section {
    background-color: var(--deep-green);
    color: var(--text-main);
    padding: 80px 0;
}

.page-game-strategy-guides__dark-section .page-game-strategy-guides__section-title {
    color: var(--gold-color);
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.5);
}

.page-game-strategy-guides__dark-section .page-game-strategy-guides__section-title::after {
    background: var(--gold-color);
}

.page-game-strategy-guides__dark-section .page-game-strategy-guides__text-block {
    color: var(--text-main);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-strategy-guides__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.page-game-strategy-guides__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-game-strategy-guides__faq-list {
    margin-top: 40px;
}

.page-game-strategy-guides__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-game-strategy-guides__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
}

.page-game-strategy-guides__faq-item summary:hover {
    background-color: var(--deep-green);
}

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

.page-game-strategy-guides__faq-qtext {
    flex-grow: 1;
}

.page-game-strategy-guides__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-toggle {
    content: '−';
}

.page-game-strategy-guides__faq-answer {
    padding: 10px 20px 20px;
    font-size: 1.1em;
    color: var(--text-secondary);
    background-color: var(--deep-green);
    border-top: 1px solid var(--border-color);
}

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

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

.page-game-strategy-guides__cta-bottom-section {
    text-align: center;
}

.page-game-strategy-guides__cta-bottom-content {
    max-width: 900px;
}

.page-game-strategy-guides__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-game-strategy-guides__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }

    .page-game-strategy-guides__section-title {
        font-size: 2em;
    }

    .page-game-strategy-guides__grid-layout,
    .page-game-strategy-guides__strategy-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-game-strategy-guides__hero-image-wrapper {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-game-strategy-guides {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-game-strategy-guides__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

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

    .page-game-strategy-guides__main-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
        margin-bottom: 10px;
    }

    .page-game-strategy-guides__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .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: 12px 15px;
        font-size: 1em;
    }

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

    .page-game-strategy-guides__container {
        padding: 0 15px;
    }

    .page-game-strategy-guides__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-game-strategy-guides__text-block {
        font-size: 1em;
    }

    .page-game-strategy-guides__grid-layout,
    .page-game-strategy-guides__strategy-cards {
        grid-template-columns: 1fr;
    }

    .page-game-strategy-guides__item-image,
    .page-game-strategy-guides__card-image {
        height: auto;
        min-height: 200px; /* Ensure minimum size */
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
    }

    .page-game-strategy-guides__grid-item,
    .page-game-strategy-guides__card {
        padding: 20px;
    }

    .page-game-strategy-guides__card-title {
        font-size: 1.2em;
        padding: 15px 0 5px;
    }

    .page-game-strategy-guides__card-text {
        padding: 0 0 15px;
    }

    .page-game-strategy-guides__btn-secondary {
        margin: 0 0 15px;
        width: 100%;
        text-align: center;
    }

    .page-game-strategy-guides__dark-section {
        padding: 50px 0;
    }

    .page-game-strategy-guides__faq-item summary {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-game-strategy-guides__faq-answer {
        padding: 10px 15px 15px;
    }

    .page-game-strategy-guides__button-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-game-strategy-guides__section,
    .page-game-strategy-guides__card,
    .page-game-strategy-guides__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-game-strategy-guides__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
}

/* Ensure content area images are not too small */
.page-game-strategy-guides img {
    min-width: 200px;
    min-height: 200px;
}

.page-game-strategy-guides__item-image,
.page-game-strategy-guides__card-image {
    min-width: 200px;
    min-height: 200px;
}

/* Text color for links within text blocks */
.page-game-strategy-guides__text-block a {
    color: var(--gold-color);
    text-decoration: underline;
}

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