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

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

.page-game-strategy-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 60px;
}

.page-game-strategy-guides__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-game-strategy-guides__hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

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

.page-game-strategy-guides__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--page-text-secondary);
    margin-bottom: 40px;
}

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

.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-strategy-guides__btn-primary {
    background: var(--page-button-gradient);
    color: var(--page-text-main);
    border: none;
}

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

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

.page-game-strategy-guides__btn-secondary:hover {
    background: var(--page-gold-color);
    color: var(--page-background-color-main);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-strategy-guides__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--page-divider-color);
}

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

.page-game-strategy-guides__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--page-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

.page-game-strategy-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(87, 227, 141, 0.7);
}

.page-game-strategy-guides__card-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-game-strategy-guides__card-title {
    font-size: 1.3rem;
    color: var(--page-gold-color);
    margin: 20px 20px 10px 20px;
    font-weight: 600;
    line-height: 1.4;
}

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

.page-game-strategy-guides__btn-text {
    display: inline-block;
    color: var(--page-glow-color);
    text-decoration: none;
    font-weight: 600;
    margin: 0 20px 0 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--page-glow-color);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-game-strategy-guides__btn-text:hover {
    color: var(--page-gold-color);
    border-color: var(--page-gold-color);
}

.page-game-strategy-guides__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    min-width: 200px;
    min-height: 200px;
}

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

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

.page-game-strategy-guides__faq-item[open] {
    background-color: var(--page-deep-green);
    border-color: var(--page-glow-color);
}

.page-game-strategy-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--page-text-main);
    cursor: pointer;
    background-color: var(--page-card-bg);
    user-select: none;
    transition: background-color 0.3s ease;
    list-style: none;
}

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

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

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

.page-game-strategy-guides__faq-item[open] .page-game-strategy-guides__faq-toggle {
    color: var(--page-gold-color);
}

.page-game-strategy-guides__faq-answer {
    padding: 15px 20px 20px 20px;
    font-size: 1rem;
    color: var(--page-text-secondary);
    border-top: 1px solid var(--page-divider-color);
}

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

.page-game-strategy-guides__faq-cta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

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

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

.page-game-strategy-guides__dark-section .page-game-strategy-guides__text-block {
    color: var(--page-text-secondary);
}

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

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

    .page-game-strategy-guides__hero-image-wrapper {
        max-height: 400px;
    }

    .page-game-strategy-guides__main-title {
        font-size: 2.2rem;
    }

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

    .page-game-strategy-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-game-strategy-guides__btn-primary,
    .page-game-strategy-guides__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-game-strategy-guides__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-game-strategy-guides__text-block {
        font-size: 0.95rem;
    }

    .page-game-strategy-guides__strategy-card-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-game-strategy-guides__card-image,
    .page-game-strategy-guides__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset !important;
        min-height: unset !important;
    }

    .page-game-strategy-guides__card-title {
        font-size: 1.2rem;
        margin: 15px 15px 10px 15px;
    }

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

    .page-game-strategy-guides__btn-text {
        margin: 0 15px 0 15px;
    }

    .page-game-strategy-guides__content-image {
        margin: 30px auto;
    }

    .page-game-strategy-guides__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-game-strategy-guides__faq-toggle {
        font-size: 1.3rem;
    }

    .page-game-strategy-guides__faq-answer {
        padding: 10px 15px 15px 15px;
    }
    
    .page-game-strategy-guides__video-section {
        padding-top: 10px !important;
    }
}