
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-color-dark: #333333;
            --text-color-light: #ffffff;
            --background-light: #f8f9fa;
            --background-white: #ffffff;
            --border-color: #e0e0e0;
        }

        .page-hi88vip {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color-dark);
            background-color: var(--background-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-bottom: 80px; /* Space for floating button */
        }

        .page-hi88vip__hero-section {
            width: 100%;
            background-color: var(--primary-color);
            color: var(--text-color-light);
            text-align: center;
            padding-top: 10px; /* Small top padding, body handles header offset */
            padding-bottom: 40px;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-hi88vip__hero-image-wrapper {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            box-sizing: border-box;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .page-hi88vip__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .page-hi88vip__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .page-hi88vip__hero-title {
            font-size: clamp(2em, 5vw, 3.5em);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-color-light);
        }

        .page-hi88vip__hero-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-hi88vip__cta-button {
            display: inline-block;
            background-color: #ffcc00; /* Bright accent for CTA */
            color: var(--text-color-dark);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-hi88vip__floating-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff4d4d; /* Eye-catching red */
            color: var(--text-color-light);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1em;
            z-index: 1000;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: background-color 0.3s ease, transform 0.3s ease;
            white-space: nowrap; /* Prevent text wrap on desktop */
            max-width: 90%; /* Max width for mobile */
            box-sizing: border-box;
            text-align: center;
        }

        .page-hi88vip__floating-button:hover {
            background-color: #e60000;
            transform: translateX(-50%) translateY(-3px);
        }

        .page-hi88vip__section {
            width: 100%;
            max-width: 1200px;
            padding: 50px 20px;
            margin: 20px 0;
            background-color: var(--background-white);
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
            text-align: left;
        }

        .page-hi88vip__section-title {
            font-size: 2.2em;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
        }

        .page-hi88vip__content-text {
            font-size: 1.05em;
            line-height: 1.7;
            margin-bottom: 20px;
            color: var(--text-color-dark);
        }

        .page-hi88vip__image-container {
            width: 100%;
            max-width: 800px;
            margin: 30px auto;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            box-sizing: border-box;
        }

        .page-hi88vip__responsive-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .page-hi88vip__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
            justify-content: center;
        }

        .page-hi88vip__game-card {
            background-color: var(--background-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            padding-bottom: 20px;
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        .page-hi88vip__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
        }

        .page-hi88vip__game-image-wrapper {
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            position: relative;
            overflow: hidden;
            margin-bottom: 15px;
        }

        .page-hi88vip__game-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .page-hi88vip__game-title {
            font-size: 1.4em;
            color: var(--primary-color);
            margin: 0 15px 10px;
            font-weight: 600;
        }

        .page-hi88vip__game-description {
            font-size: 0.95em;
            color: var(--secondary-color);
            padding: 0 15px;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-hi88vip__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-hi88vip__list-item {
            background-color: var(--background-white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.05em;
            color: var(--text-color-dark);
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
            box-sizing: border-box;
            word-wrap: break-word;
        }

        .page-hi88vip__list-item::before {
            content: '✅';
            margin-right: 10px;
            font-size: 1.2em;
        }

        .page-hi88vip__faq-item {
            background-color: var(--background-white);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
        }

        .page-hi88vip__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            font-size: 1.15em;
            font-weight: 600;
            color: var(--primary-color);
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-hi88vip__faq-question h3 {
            margin: 0;
            pointer-events: none;
            flex-grow: 1;
            color: var(--primary-color);
        }

        .page-hi88vip__faq-question:hover {
            background-color: var(--background-light);
        }

        .page-hi88vip__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none;
            margin-left: 15px;
            color: var(--secondary-color);
        }

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

        .page-hi88vip__faq-answer p {
            padding-bottom: 15px;
            margin: 0;
        }

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

        .page-hi88vip__dark-bg-section {
            background-color: var(--primary-color);
            color: var(--text-color-light);
        }

        .page-hi88vip__dark-bg-section .page-hi88vip__section-title {
            color: var(--text-color-light);
        }

        .page-hi88vip__dark-bg-section .page-hi88vip__content-text {
            color: rgba(255, 255, 255, 0.9);
        }

        .page-hi88vip__dark-bg-section .page-hi88vip__list-item {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color-light);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .page-hi88vip__dark-bg-section .page-hi88vip__list-item::before {
            color: #ffcc00;
        }

        @media (max-width: 1024px) {
            .page-hi88vip__hero-title {
                font-size: clamp(1.8em, 6vw, 3em);
            }
            .page-hi88vip__section-title {
                font-size: 2em;
            }
            .page-hi88vip__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .page-hi88vip {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-hi88vip__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-hi88vip__hero-title {
                font-size: clamp(1.6em, 8vw, 2.5em);
                margin-bottom: 10px;
            }

            .page-hi88vip__hero-description {
                font-size: 1em;
                margin-bottom: 25px;
            }

            .page-hi88vip__cta-button {
                padding: 12px 25px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-hi88vip__floating-button {
                padding: 12px 20px;
                font-size: 1em;
                max-width: calc(100% - 40px) !important; /* Account for padding */
                white-space: normal !important;
                word-wrap: break-word !important;
                left: 20px;
                transform: translateX(0);
                width: auto;
                right: 20px;
            }

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

            .page-hi88vip__section-title {
                font-size: 1.8em;
                margin-bottom: 20px;
            }

            .page-hi88vip__content-text {
                font-size: 0.95em;
            }

            .page-hi88vip__image-container {
                margin: 20px auto;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 10px;
            }

            .page-hi88vip__responsive-image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-hi88vip__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

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

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

            .page-hi88vip__game-description {
                font-size: 0.9em;
            }

            .page-hi88vip__list-item {
                padding: 12px 15px;
                font-size: 0.95em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

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

            .page-hi88vip__faq-answer {
                padding: 15px 15px !important;
            }

            .page-hi88vip__faq-answer p {
                font-size: 0.9em;
            }
        }
    