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

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

.page-game-guides__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px;
    background-color: var(--background);
    overflow: hidden;
}

.page-game-guides__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.page-game-guides__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 70vh;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-game-guides__hero-content-wrapper {
    max-width: 900px;
    margin-top: 40px;
    padding: 0 15px;
    z-index: 1;
}

.page-game-guides__main-title {
    color: var(--text-main);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-game-guides__hero-description {
    color: var(--text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-game-guides__btn-primary,
.page-game-guides__btn-secondary,
.page-game-guides__link-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-game-guides__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-game-guides__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-game-guides__btn-secondary {
    background: var(--background);
    color: var(--text-main);
    border: 2px solid var(--border);
}

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

.page-game-guides__link-button {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    margin-top: 15px;
    font-size: 0.9em;
    padding: 10px 20px;
}

.page-game-guides__link-button:hover {
    opacity: 0.9;
}

.page-game-guides__section {
    padding: 60px 0;
    background-color: var(--background);
    color: var(--text-main);
}

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

.page-game-guides__section-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: bold;
}

.page-game-guides__text-block {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.05em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-guides__card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-game-guides__card-title {
    color: var(--text-main);
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides__card-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    flex-grow: 1;
}

.page-game-guides__game-category {
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--divider);
}

.page-game-guides__game-category:last-of-type {
    border-bottom: none;
}

.page-game-guides__category-title {
    color: var(--text-main);
    font-size: 1.8em;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-game-guides__image-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: 8px;
}

.page-game-guides__category-image,
.page-game-guides__strategy-image,
.page-game-guides__support-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-game-guides__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-game-guides__list-item {
    background-color: var(--card-bg);
    border-left: 4px solid var(--gold);
    padding: 15px 20px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 1em;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
}

.page-game-guides__list-item strong {
    color: var(--text-main);
}

.page-game-guides__link-text {
    color: var(--glow);
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.page-game-guides__link-text:hover {
    text-decoration: underline;
}

.page-game-guides__image-full-width {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

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

.page-game-guides__step-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: 60px;
}

.page-game-guides__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glow);
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid var(--background);
    box-shadow: 0 0 0 5px var(--deep-green);
}

.page-game-guides__step-title {
    color: var(--text-main);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-guides__step-description {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-game-guides__cta-bottom,
.page-game-guides__cta-final {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--divider);
}

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

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

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

.page-game-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    color: var(--text-main);
    font-weight: bold;
    font-size: 1.1em;
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--divider);
    list-style: none;
}

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

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

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

.page-game-guides__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-game-guides__faq-answer {
    padding: 20px 25px;
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.6;
    background-color: var(--card-bg);
}

.page-game-guides__faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

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

.page-game-guides__image-support {
    margin-top: 40px;
    text-align: center;
}

/* Responsive Images */
.page-game-guides img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Videos (if any, though none currently in HTML) */
.page-game-guides video {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.page-game-guides__video-container,
.page-game-guides__video-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-game-guides__hero-section {
        padding: 10px 15px 40px;
    }

    .page-game-guides__main-title {
        font-size: 1.8em;
    }

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

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

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

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

    .page-game-guides__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-game-guides__grid-3-col,
    .page-game-guides__grid-2-col,
    .page-game-guides__steps-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-game-guides__card,
    .page-game-guides__step-item {
        padding: 25px;
        padding-top: 55px;
    }

    .page-game-guides__step-number {
        top: -15px;
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }

    .page-game-guides__category-title {
        font-size: 1.5em;
    }

    .page-game-guides__list-item {
        font-size: 0.9em;
    }

    .page-game-guides__cta-bottom,
    .page-game-guides__cta-final {
        margin-top: 40px;
    }

    .page-game-guides__cta-text {
        font-size: 1.1em;
    }

    .page-game-guides__btn-primary,
    .page-game-guides__btn-secondary,
    .page-game-guides__link-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-top: 10px;
    }
    
    .page-game-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-game-guides video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-game-guides__video-section,
    .page-game-guides__video-container,
    .page-game-guides__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-game-guides__hero-section {
        padding-top: 10px !important;
    }

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

    .page-game-guides__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
    }

    .page-game-guides__cta-final {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .page-game-guides__cta-final .page-game-guides__btn-primary,
    .page-game-guides__cta-final .page-game-guides__btn-secondary {
        max-width: 300px !important; /* Example max-width for stacked buttons */
    }
}