
    body {
        font-family: 'Arial', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #1a1a1a;
        color: #f0f0f0;
        line-height: 1.6;
    }

    .page-a-888 {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        overflow-x: hidden;
    }

    .page-a-888__section {
        padding: 40px 0;
        text-align: center;
    }

    .page-a-888__section--dark {
        background-color: #222;
    }

    .page-a-888__section-title {
        font-size: 2.5em;
        color: #FFD700; /* Gold */
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-a-888__section-subtitle {
        font-size: 1.2em;
        color: #ccc;
        margin-bottom: 40px;
    }

    /* Hero Section */
    .page-a-888__hero-section {
        position: relative;
        text-align: center;
        color: #fff;
        padding-top: 10px; /* Small top padding as per instruction */
        padding-bottom: 60px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:casino,online_betting,vietnam]');
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 500px;
    }

    .page-a-888__hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-a-888__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        color: #FFD700; /* Gold */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        text-align: center;
    }

    .page-a-888__hero-description {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: #f0f0f0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-a-888__cta-button {
        display: inline-block;
        background-color: #007bff; /* Blue */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-a-888__cta-button:hover {
        background-color: #0056b3;
    }

    /* Floating Buttons */
    .page-a-888__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-a-888__button {
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, background-color 0.2s ease;
        min-width: 120px;
    }

    .page-a-888__button--register {
        background-color: #FFD700; /* Gold */
        color: #333;
    }

    .page-a-888__button--register:hover {
        background-color: #e6c200;
        transform: translateY(-2px);
    }

    .page-a-888__button--login {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-a-888__button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Game Categories */
    .page-a-888__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-a-888__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 20px; /* Space for title */
    }

    .page-a-888__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
    }

    .page-a-888__game-card-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex; /* For centering image */
        justify-content: center;
        align-items: center;
        height: 200px; /* Fixed height for consistency */
    }

    .page-a-888__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .page-a-888__game-card-title {
        font-size: 1.5em;
        color: #FFD700; /* Gold */
        margin-top: 20px;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Why Choose Us */
    .page-a-888__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

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

    .page-a-888__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-a-888__feature-title {
        font-size: 1.8em;
        color: #FFD700; /* Gold */
        margin-bottom: 15px;
    }

    .page-a-888__feature-description {
        color: #ccc;
        font-size: 1.1em;
    }

    /* Promotions */
    .page-a-888__promotion-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        margin-bottom: 30px;
        text-align: left;
    }

    .page-a-888__promotion-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-a-888__promotion-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .page-a-888__promotion-content {
        padding: 25px;
    }

    .page-a-888__promotion-title {
        font-size: 2em;
        color: #FFD700; /* Gold */
        margin-bottom: 10px;
    }

    .page-a-888__promotion-description {
        color: #ccc;
        font-size: 1.1em;
        margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-a-888__faq-container {
        max-width: 800px;
        margin: 40px auto;
        text-align: left;
    }

    .page-a-888__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-a-888__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #333;
        color: #f0f0f0;
        cursor: pointer;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-a-888__faq-question:hover {
        background-color: #444;
    }

    .page-a-888__faq-question h3 {
        margin: 0;
        color: #FFD700; /* Gold */
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

    .page-a-888__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        color: #FFD700; /* Gold */
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-a-888__faq-item.active .page-a-888__faq-toggle {
        transform: rotate(45deg);
    }

    .page-a-888__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        color: #ccc;
        background-color: #2a2a2a;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1.1em;
    }

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

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-a-888__hero-title {
            font-size: 2.5em;
        }

        .page-a-888__hero-description {
            font-size: 1.1em;
        }

        .page-a-888__section-title {
            font-size: 2em;
        }

        .page-a-888__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Side-by-side on mobile */
            width: calc(100% - 30px); /* Take up most of the width */
            justify-content: space-around;
            left: 15px; /* Center them better */
        }
        .page-a-888__button {
            padding: 10px 20px;
            font-size: 15px;
            min-width: unset;
            flex-grow: 1;
        }

        .page-a-888__game-grid {
            grid-template-columns: 1fr;
        }

        .page-a-888__features-list {
            grid-template-columns: 1fr;
        }

        /* List item responsive for all list-like structures */
        .page-a-888__feature-item, .page-a-888__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-a-888__game-card-image-wrapper {
            height: 180px;
        }

        .page-a-888__game-card-title {
            font-size: 1.3em;
        }

        .page-a-888__promotion-title {
            font-size: 1.5em;
        }

        .page-a-888__promotion-description {
            font-size: 1em;
        }

        .page-a-888__faq-question {
            font-size: 1.1em;
            padding: 12px 15px;
        }

        .page-a-888__faq-question h3 {
            font-size: 1em;
        }

        .page-a-888__faq-toggle {
            font-size: 1.3em;
        }

        .page-a-888__faq-answer {
            padding: 15px !important;
            font-size: 0.95em;
        }
    }

    /* Ensure all images are responsive */
    .page-a-888 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-a-888__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
  