
        .page-taixiu {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .page-taixiu__hero-section {
            position: relative;
            padding-top: 10px; /* Adjusted to avoid double padding with body */
            padding-bottom: 40px;
            text-align: center;
            color: #ffffff;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
        }

        .page-taixiu__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 400px; /* Limit height for hero image */
        }

        .page-taixiu__hero-content {
            padding: 20px 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-taixiu__hero-title {
            font-size: clamp(1.8em, 4vw, 2.8em);
            font-weight: 700;
            color: #ffcc00;
            margin-bottom: 15px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .page-taixiu__hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: #f0f0f0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-taixiu__btn-primary {
            display: inline-block;
            background-color: #ffcc00;
            color: #1a1a1a;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-taixiu__section {
            padding: 50px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
            width: 100%;
        }

        .page-taixiu__section-title {
            font-size: 2.2em;
            color: #ffcc00;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.3;
        }

        .page-taixiu__text-block {
            font-size: 1.05em;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #e0e0e0;
            text-align: left;
        }

        .page-taixiu__text-block strong {
            color: #ffcc00;
        }

        .page-taixiu__list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .page-taixiu__list-item {
            background-color: #1a1a1a;
            border-left: 4px solid #ffcc00;
            padding: 15px 20px;
            margin-bottom: 10px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            font-size: 1.0em;
            color: #f0f0f0;
            box-sizing: border-box;
        }

        .page-taixiu__list-item::before {
            content: '✓';
            color: #ffcc00;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2em;
        }

        .page-taixiu__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .page-taixiu__game-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            transition: transform 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
        }

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

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

        .page-taixiu__game-content {
            padding: 20px;
        }

        .page-taixiu__game-title {
            font-size: 1.4em;
            color: #ffcc00;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-taixiu__game-description {
            font-size: 0.95em;
            color: #cccccc;
            margin-bottom: 20px;
        }

        .page-taixiu__providers-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .page-taixiu__provider-logo {
            width: 100px;
            height: 100px;
            object-fit: contain;
            filter: brightness(0) invert(1); /* Ensure logos are visible on dark background */
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .page-taixiu__provider-logo:hover {
            opacity: 1;
        }

        .page-taixiu__faq-section {
            background-color: #0d0d0d;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
            width: 100%;
        }

        .page-taixiu__faq-item {
            background-color: #1a1a1a;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            text-align: left;
        }

        .page-taixiu__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: #2a2a2a;
            color: #ffcc00;
            font-size: 1.15em;
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-taixiu__faq-question h3 {
            margin: 0;
            color: inherit;
            pointer-events: none;
            flex-grow: 1;
        }

        .page-taixiu__faq-question:hover {
            background-color: #3a3a3a;
        }

        .page-taixiu__faq-toggle {
            font-size: 1.8em;
            font-weight: bold;
            color: #ffcc00;
            margin-left: 15px;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-taixiu__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            color: #e0e0e0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            font-size: 1.0em;
            line-height: 1.6;
        }

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

        .page-taixiu__cta-section {
            background-color: #1a1a1a;
            padding: 60px 20px;
            text-align: center;
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
        }

        .page-taixiu__cta-text {
            font-size: 1.2em;
            margin-bottom: 30px;
            color: #f0f0f0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-taixiu__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffcc00;
            color: #1a1a1a;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
            z-index: 1000;
            transition: transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 250px; /* Limit width for floating button */
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
            box-sizing: border-box;
        }

        .page-taixiu__floating-button:hover {
            transform: translateY(-5px) scale(1.05);
        }

        /* General image styling to prevent overflow */
        .page-taixiu img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-taixiu__hero-section {
                padding-top: 10px !important;
                padding-bottom: 20px;
            }

            .page-taixiu__hero-title {
                font-size: clamp(1.5em, 6vw, 2.2em);
                padding: 0 10px;
            }

            .page-taixiu__hero-description {
                font-size: 1em;
                padding: 0 10px;
            }

            .page-taixiu__btn-primary {
                width: 90% !important;
                max-width: 90% !important;
                font-size: 1em;
                padding: 10px 20px;
                margin: 0 auto;
            }

            .page-taixiu__section {
                padding: 30px 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-taixiu__section-title {
                font-size: 1.8em;
                margin-bottom: 20px;
                padding: 0 10px;
            }

            .page-taixiu__text-block {
                font-size: 0.95em;
                padding: 0 10px;
            }

            .page-taixiu__list-item {
                font-size: 0.9em;
                padding: 12px 15px;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }

            .page-taixiu__games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 10px;
            }

            .page-taixiu__game-card {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-taixiu__game-title {
                font-size: 1.2em;
            }

            .page-taixiu__game-description {
                font-size: 0.85em;
            }

            .page-taixiu__providers-grid {
                gap: 20px;
                padding: 0 10px;
            }

            .page-taixiu__provider-logo {
                width: 80px;
                height: 80px;
            }

            .page-taixiu__faq-section {
                padding: 40px 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-taixiu__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }

            .page-taixiu__faq-answer {
                font-size: 0.9em;
                padding: 0 20px;
            }

            .page-taixiu__faq-item.active .page-taixiu__faq-answer {
                padding: 15px 20px !important;
            }

            .page-taixiu__cta-section {
                padding: 40px 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-taixiu__cta-text {
                font-size: 1em;
                padding: 0 10px;
            }

            .page-taixiu__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 0.95em;
                max-width: 200px;
                width: auto;
            }

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

            .page-taixiu__hero-image {
                max-height: 250px;
            }

            .page-taixiu__game-image {
                height: 150px;
            }

            /* Button container responsiveness */
            .page-taixiu__button-group {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 15px;
            }
        }
    