
    /* Page-specific CSS for 8k8.com Download */
    :root {
        --page-8k8-2-primary-color: #FFD700; /* Gold */
        --page-8k8-2-secondary-color: #333333; /* Dark Grey */
        --page-8k8-2-background-dark: #1a1a1a;
        --page-8k8-2-text-light: #ffffff;
        --page-8k8-2-text-dark: #cccccc;
        --page-8k8-2-button-hover: #FFC107;
        --page-8k8-2-border-color: #444444;
        --page-8k8-2-shadow-color: rgba(0, 0, 0, 0.5);
    }

    .page-8k8-2 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-2-text-light);
        background-color: var(--page-8k8-2-background-dark);
        line-height: 1.6;
        padding-bottom: 50px; /* Ensure space above footer */
    }

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

    .page-8k8-2__hero-section {
        position: relative;
        background: var(--page-8k8-2-background-dark);
        color: var(--page-8k8-2-text-light);
        text-align: center;
        padding: 60px 0 40px; /* Adjusted padding-top to avoid double header offset */
        overflow: hidden;
        border-bottom: 2px solid var(--page-8k8-2-border-color);
    }

    .page-8k8-2__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-8k8-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-8k8-2__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-8k8-2-primary-color);
        text-shadow: 2px 2px 4px var(--page-8k8-2-shadow-color);
    }

    .page-8k8-2__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--page-8k8-2-text-light);
    }

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

    .page-8k8-2__cta-button:hover {
        background-color: var(--page-8k8-2-button-hover);
        transform: translateY(-2px);
    }

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

    .page-8k8-2__section:nth-of-type(even) {
        background-color: #222222;
    }

    .page-8k8-2__section-title {
        font-size: 2.2em;
        color: var(--page-8k8-2-primary-color);
        text-align: center;
        margin-bottom: 40px;
        text-shadow: 1px 1px 2px var(--page-8k8-2-shadow-color);
    }

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

    .page-8k8-2__feature-item {
        background-color: var(--page-8k8-2-secondary-color);
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px var(--page-8k8-2-shadow-color);
        transition: transform 0.3s ease;
        border: 1px solid var(--page-8k8-2-border-color);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-2__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-8k8-2__feature-icon {
        width: 200px; /* Minimum size 200x200 */
        height: 200px; /* Minimum size 200x200 */
        margin-bottom: 20px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--page-8k8-2-primary-color);
        box-shadow: 0 0 15px var(--page-8k8-2-primary-color);
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
    }

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

    .page-8k8-2__feature-description {
        color: var(--page-8k8-2-text-dark);
        font-size: 0.95em;
    }

    .page-8k8-2__how-to-steps {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .page-8k8-2__step-item {
        display: flex;
        align-items: flex-start;
        background-color: var(--page-8k8-2-secondary-color);
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px var(--page-8k8-2-shadow-color);
        border: 1px solid var(--page-8k8-2-border-color);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

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

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

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

    .page-8k8-2__step-description {
        color: var(--page-8k8-2-text-dark);
        font-size: 0.95em;
    }

    .page-8k8-2__app-screenshot {
        width: 100%;
        max-width: 600px;
        height: auto;
        display: block;
        margin: 40px auto 20px;
        border-radius: 15px;
        box-shadow: 0 8px 20px var(--page-8k8-2-shadow-color);
        border: 2px solid var(--page-8k8-2-primary-color);
        object-fit: cover;
    }

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

    .page-8k8-2__provider-logo {
        background-color: var(--page-8k8-2-secondary-color);
        padding: 15px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px var(--page-8k8-2-shadow-color);
        transition: transform 0.3s ease;
        border: 1px solid var(--page-8k8-2-border-color);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-8k8-2__provider-logo:hover {
        transform: scale(1.05);
    }

    .page-8k8-2__provider-image {
        width: 120px; /* Example, adjust as needed, but min 200px for placeholder */
        height: 80px; /* Example, adjust as needed, but min 200px for placeholder */
        object-fit: contain;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        min-width: 200px; /* Enforce min image size */
        min-height: 200px; /* Enforce min image size */
    }

    .page-8k8-2__faq-list {
        margin-top: 30px;
    }

    .page-8k8-2__faq-item {
        background-color: var(--page-8k8-2-secondary-color);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px var(--page-8k8-2-shadow-color);
        border: 1px solid var(--page-8k8-2-border-color);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

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

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

    .page-8k8-2__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        color: var(--page-8k8-2-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-2__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        color: var(--page-8k8-2-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-2__faq-item.active .page-8k8-2__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        color: var(--page-8k8-2-text-dark);
        font-size: 0.95em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        background-color: var(--page-8k8-2-secondary-color);
    }

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

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-8k8-2__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-2__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-2__hero-section {
            padding: 40px 0 30px;
        }
        .page-8k8-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-2__hero-description {
            font-size: 1em;
        }
        .page-8k8-2__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-2__section {
            padding: 40px 0;
        }
        .page-8k8-2__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        /* List item responsive requirements */
        .page-8k8-2__features-grid,
        .page-8k8-2__game-providers-grid {
            grid-template-columns: 1fr; /* Stack items */
        }

        .page-8k8-2__feature-item,
        .page-8k8-2__step-item,
        .page-8k8-2__provider-logo,
        .page-8k8-2__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;
        }
        .page-8k8-2__feature-item {
            padding: 20px !important;
        }
        .page-8k8-2__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px !important;
        }
        .page-8k8-2__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
        .page-8k8-2__step-title {
            font-size: 1.2em;
        }
        .page-8k8-2__step-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8k8-2__feature-description {
            font-size: 0.9em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8k8-2__provider-logo {
             padding: 10px !important;
        }
        .page-8k8-2__faq-question {
            font-size: 1em;
            padding: 15px !important;
        }
        .page-8k8-2__faq-question h3 {
            font-size: 1em;
        }
        .page-8k8-2__faq-answer {
            padding: 15px !important;
            font-size: 0.85em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* Images responsive */
        .page-8k8-2__feature-icon,
        .page-8k8-2__app-screenshot,
        .page-8k8-2__provider-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-2__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-2__section-title {
            font-size: 1.6em;
        }
        .page-8k8-2__cta-button {
            font-size: 0.9em;
            padding: 10px 20px;
        }
    }
  