
    /* CSS styles for page-8k8-com-2 */
    :root {
        --page-8k8-com-2-primary-color: #e53935; /* Red */
        --page-8k8-com-2-secondary-color: #ffb300; /* Amber */
        --page-8k8-com-2-dark-bg: #1a1a1a;
        --page-8k8-com-2-light-bg: #ffffff;
        --page-8k8-com-2-text-color: #e0e0e0;
        --page-8k8-com-2-dark-text: #333333;
        --page-8k8-com-2-border-color: #333333;
    }

    .page-8k8-com-2 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-com-2-text-color);
        background-color: var(--page-8k8-com-2-dark-bg);
        line-height: 1.6;
        padding-top: 10px; /* Small padding for hero section, assuming body has header offset */
    }
    
    .page-8k8-com-2__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-com-2__hero-section {
        background-color: #000;
        text-align: center;
        padding: 50px 20px;
        position: relative;
        overflow: hidden;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

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

    .page-8k8-com-2__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .page-8k8-com-2__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-8k8-com-2-secondary-color);
        line-height: 1.2;
    }

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

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

    .page-8k8-com-2__promo-button:hover {
        background-color: #d32f2f;
    }

    .page-8k8-com-2__section {
        padding: 60px 0;
        text-align: center;
        background-color: var(--page-8k8-com-2-dark-bg);
    }

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

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

    .page-8k8-com-2__text-content {
        max-width: 800px;
        margin: 0 auto 40px auto;
        font-size: 1.1em;
        color: var(--page-8k8-com-2-text-color);
    }

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

    .page-8k8-com-2__game-card {
        background-color: #222;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        color: #fff;
    }

    .page-8k8-com-2__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-2__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        border-bottom: 2px solid var(--page-8k8-com-2-primary-color);
    }

    .page-8k8-com-2__game-details {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

    .page-8k8-com-2__game-description {
        font-size: 0.95em;
        color: var(--page-8k8-com-2-text-color);
        margin-bottom: 15px;
    }

    .page-8k8-com-2__game-button {
        display: inline-block;
        background-color: var(--page-8k8-com-2-primary-color);
        color: #fff;
        padding: 10px 20px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        margin-top: auto; /* Pushes button to the bottom */
    }

    .page-8k8-com-2__game-button:hover {
        background-color: #d32f2f;
    }

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

    .page-8k8-com-2__promo-card {
        background-color: #222;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        color: #fff;
        display: flex;
        flex-direction: column;
    }

    .page-8k8-com-2__promo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-2__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        border-bottom: 2px solid var(--page-8k8-com-2-secondary-color);
    }

    .page-8k8-com-2__promo-details {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-8k8-com-2__promo-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: var(--page-8k8-com-2-primary-color);
    }

    .page-8k8-com-2__promo-description {
        font-size: 0.95em;
        color: var(--page-8k8-com-2-text-color);
        margin-bottom: 15px;
    }

    .page-8k8-com-2__list {
        list-style: none;
        padding: 0;
        margin: 40px auto 0 auto;
        max-width: 900px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-8k8-com-2__list-item {
        background-color: #222;
        padding: 25px;
        border-radius: 10px;
        text-align: left;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-left: 5px solid var(--page-8k8-com-2-secondary-color);
        color: var(--page-8k8-com-2-text-color);
        font-size: 1.05em;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-com-2__list-item strong {
        color: var(--page-8k8-com-2-primary-color);
    }

    .page-8k8-com-2__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-2__provider-logo {
        background-color: #222;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
    }

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

    .page-8k8-com-2__provider-image {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        display: block;
    }

    .page-8k8-com-2__faq-section {
        background-color: #1a1a1a;
        padding: 60px 0;
        text-align: center;
        color: var(--page-8k8-com-2-text-color);
    }

    .page-8k8-com-2__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-8k8-com-2__faq-item {
        margin-bottom: 15px;
        border: 1px solid var(--page-8k8-com-2-border-color);
        border-radius: 8px;
        overflow: hidden;
        background-color: #222;
    }

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

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

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

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

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-toggle {
        transform: rotate(45deg); /* Changes + to x (or - if rotated differently) */
    }

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

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

    .page-8k8-com-2__cta-section {
        position: sticky; /* Or fixed, depending on desired behavior */
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        display: flex;
        justify-content: center;
        gap: 15px;
        box-sizing: border-box;
    }

    .page-8k8-com-2__cta-button {
        flex: 1;
        max-width: 200px;
        background-color: var(--page-8k8-com-2-primary-color);
        color: #fff;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        text-align: center;
    }

    .page-8k8-com-2__cta-button--secondary {
        background-color: var(--page-8k8-com-2-secondary-color);
    }

    .page-8k8-com-2__cta-button:hover {
        background-color: #d32f2f;
    }

    .page-8k8-com-2__cta-button--secondary:hover {
        background-color: #e6a200;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-8k8-com-2__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-com-2__hero-subtitle {
            font-size: 1.2em;
        }
        .page-8k8-com-2__game-grid,
        .page-8k8-com-2__promo-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com-2__container {
            padding: 15px;
        }

        .page-8k8-com-2__hero-title {
            font-size: 2em;
        }
        .page-8k8-com-2__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-com-2__promo-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-com-2__section {
            padding: 40px 0;
        }
        .page-8k8-com-2__section-title {
            font-size: 1.8em;
        }
        .page-8k8-com-2__text-content {
            font-size: 1em;
        }
        .page-8k8-com-2__game-grid,
        .page-8k8-com-2__promo-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }
        .page-8k8-com-2__list {
            grid-template-columns: 1fr; /* Single column on mobile */
            margin: 20px auto 0 auto;
            padding: 0 15px; /* Adjust padding for list container */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-8k8-com-2__list-item {
            padding: 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-8k8-com-2__providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        }
        .page-8k8-com-2__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-8k8-com-2__faq-answer {
            padding: 0 15px;
            font-size: 0.9em;
        }
        .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-answer {
            padding: 15px !important;
        }
        .page-8k8-com-2__cta-section {
            flex-direction: column;
            gap: 10px;
            padding: 10px 15px;
        }
        .page-8k8-com-2__cta-button {
            max-width: 100%;
            font-size: 1em;
        }
        /* Image responsiveness */
        .page-8k8-com-2__hero-image,
        .page-8k8-com-2__game-image,
        .page-8k8-com-2__promo-image,
        .page-8k8-com-2__provider-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-2__game-card,
        .page-8k8-com-2__promo-card,
        .page-8k8-com-2__provider-logo {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-2__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-com-2__hero-subtitle {
            font-size: 0.9em;
        }
        .page-8k8-com-2__section-title {
            font-size: 1.6em;
        }
    }
  