
    .page-tai-xiu-88 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
    }

    .page-tai-xiu-88__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-tai-xiu-88__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-tai-xiu-88__section-title {
        font-size: 2.8em;
        margin-bottom: 40px;
        color: #ffcc00; /* Gold accent */
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-tai-xiu-88__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #e0e0e0;
    }

    .page-tai-xiu-88__cta-button {
        display: inline-block;
        background-color: #ffcc00; /* Gold */
        color: #1a1a1a;
        padding: 15px 35px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

    .page-tai-xiu-88__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    .page-tai-xiu-88__cta-button--large {
        padding: 18px 40px;
        font-size: 1.4em;
    }

    /* Hero Section */
    .page-tai-xiu-88__hero-section {
        position: relative;
        height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, assuming body handles header offset */
    }

    .page-tai-xiu-88__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

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

    .page-tai-xiu-88__hero-content {
        position: relative;
        z-index: 3;
        color: #ffffff;
        max-width: 900px;
        padding: 20px;
    }

    .page-tai-xiu-88__hero-title {
        font-size: 4em;
        margin-bottom: 20px;
        color: #ffcc00;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    }

    .page-tai-xiu-88__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 40px;
        color: #f0f0f0;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    }

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

    .page-tai-xiu-88__button {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        text-align: center;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        min-width: 120px;
    }

    .page-tai-xiu-88__button--register {
        background-color: #ffcc00;
        color: #1a1a1a;
    }

    .page-tai-xiu-88__button--register:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-tai-xiu-88__button--login {
        background-color: #007bff;
        color: #ffffff;
    }

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

    /* Game Categories */
    .page-tai-xiu-88__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-tai-xiu-88__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
    }

    .page-tai-xiu-88__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-tai-xiu-88__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-tai-xiu-88__game-title {
        font-size: 1.8em;
        color: #ffcc00;
        padding: 15px 20px 5px;
        margin: 0;
    }

    .page-tai-xiu-88__game-description {
        font-size: 1em;
        color: #e0e0e0;
        padding: 0 20px 20px;
        margin: 0;
    }

    /* Promotions Section */
    .page-tai-xiu-88__promotions-section {
        background-color: #222222;
    }

    .page-tai-xiu-88__promotion-card {
        display: flex;
        align-items: center;
        background-color: #2a2a2a;
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        margin-bottom: 30px;
        overflow: hidden;
        text-align: left;
    }

    .page-tai-xiu-88__promotion-card:last-child {
        margin-bottom: 0;
    }

    .page-tai-xiu-88__promotion-image {
        width: 40%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .page-tai-xiu-88__promotion-content {
        width: 60%;
        padding: 30px;
    }

    .page-tai-xiu-88__promotion-title {
        font-size: 2em;
        color: #ffcc00;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .page-tai-xiu-88__promotion-description {
        font-size: 1.1em;
        color: #e0e0e0;
    }

    /* Payment Methods & Providers */
    .page-tai-xiu-88__payment-methods-list,
    .page-tai-xiu-88__provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .page-tai-xiu-88__payment-item,
    .page-tai-xiu-88__provider-item {
        background-color: #2a2a2a;
        color: #ffcc00;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-sizing: border-box;
        flex-basis: calc(25% - 20px); /* 4 items per row */
        min-width: 180px;
    }

    .page-tai-xiu-88__payment-item:hover,
    .page-tai-xiu-88__provider-item:hover {
        background-color: #3a3a3a;
        transform: translateY(-5px);
    }

    .page-tai-xiu-88__payment-image,
    .page-tai-xiu-88__provider-image {
        margin-top: 40px;
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    /* Why Choose Us Section */
    .page-tai-xiu-88__why-choose-section {
        background-color: #1a1a1a;
    }

    .page-tai-xiu-88__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-tai-xiu-88__benefit-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        padding: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-tai-xiu-88__benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-tai-xiu-88__benefit-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .page-tai-xiu-88__benefit-title {
        font-size: 1.8em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-tai-xiu-88__benefit-description {
        font-size: 1em;
        color: #e0e0e0;
    }

    /* FAQ Section */
    .page-tai-xiu-88__faq-section {
        background-color: #222222;
    }

    .page-tai-xiu-88__faq-list {
        max-width: 900px;
        margin: 40px auto 0;
        text-align: left;
    }

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

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

    .page-tai-xiu-88__faq-question:hover {
        background-color: #444444;
    }

    .page-tai-xiu-88__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: inherit;
        pointer-events: none;
    }

    .page-tai-xiu-88__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .page-tai-xiu-88__faq-item.active .page-tai-xiu-88__faq-toggle {
        transform: rotate(45deg);
    }

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

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

    .page-tai-xiu-88__faq-answer p {
        margin: 0;
        font-size: 1.05em;
        line-height: 1.8;
    }

    /* Final Call to Action */
    .page-tai-xiu-88__cta-final {
        padding: 80px 0;
        background: linear-gradient(135deg, #1a1a1a, #333333);
    }

    .page-tai-xiu-88__cta-final-content {
        max-width: 800px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-tai-xiu-88__hero-title {
            font-size: 3.5em;
        }
        .page-tai-xiu-88__hero-subtitle {
            font-size: 1.3em;
        }
        .page-tai-xiu-88__section-title {
            font-size: 2.5em;
        }
        .page-tai-xiu-88__promotion-image {
            height: 200px;
        }
        .page-tai-xiu-88__promotion-title {
            font-size: 1.8em;
        }
        .page-tai-xiu-88__payment-item,
        .page-tai-xiu-88__provider-item {
            flex-basis: calc(33.333% - 20px); /* 3 items per row */
        }
    }

    @media (max-width: 768px) {
        .page-tai-xiu-88__container {
            padding: 15px;
        }
        .page-tai-xiu-88__section {
            padding: 40px 0;
        }
        .page-tai-xiu-88__hero-section {
            height: 500px;
        }
        .page-tai-xiu-88__hero-title {
            font-size: 2.5em;
        }
        .page-tai-xiu-88__hero-subtitle {
            font-size: 1.1em;
        }
        .page-tai-xiu-88__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-tai-xiu-88__cta-button--large {
            padding: 15px 30px;
            font-size: 1.2em;
        }
        .page-tai-xiu-88__section-title {
            font-size: 2em;
        }
        .page-tai-xiu-88__text-content {
            font-size: 1em;
        }

        /* Floating Buttons */
        .page-tai-xiu-88__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-tai-xiu-88__button {
            padding: 10px 20px;
            font-size: 14px;
            min-width: 100px;
        }

        /* Game Categories */
        .page-tai-xiu-88__game-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-tai-xiu-88__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin: 0 auto;
        }
        .page-tai-xiu-88__game-title {
            font-size: 1.5em;
        }

        /* Promotions */
        .page-tai-xiu-88__promotion-card {
            flex-direction: column;
        }
        .page-tai-xiu-88__promotion-image {
            width: 100%;
            height: 200px;
        }
        .page-tai-xiu-88__promotion-content {
            width: 100%;
            padding: 20px;
        }
        .page-tai-xiu-88__promotion-title {
            font-size: 1.5em;
        }

        /* Payment & Providers */
        .page-tai-xiu-88__payment-methods-list,
        .page-tai-xiu-88__provider-list {
            flex-direction: column;
            gap: 15px;
            padding: 0;
        }
        .page-tai-xiu-88__payment-item,
        .page-tai-xiu-88__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 12px 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            flex-basis: auto; /* Remove fixed basis */
        }
        .page-tai-xiu-88__payment-methods-list,
        .page-tai-xiu-88__provider-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            justify-content: center;
        }
        .page-tai-xiu-88__payment-image,
        .page-tai-xiu-88__provider-image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Choose Us */
        .page-tai-xiu-88__benefits-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-tai-xiu-88__benefit-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin: 0 auto;
        }
        .page-tai-xiu-88__benefit-image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* FAQ */
        .page-tai-xiu-88__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-tai-xiu-88__faq-question h3 {
            font-size: 1.1em;
        }
        .page-tai-xiu-88__faq-answer {
            padding: 0 20px;
        }
        .page-tai-xiu-88__faq-item.active .page-tai-xiu-88__faq-answer {
            padding: 15px 20px !important;
        }
        .page-tai-xiu-88__faq-answer p {
            font-size: 0.95em;
        }
    }

    @media (max-width: 480px) {
        .page-tai-xiu-88__hero-section {
            height: 400px;
        }
        .page-tai-xiu-88__hero-title {
            font-size: 2em;
        }
        .page-tai-xiu-88__hero-subtitle {
            font-size: 1em;
        }
        .page-tai-xiu-88__section-title {
            font-size: 1.8em;
        }
    }
  