
    .page-acb8vip {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background for betting site */
        line-height: 1.6;
    }

    .page-acb8vip__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .page-acb8vip__section-title {
        font-size: 2.5em;
        color: #ffcc00; /* Gold accent */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .page-acb8vip__subsection-title {
        font-size: 1.8em;
        color: #fff;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-acb8vip__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: center;
        color: #e0e0e0;
    }

    .page-acb8vip__btn {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        cursor: pointer;
    }

    .page-acb8vip__btn--primary {
        background-color: #ffcc00; /* Gold */
        color: #1a1a2e;
        border: 2px solid #ffcc00;
    }

    .page-acb8vip__btn--primary:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-acb8vip__btn--secondary {
        background-color: transparent;
        color: #ffcc00;
        border: 2px solid #ffcc00;
    }

    .page-acb8vip__btn--secondary:hover {
        background-color: #ffcc00;
        color: #1a1a2e;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-acb8vip__hero-section {
        position: relative;
        height: 600px; /* Adjust height as needed */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, relying on body for header offset */
        box-sizing: border-box;
    }

    .page-acb8vip__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .page-acb8vip__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 2;
    }

    .page-acb8vip__hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 20px;
    }

    .page-acb8vip__hero-title {
        font-size: 3.5em;
        color: #ffcc00;
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-acb8vip__hero-subtitle {
        font-size: 1.5em;
        color: #fff;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

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

    /* About Section */
    .page-acb8vip__about-section {
        padding: 60px 0;
        background-color: #1f1f3a;
    }

    .page-acb8vip__image-wrapper {
        margin-bottom: 20px;
    }

    .page-acb8vip__image-wrapper--center {
        display: flex;
        justify-content: center;
    }

    .page-acb8vip__content-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Games Section */
    .page-acb8vip__games-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-acb8vip__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-acb8vip__game-item {
        background-color: #2b2b4a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-acb8vip__game-item:hover {
        transform: translateY(-8px);
    }

    .page-acb8vip__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        margin-bottom: 15px;
    }

    .page-acb8vip__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-acb8vip__game-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-acb8vip__game-description {
        font-size: 1em;
        color: #e0e0e0;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-acb8vip__promotions-section {
        padding: 60px 0;
        background-color: #1f1f3a;
    }

    .page-acb8vip__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .page-acb8vip__promo-item {
        background-color: #2b2b4a;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-acb8vip__promo-image-wrapper {
        width: 100%;
        height: 220px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .page-acb8vip__promo-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-acb8vip__promo-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-acb8vip__promo-description {
        font-size: 1em;
        color: #e0e0e0;
        padding: 0 15px;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
    }

    .page-acb8vip__button-container {
        text-align: center;
    }

    /* Why Choose Section */
    .page-acb8vip__why-choose-section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-acb8vip__feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .page-acb8vip__feature-item {
        background-color: #2b2b4a;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-acb8vip__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-acb8vip__feature-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-acb8vip__feature-description {
        font-size: 1em;
        color: #e0e0e0;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
    }

    /* Payment & Providers Section */
    .page-acb8vip__payment-providers-section {
        padding: 60px 0;
        background-color: #1f1f3a;
    }

    .page-acb8vip__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjusted for more logos */
        gap: 20px;
        justify-items: center;
        margin-top: 30px;
    }

    .page-acb8vip__logo-item {
        background-color: #333355;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px; /* Fixed height for consistency */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
        box-sizing: border-box; /* Crucial for list item responsive */
        width: 100%; /* Ensure it takes full grid column width */
    }

    .page-acb8vip__logo-item:hover {
        transform: translateY(-5px);
    }

    .page-acb8vip__logo-image {
        max-width: 100%;
        max-height: 70px; /* Max height for logos */
        object-fit: contain;
        display: block;
    }

    /* FAQ Section */
    .page-acb8vip__faq-section {
        padding: 60px 0 100px; /* Extra padding for floating buttons */
        background-color: #1a1a2e;
    }

    .page-acb8vip__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-acb8vip__faq-item {
        background-color: #2b2b4a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Crucial for list item responsive */
    }

    .page-acb8vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333355;
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-acb8vip__faq-question:hover {
        background-color: #444466;
    }

    .page-acb8vip__faq-q-text {
        margin: 0;
        font-size: 1.2em;
        color: #fff;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-acb8vip__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-acb8vip__faq-item.active .page-acb8vip__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-acb8vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #2b2b4a;
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-acb8vip__faq-item.active .page-acb8vip__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-acb8vip__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
        font-size: 1em;
    }

    /* Floating Register/Login Buttons */
    .page-acb8vip__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-acb8vip__floating-btn {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
        text-align: center;
        white-space: nowrap; /* Prevent text wrapping */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-acb8vip__floating-btn--register {
        background-color: #ffcc00;
        color: #1a1a2e;
        border: 2px solid #ffcc00;
    }

    .page-acb8vip__floating-btn--register:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }

    .page-acb8vip__floating-btn--login {
        background-color: #4a4a7a;
        color: #ffcc00;
        border: 2px solid #4a4a7a;
    }

    .page-acb8vip__floating-btn--login:hover {
        background-color: #5a5a8a;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-acb8vip__hero-title {
            font-size: 3em;
        }
        .page-acb8vip__hero-subtitle {
            font-size: 1.3em;
        }
        .page-acb8vip__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-acb8vip__hero-section {
            height: 500px;
        }
        .page-acb8vip__hero-title {
            font-size: 2.5em;
        }
        .page-acb8vip__hero-subtitle {
            font-size: 1.2em;
        }
        .page-acb8vip__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-acb8vip__btn {
            width: 100%;
            max-width: 250px;
            margin: 0 auto;
        }

        .page-acb8vip__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-acb8vip__subsection-title {
            font-size: 1.5em;
        }
        .page-acb8vip__text-content {
            font-size: 1em;
        }

        /* List item responsive - all grid items */
        .page-acb8vip__game-grid,
        .page-acb8vip__promo-grid,
        .page-acb8vip__feature-grid,
        .page-acb8vip__logo-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
        }

        .page-acb8vip__game-item,
        .page-acb8vip__promo-item,
        .page-acb8vip__feature-item,
        .page-acb8vip__logo-item,
        .page-acb8vip__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* Specific padding adjustments for list items */
        .page-acb8vip__game-item,
        .page-acb8vip__promo-item,
        .page-acb8vip__feature-item {
            padding: 20px 15px;
        }

        .page-acb8vip__game-description,
        .page-acb8vip__promo-description,
        .page-acb8vip__feature-description {
            padding: 0 5px;
            word-break: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-acb8vip__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-acb8vip__faq-q-text {
            font-size: 1.1em;
        }
        .page-acb8vip__faq-answer {
            padding: 15px 20px !important;
            word-break: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-acb8vip__faq-answer p {
            font-size: 0.95em;
        }

        .page-acb8vip__floating-buttons {
            width: calc(100% - 30px); /* Account for some padding */
            bottom: 15px;
            gap: 10px;
        }
        .page-acb8vip__floating-btn {
            flex: 1;
            font-size: 1em;
            padding: 10px 15px;
        }

        /* Image responsiveness */
        .page-acb8vip__content-image,
        .page-acb8vip__game-image,
        .page-acb8vip__promo-image,
        .page-acb8vip__feature-icon,
        .page-acb8vip__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-acb8vip__game-image-wrapper,
        .page-acb8vip__promo-image-wrapper,
        .page-acb8vip__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
            height: auto; /* Let height adjust for images */
            min-height: 100px; /* Ensure some minimum height for logos */
        }
        .page-acb8vip__game-image-wrapper {
            height: 180px; /* Adjust height for mobile game images */
        }
        .page-acb8vip__promo-image-wrapper {
            height: 180px; /* Adjust height for mobile promo images */
        }
    }

    @media (max-width: 480px) {
        .page-acb8vip__hero-section {
            height: 400px;
        }
        .page-acb8vip__hero-title {
            font-size: 2em;
        }
        .page-acb8vip__hero-subtitle {
            font-size: 1em;
        }
        .page-acb8vip__section-title {
            font-size: 1.5em;
        }
        .page-acb8vip__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-acb8vip__faq-q-text {
            font-size: 1em;
        }
        .page-acb8vip__faq-answer {
            padding: 12px 15px !important;
        }
        .page-acb8vip__floating-buttons {
            bottom: 10px;
            gap: 8px;
            width: calc(100% - 20px);
        }
        .page-acb8vip__floating-btn {
            font-size: 0.9em;
            padding: 8px 12px;
        }
    }
  