
    /* Base styles for the page-g-788 wrapper */
    .page-g-788 {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f5f5f5;
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-g-788__hero-section {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        color: #fff;
        text-align: center;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 300px;
        box-sizing: border-box;
    }

    .page-g-788__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.5); /* Darken image for text readability */
        max-width: 100%; /* Ensure responsiveness */
        box-sizing: border-box;
    }

    .page-g-788__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-g-788__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #ffcc00; /* Gold color for highlights */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        box-sizing: border-box;
    }

    .page-g-788__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #f0f0f0;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
    }

    .page-g-788__cta-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #333;
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-g-788__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* General Section Styles */
    .page-g-788__about-section,
    .page-g-788__how-to-play-section,
    .page-g-788__promotions-section,
    .page-g-788__faq-section,
    .page-g-788__cta-bottom {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-g-788__section-title {
        font-size: 2.2em;
        color: #004d00; /* Dark green for section titles */
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        box-sizing: border-box;
    }

    .page-g-788__section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background-color: #ffcc00;
        margin: 10px auto 0;
        box-sizing: border-box;
    }

    .page-g-788__text-content {
        font-size: 1.1em;
        color: #555;
        text-align: center;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    /* Features Grid */
    .page-g-788__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        box-sizing: border-box;
    }

    .page-g-788__feature-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-g-788__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-g-788__feature-icon {
        height: auto;
        margin-bottom: 20px;
        max-width: 100%;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-g-788__feature-title {
        font-size: 1.5em;
        color: #004d00;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-g-788__feature-description {
        color: #666;
        box-sizing: border-box;
    }

    /* How-To-Play Steps */
    .page-g-788__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
        box-sizing: border-box;
    }

    .page-g-788__step-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        position: relative;
        box-sizing: border-box;
    }

    .page-g-788__step-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background-color: #ffcc00;
        color: #333;
        border-radius: 50%;
        font-size: 1.8em;
        font-weight: bold;
        margin: -50px auto 20px; /* Pulls number up */
        border: 3px solid #004d00;
        box-sizing: border-box;
    }

    .page-g-788__step-title {
        font-size: 1.4em;
        color: #004d00;
        margin-bottom: 10px;
        box-sizing: border-box;
    }

    .page-g-788__step-description {
        color: #666;
        box-sizing: border-box;
    }

    /* Promotions Section */
    .page-g-788__promo-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        box-sizing: border-box;
    }

    .page-g-788__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        box-sizing: border-box;
    }

    .page-g-788__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-g-788__promo-card h3 {
        font-size: 1.4em;
        color: #004d00;
        margin: 20px 15px 10px;
        box-sizing: border-box;
    }

    .page-g-788__promo-card p {
        color: #666;
        padding: 0 15px 20px;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-g-788__faq-container {
        max-width: 800px;
        margin: 40px auto 0;
        box-sizing: border-box;
    }

    .page-g-788__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-g-788__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f9f9f9;
        cursor: pointer;
        font-size: 1.1em;
        color: #004d00;
        transition: background-color 0.3s ease;
        user-select: none;
        box-sizing: border-box;
    }

    .page-g-788__faq-question h3 {
        margin: 0;
        font-size: 1em; /* Adjust to fit parent font size */
        color: #004d00;
        pointer-events: none; /* Crucial for click handler on parent */
        box-sizing: border-box;
    }

    .page-g-788__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-g-788__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        pointer-events: none; /* Crucial for click handler on parent */
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-g-788__faq-item.active .page-g-788__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
        color: #004d00;
    }

    .page-g-788__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        box-sizing: border-box;
    }

    .page-g-788__faq-item.active .page-g-788__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important; /* Expanded padding */
        opacity: 1;
        box-sizing: border-box;
    }

    .page-g-788__faq-answer p {
        margin-bottom: 0;
        line-height: 1.8;
        box-sizing: border-box;
    }

    /* Bottom CTA Section */
    .page-g-788__cta-bottom {
        background-color: #004d00;
        color: #fff;
        text-align: center;
        padding: 60px 20px;
        border-radius: 10px;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-g-788__cta-bottom .page-g-788__cta-title {
        font-size: 2.5em;
        color: #ffcc00;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-g-788__cta-bottom .page-g-788__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-g-788__cta-bottom .page-g-788__cta-button {
        background-color: #ffcc00;
        color: #004d00;
    }

    .page-g-788__cta-bottom .page-g-788__cta-button:hover {
        background-color: #e6b800;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-g-788 {
            padding-top: 0 !important; /* Reset padding-top on mobile if header is sticky/handled elsewhere */
        }

        .page-g-788__hero-section {
            padding: 40px 15px;
            min-height: 250px;
        }

        .page-g-788__hero-title {
            font-size: 2em;
        }

        .page-g-788__hero-description {
            font-size: 1em;
        }

        .page-g-788__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .page-g-788__text-content {
            font-size: 1em;
        }

        .page-g-788__about-section,
        .page-g-788__how-to-play-section,
        .page-g-788__promotions-section,
        .page-g-788__faq-section,
        .page-g-788__cta-bottom {
            padding: 30px 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-g-788__features-grid,
        .page-g-788__steps-container,
        .page-g-788__promo-cards {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important; /* Reset container padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-g-788__feature-item,
        .page-g-788__step-item,
        .page-g-788__promo-card,
        .page-g-788__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-g-788__promo-image {
            height: 200px;
        }

        .page-g-788__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-g-788__faq-question h3 {
            font-size: 0.9em;
        }
        .page-g-788__faq-answer {
            padding: 15px 15px !important;
        }
        .page-g-788__faq-answer p {
            font-size: 0.9em;
        }

        .page-g-788__cta-bottom .page-g-788__cta-title {
            font-size: 2em;
        }

        .page-g-788__cta-bottom .page-g-788__cta-description {
            font-size: 1em;
        }

        /* All images responsive */
        .page-g-788 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }
  