
    :root {
      --page-8acb__primary-color: #007bff; /* Blue */
      --page-8acb__secondary-color: #6c757d; /* Grey */
      --page-8acb__accent-color: #ffc107; /* Yellow */
      --page-8acb__background-dark: #1a1a2e; /* Dark background */
      --page-8acb__background-light: #f8f9fa; /* Light background */
      --page-8acb__text-dark: #343a40; /* Dark text */
      --page-8acb__text-light: #ffffff; /* Light text */
      --page-8acb__border-color: #dee2e6; /* Border */
      --page-8acb__header-offset: 122px; /* Default offset if not provided by shared.css */
    }

    .page-8acb {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8acb__text-dark);
      background-color: var(--page-8acb__background-light);
      /* Use padding-top on the main container only if shared.css doesn't handle body padding */
      /* If shared.css sets body padding-top, remove this line to avoid double padding */
      padding-top: var(--header-offset, 122px);
    }

    .page-8acb__hero-section,
    .page-8acb__product-section,
    .page-8acb__promotions-section,
    .page-8acb__game-providers-section,
    .page-8acb__payment-methods-section,
    .page-8acb__social-media-section,
    .page-8acb__faq-section {
        padding: 40px 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-8acb__hero-section {
        background-color: var(--page-8acb__background-dark);
        color: var(--page-8acb__text-light);
        text-align: center;
        padding-top: 60px; /* Decorative top padding, assuming body already has padding-top from header */
        padding-bottom: 60px;
        position: relative;
        overflow: hidden;
    }

    .page-8acb__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .page-8acb__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8acb__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-8acb__accent-color);
        word-wrap: break-word;
    }

    .page-8acb__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
    }

    .page-8acb__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8acb__cta-button {
        background-color: var(--page-8acb__primary-color);
        color: var(--page-8acb__text-light);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8acb__cta-button:hover {
        background-color: #0056b3;
    }

    .page-8acb__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-8acb__floating-button {
        background-color: var(--page-8acb__accent-color);
        color: var(--page-8acb__background-dark);
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-8acb__floating-button:hover {
        background-color: #e0a800;
    }

    .page-8acb__section-title {
        font-size: 2.2em;
        color: var(--page-8acb__primary-color);
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
        word-wrap: break-word;
    }

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

    .page-8acb__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8acb__product-card {
        background-color: var(--page-8acb__text-light);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-8acb__product-card:hover {
        transform: translateY(-5px);
    }

    .page-8acb__product-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0f0f0;
    }

    .page-8acb__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .page-8acb__product-content {
        padding: 20px;
    }

    .page-8acb__product-title {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: var(--page-8acb__primary-color);
        word-wrap: break-word;
    }

    .page-8acb__product-description {
        font-size: 0.95em;
        color: var(--page-8acb__secondary-color);
        margin-bottom: 20px;
        word-wrap: break-word;
    }

    .page-8acb__promotion-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8acb__promotion-card {
        background-color: var(--page-8acb__text-light);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .page-8acb__promotion-card:hover {
        transform: translateY(-5px);
    }

    .page-8acb__promotion-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .page-8acb__promotion-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-8acb__promotion-title {
        font-size: 1.4em;
        margin-bottom: 10px;
        color: var(--page-8acb__primary-color);
        word-wrap: break-word;
    }

    .page-8acb__promotion-description {
        font-size: 0.9em;
        color: var(--page-8acb__secondary-color);
        margin-bottom: 15px;
        flex-grow: 1;
        word-wrap: break-word;
    }

    .page-8acb__promotion-button {
        background-color: var(--page-8acb__accent-color);
        color: var(--page-8acb__background-dark);
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9em;
        align-self: flex-start;
    }

    .page-8acb__promotion-button:hover {
        background-color: #e0a800;
    }

    .page-8acb__provider-list,
    .page-8acb__payment-list,
    .page-8acb__social-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        list-style: none;
        padding: 0;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-8acb__provider-item,
    .page-8acb__payment-item,
    .page-8acb__social-item {
        background-color: var(--page-8acb__text-light);
        border: 1px solid var(--page-8acb__border-color);
        border-radius: 8px;
        padding: 15px 25px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        flex: 1 1 auto;
        min-width: 120px;
        max-width: 180px;
        box-sizing: border-box;
    }

    .page-8acb__provider-item:hover,
    .page-8acb__payment-item:hover,
    .page-8acb__social-item:hover {
        transform: translateY(-3px);
    }

    .page-8acb__provider-name,
    .page-8acb__payment-name,
    .page-8acb__social-name {
        font-weight: bold;
        color: var(--page-8acb__primary-color);
        font-size: 1.1em;
        word-wrap: break-word;
    }

    .page-8acb__faq-section {
        background-color: var(--page-8acb__background-light);
    }

    .page-8acb__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8acb__faq-item {
        background-color: var(--page-8acb__text-light);
        border: 1px solid var(--page-8acb__border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8acb__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #e9ecef;
        color: var(--page-8acb__text-dark);
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8acb__faq-question:hover {
        background-color: #dee2e6;
    }

    .page-8acb__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        flex-grow: 1;
        text-align: left;
        pointer-events: none;
        word-wrap: break-word;
    }

    .page-8acb__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .page-8acb__faq-item.active .page-8acb__faq-toggle {
        transform: rotate(45deg);
    }

    .page-8acb__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: var(--page-8acb__text-dark);
    }

    .page-8acb__faq-item.active .page-8acb__faq-answer {
        max-height: 2000px !important;
        padding: 20px !important;
        opacity: 1;
    }

    .page-8acb__faq-answer p {
        margin: 0 0 10px 0;
        word-wrap: break-word;
    }
    .page-8acb__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .page-8acb__hero-title {
            font-size: 2em;
        }

        .page-8acb__hero-description {
            font-size: 1em;
        }

        .page-8acb__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-8acb__cta-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-8acb__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8acb__product-grid,
        .page-8acb__promotion-card-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8acb__product-card,
        .page-8acb__promotion-card {
            margin: 0 auto;
            max-width: 400px;
        }

        .page-8acb__provider-list,
        .page-8acb__payment-list,
        .page-8acb__social-list {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .page-8acb__provider-item,
        .page-8acb__payment-item,
        .page-8acb__social-item {
            width: 100% !important;
            max-width: 300px !important;
            box-sizing: border-box !important;
            padding: 12px 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8acb__product-image,
        .page-8acb__promotion-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8acb__product-image-wrapper {
             width: 100% !important;
             max-width: 100% !important;
             overflow: hidden !important;
             box-sizing: border-box !important;
             height: 180px;
        }

        .page-8acb__faq-question {
            padding: 12px 15px;
        }

        .page-8acb__faq-question h3 {
            font-size: 1em;
        }

        .page-8acb__faq-toggle {
            font-size: 1.3em;
        }

        .page-8acb__faq-answer {
            padding: 0 15px;
        }
        .page-8acb__faq-item.active .page-8acb__faq-answer {
            padding: 15px !important;
        }

        .page-8acb__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-8acb__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }

    /* Ensure all images are responsive */
    .page-8acb img {
        max-width: 100%;
        height: auto;
        display: block;
    }
  