
    /* Global styles for the page container, fallback for header offset */
    .page-8k8-4-2 {
        padding-top: var(--header-offset, 122px); /* Fallback for header offset if body padding is not applied by shared.css */
        color: #e0e0e0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background for betting theme */
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* Hero Section */
    .page-8k8-4-2__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Responsive height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: #000;
        padding: 10px 20px 40px; /* Small padding-top as body already handles header offset */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-8k8-4-2__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6; /* Slightly transparent background */
        z-index: 1;
    }

    .page-8k8-4-2__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        color: #fff;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-8k8-4-2__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #ffcc00; /* Gold color for emphasis */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-4-2__cta-button {
        display: inline-block;
        background-color: #ffcc00; /* Gold button */
        color: #1a1a1a;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none; /* Ensure it looks like a button */
        cursor: pointer; /* Indicate it's clickable, even without a link */
    }

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

    /* Section Styling */
    .page-8k8-4-2__section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-8k8-4-2__section--dark {
        background-color: #222;
    }

    .page-8k8-4-2__section--light {
        background-color: #2a2a2a;
    }

    .page-8k8-4-2__section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffcc00;
        position: relative;
        padding-bottom: 10px;
    }

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

    .page-8k8-4-2__section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #ccc;
    }

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

    .page-8k8-4-2__feature-item {
        background-color: #333;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-4-2__feature-item:hover {
        transform: translateY(-5px);
        background-color: #444;
    }

    .page-8k8-4-2__feature-icon {
        width: 250px; /* Min size */
        height: 180px; /* Min size */
        object-fit: cover;
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .page-8k8-4-2__feature-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

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

    /* Promotions Section */
    .page-8k8-4-2__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-4-2__promo-card {
        background-color: #333;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-4-2__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-4-2__promo-image {
        width: 100%;
        height: 220px; /* Fixed height for consistency */
        object-fit: cover;
    }

    .page-8k8-4-2__promo-content {
        padding: 25px;
    }

    .page-8k8-4-2__promo-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-8k8-4-2__promo-description {
        font-size: 1em;
        color: #e0e0e0;
        margin-bottom: 20px;
    }

    .page-8k8-4-2__promo-link {
        display: inline-block;
        background-color: #007bff; /* Blue for external link */
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.95em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8k8-4-2__promo-link:hover {
        background-color: #0056b3;
    }

    /* Payment Methods */
    .page-8k8-4-2__payment-methods-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-4-2__payment-method-item {
        background-color: #333;
        padding: 15px 25px;
        border-radius: 8px;
        color: #fff;
        font-size: 1.1em;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-8k8-4-2__payment-icon {
        width: 200px; /* Min size */
        height: 100px; /* Min size */
        object-fit: contain;
    }

    /* Game Providers */
    .page-8k8-4-2__providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-4-2__provider-item {
        background-color: #333;
        padding: 10px 20px;
        border-radius: 8px;
        color: #fff;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-4-2__faq-section {
        background-color: #222;
        padding: 60px 20px;
        max-width: 1000px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-8k8-4-2__faq-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: #ffcc00;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }

    .page-8k8-4-2__faq-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #ffcc00;
    }

    .page-8k8-4-2__faq-item {
        margin-bottom: 15px;
        border: 1px solid #444;
        border-radius: 8px;
        overflow: hidden;
        background-color: #333;
        box-sizing: border-box;
    }

    .page-8k8-4-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #444;
        color: #fff;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-8k8-4-2__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-4-2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        line-height: 1;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-toggle {
        transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-4-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        color: #e0e0e0;
        background-color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-4-2__hero-section {
            height: 70vh;
            padding-bottom: 30px;
        }

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

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

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

        .page-8k8-4-2__section {
            padding: 40px 15px;
        }

        .page-8k8-4-2__section-title {
            font-size: 2em;
        }

        .page-8k8-4-2__section-description {
            font-size: 0.95em;
        }

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

        .page-8k8-4-2__feature-item,
        .page-8k8-4-2__promo-card,
        .page-8k8-4-2__payment-method-item,
        .page-8k8-4-2__provider-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; /* Adjust padding for mobile */
            padding-right: 15px !important; /* Adjust padding for mobile */
        }

        .page-8k8-4-2__payment-methods-grid,
        .page-8k8-4-2__providers-list {
            flex-direction: column;
            align-items: center;
        }

        .page-8k8-4-2__payment-method-item,
        .page-8k8-4-2__provider-item {
            padding: 12px 20px;
            font-size: 1em;
            width: calc(100% - 30px); /* Account for section padding */
        }

        .page-8k8-4-2__faq-section {
            padding: 40px 15px;
        }

        .page-8k8-4-2__faq-question {
            padding: 15px 18px;
        }

        .page-8k8-4-2__faq-question h3 {
            font-size: 1.1em;
        }

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

        .page-8k8-4-2__faq-answer {
            padding: 0 18px;
        }

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

        /* Ensure images are responsive on mobile */
        .page-8k8-4-2__feature-icon,
        .page-8k8-4-2__promo-image,
        .page-8k8-4-2__payment-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        
        .page-8k8-4-2__promo-image {
             height: 180px; /* Adjust height for smaller screens */
        }
    }

    @media (max-width: 480px) {
        .page-8k8-4-2__hero-section {
            height: 80vh;
        }

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

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

        .page-8k8-4-2__cta-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

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

    /* General responsive image styles */
    .page-8k8-4-2 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }
  