.page-game-strategy-guides {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is #0a0a0a (dark), so text must be light */
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
    background: linear-gradient(135deg, #017439, #0a0a0a); /* Fallback/overlay */
    color: #ffffff;
    overflow: hidden;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-game-strategy-guides__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6; /* Slight opacity to make text readable */
    overflow: hidden;
}

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

.page-game-strategy-guides__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
    border-radius: 10px;
}

.page-game-strategy-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-strategy-guides__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-game-strategy-guides__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* General Section Styles */
.page-game-strategy-guides__section {
    padding: 60px 0;
    background-color: #0a0a0a;
    color: #ffffff;
}

.page-game-strategy-guides__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 30px;
}

.page-game-strategy-guides__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Image Text Grid */
.page-game-strategy-guides__image-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategy-guides__image-text-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-game-strategy-guides__image-text-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px;
}

.page-game-strategy-guides__image-text-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-game-strategy-guides__image-text-description {
    color: #f0f0f0;
    flex-grow: 1;
}

/* General Principles Section */
.page-game-strategy-guides__dark-section {
    background-color: #011a0c; /* Darker green background for contrast */
    color: #ffffff;
}

.page-game-strategy-guides__principles-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-game-strategy-guides__principles-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides__principles-title {
    font-size: 1.6em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-game-strategy-guides__principles-description {
    color: #f0f0f0;
}

/* Specific Strategies Section */
.page-game-strategy-guides__strategy-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-game-strategy-guides__strategy-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.page-game-strategy-guides__strategy-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    min-height: 200px;
}

.page-game-strategy-guides__strategy-card-title {
    font-size: 1.4em;
    color: #017439;
    padding: 20px 20px 0;
    margin-bottom: 10px;
}

.page-game-strategy-guides__strategy-card-description {
    color: #f0f0f0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-game-strategy-guides__btn-text-link {
    display: inline-block;
    color: #017439;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px 20px;
    transition: color 0.3s ease;
}

.page-game-strategy-guides__btn-text-link:hover {
    color: #02a353;
    text-decoration: underline;
}

/* Responsible Gambling Section */
.page-game-strategy-guides__responsible-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-strategy-guides__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guides__feature-icon {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px;
}

.page-game-strategy-guides__feature-title {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-game-strategy-guides__feature-description {
    color: #f0f0f0;
}

/* FAQ Section */
.page-game-strategy-guides__faq {
    background-color: #0a0a0a;
}

.page-game-strategy-guides__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-game-strategy-guides__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-strategy-guides__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.page-game-strategy-guides__faq-item summary {
    list-style: none;
}

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

.page-game-strategy-guides__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #017439;
    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: 20px 25px;
    font-size: 1.1em;
    color: #f0f0f0;
    /* For JS-based accordion, use max-height transition */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-game-strategy-guides__faq-item.active .page-game-strategy-guides__faq-answer {
    max-height: 2000px;
}

/* CTA Banner */
.page-game-strategy-guides__cta-banner {
    background-color: #017439;
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-game-strategy-guides__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-game-strategy-guides__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-game-strategy-guides__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Buttons */
.page-game-strategy-guides__btn-primary,
.page-game-strategy-guides__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-game-strategy-guides__btn-primary {
    background-color: #C30808;
    color: #FFFF00;
    border: 2px solid #C30808;
}

.page-game-strategy-guides__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
}

.page-game-strategy-guides__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
}

.page-game-strategy-guides__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-strategy-guides__hero-title {
        font-size: 3em;
    }
    .page-game-strategy-guides__section-title {
        font-size: 2em;
    }
    .page-game-strategy-guides__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-game-strategy-guides__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-bottom: 60px;
    }
    .page-game-strategy-guides__hero-title {
        font-size: 2.2em;
    }
    .page-game-strategy-guides__hero-description {
        font-size: 1em;
    }
    .page-game-strategy-guides__hero-cta-buttons,
    .page-game-strategy-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
    }
    .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;
    }
    .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;
    }

    .page-game-strategy-guides__section,
    .page-game-strategy-guides__why-strategy,
    .page-game-strategy-guides__general-principles,
    .page-game-strategy-guides__specific-strategies,
    .page-game-strategy-guides__responsible-gambling,
    .page-game-strategy-guides__faq,
    .page-game-strategy-guides__cta-banner {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }
    .page-game-strategy-guides__section-title {
        font-size: 1.8em;
    }
    .page-game-strategy-guides__section-intro {
        font-size: 1em;
    }
    .page-game-strategy-guides__image-text-grid,
    .page-game-strategy-guides__principles-list,
    .page-game-strategy-guides__strategy-card-grid,
    .page-game-strategy-guides__responsible-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-game-strategy-guides__strategy-card-img {
        height: auto;
    }
    .page-game-strategy-guides__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-game-strategy-guides__faq-answer {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-game-strategy-guides__cta-title {
        font-size: 1.8em;
    }
    .page-game-strategy-guides__cta-description {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-game-strategy-guides img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-game-strategy-guides__image-text-img,
    .page-game-strategy-guides__strategy-card-img,
    .page-game-strategy-guides__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
    .page-game-strategy-guides__image-text-item,
    .page-game-strategy-guides__strategy-card,
    .page-game-strategy-guides__feature-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Videos responsiveness */
    .page-game-strategy-guides video,
    .page-game-strategy-guides__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-game-strategy-guides__hero-video-wrapper,
    .page-game-strategy-guides__video-container,
    .page-game-strategy-guides__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 0;
      padding-right: 0;
      overflow: hidden !important;
    }
}

/* Ensure no filter on images */
.page-game-strategy-guides img {
    filter: none;
}

/* Content area images CSS size check (min 200px) */
.page-game-strategy-guides img:not(.page-game-strategy-guides__hero-image) { /* Exclude hero which takes full width */
    min-width: 200px;
    min-height: 200px;
}