
    :root {
        --primary-color: #e30613; /* A vibrant red, common in betting sites */
        --secondary-color: #ffc107; /* A bright yellow/gold for accents */
        --background-dark: #1a1a1a;
        --text-light: #f0f0f0;
        --text-dark: #333333;
        --border-color: #333333;
        --button-bg: var(--primary-color);
        --button-text: #ffffff;
        --card-bg: #2a2a2a;
        --section-padding: 60px 20px;
        --mobile-section-padding: 30px 15px;
        --header-offset: 122px; /* Default value if not set in shared.css */
    }

    .page-8k8-2 {
        background-color: var(--background-dark);
        color: var(--text-light);
        font-family: 'Roboto', sans-serif;
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    .page-8k8-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .page-8k8-2__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:8k8,download,mobile,gaming,philippines]') no-repeat center center / cover;
        padding: 100px 20px;
        text-align: center;
        color: #ffffff;
        position: relative;
        padding-top: 10px; /* Small top padding, body handles header offset */
    }

    .page-8k8-2__hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-8k8-2__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: var(--secondary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-2__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-8k8-2__download-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--button-text);
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-2__download-button:hover {
        background-color: #c20510;
        transform: translateY(-3px);
    }

    .page-8k8-2__section {
        padding: var(--section-padding);
        border-bottom: 1px solid var(--border-color);
    }

    .page-8k8-2__section:last-of-type {
        border-bottom: none;
    }

    .page-8k8-2__section-title {
        font-size: 2.5em;
        color: var(--secondary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

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

    .page-8k8-2__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-8k8-2__feature-card {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-8k8-2__feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-2__feature-icon {
        width: 200px; /* Minimum size */
        height: 200px; /* Minimum size */
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-2__feature-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-2__feature-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    .page-8k8-2__steps-list {
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-8k8-2__step-item {
        background-color: var(--card-bg);
        padding: 25px 30px;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-8k8-2__step-number {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5em;
        font-weight: bold;
    }

    .page-8k8-2__step-content {
        flex-grow: 1;
    }

    .page-8k8-2__step-title {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-8k8-2__step-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    .page-8k8-2__game-providers {
        text-align: center;
    }

    .page-8k8-2__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-8k8-2__provider-logo {
        background-color: #333333;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 120px; /* Minimum height for containing image */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-8k8-2__provider-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        width: 200px; /* Minimum size */
        height: 200px; /* Minimum size */
    }

    .page-8k8-2__cta-section {
        text-align: center;
        padding: var(--section-padding);
        background-color: #222222;
    }

    .page-8k8-2__cta-title {
        font-size: 2.2em;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }

    .page-8k8-2__cta-description {
        font-size: 1.1em;
        color: #e0e0e0;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* FAQ Section */
    .page-8k8-2__faq-section {
        padding: var(--section-padding);
    }

    .page-8k8-2__faq-list {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-2__faq-item {
        background-color: var(--card-bg);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--border-color);
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-8k8-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333333;
        color: var(--text-light);
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8k8-2__faq-question:hover {
        background-color: #444444;
    }

    .page-8k8-2__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--secondary-color);
        pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-8k8-2__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents icon from interfering with click */
        color: var(--primary-color);
    }

    .page-8k8-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #c0c0c0;
        opacity: 0;
        font-size: 0.95em;
        box-sizing: border-box;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain any content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an 'X' or 'minus' visually */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8k8-2 {
            padding-top: var(--header-offset, 122px); /* Ensure body padding is applied */
        }

        .page-8k8-2__hero-section {
            padding: 60px 15px;
        }

        .page-8k8-2__hero-title {
            font-size: 2.5em;
        }

        .page-8k8-2__hero-description {
            font-size: 1em;
        }

        .page-8k8-2__download-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-2__section {
            padding: var(--mobile-section-padding);
        }

        .page-8k8-2__section-title {
            font-size: 2em;
            margin-bottom: 30px;
        }

        .page-8k8-2__features-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-2__feature-card {
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-2__feature-icon {
            width: 200px; /* Minimum size */
            height: 200px; /* Minimum size */
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8k8-2__feature-title {
            font-size: 1.5em;
        }

        .page-8k8-2__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-2__step-number {
            margin-bottom: 15px;
        }

        .page-8k8-2__step-title {
            font-size: 1.3em;
        }

        .page-8k8-2__providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        }

        .page-8k8-2__provider-logo {
            height: 100px;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-2__provider-logo img {
            width: 200px; /* Minimum size */
            height: 200px; /* Minimum size */
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8k8-2__cta-title {
            font-size: 1.8em;
        }

        .page-8k8-2__cta-description {
            font-size: 1em;
        }

        .page-8k8-2__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

        .page-8k8-2__faq-question h3 {
            font-size: 1.1em;
            word-break: break-word !important; /* Ensures long titles break */
        }

        .page-8k8-2__faq-toggle {
            font-size: 1.5em;
        }

        .page-8k8-2__faq-answer {
            padding: 0 20px;
            font-size: 0.9em;
        }

        .page-8k8-2__faq-item.active .page-8k8-2__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-2__section-title {
            font-size: 1.8em;
        }
        .page-8k8-2__providers-grid {
            grid-template-columns: 1fr; /* Stack providers on very small screens */
        }
    }
  