
        .page-hello88vina {
            font-family: Arial, sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

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

        .page-hello88vina__hero-section {
            text-align: center;
            padding-top: 10px; /* Small top padding, body handles header offset */
            padding-bottom: 40px;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid #e0e0e0;
        }

        .page-hello88vina__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-hello88vina__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 8px;
        }

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

        .page-hello88vina__hero-title {
            font-size: clamp(2em, 5vw, 2.8em);
            color: #2563eb;
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
        }

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

        .page-hello88vina__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .page-hello88vina__btn-primary,
        .page-hello88vina__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-hello88vina__btn-primary {
            background-color: #2563eb;
            color: #ffffff;
            border: 2px solid #2563eb;
        }

        .page-hello88vina__btn-primary:hover {
            background-color: #1a4ed8;
            transform: translateY(-2px);
        }

        .page-hello88vina__btn-secondary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

        .page-hello88vina__btn-secondary:hover {
            background-color: #f0f8ff;
            transform: translateY(-2px);
        }

        .page-hello88vina__section {
            padding: 60px 20px;
            text-align: center;
            background-color: #ffffff;
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .page-hello88vina__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-hello88vina__section-title {
            font-size: 2.2em;
            color: #2563eb;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-hello88vina__section--dark .page-hello88vina__section-title {
            color: #ffffff;
        }

        .page-hello88vina__text-content {
            max-width: 900px;
            margin: 0 auto 40px auto;
            font-size: 1.05em;
            color: #444444;
            text-align: left;
        }

        .page-hello88vina__section--dark .page-hello88vina__text-content {
            color: #f0f0f0;
        }

        .page-hello88vina__text-content h3 {
            color: #2563eb;
            font-size: 1.6em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .page-hello88vina__section--dark .page-hello88vina__text-content h3 {
            color: #ffffff;
        }

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

        .page-hello88vina__game-card {
            background-color: #f0f8ff;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .page-hello88vina__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .page-hello88vina__game-image-wrapper {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            overflow: hidden;
            position: relative;
        }

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

        .page-hello88vina__game-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-hello88vina__game-title {
            font-size: 1.5em;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
            word-wrap: break-word;
        }

        .page-hello88vina__game-description {
            font-size: 0.95em;
            color: #64748b;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-hello88vina__game-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #64748b;
            color: #ffffff;
            border-radius: 20px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-hello88vina__game-button:hover {
            background-color: #526075;
        }

        .page-hello88vina__promo-card {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 30px;
            text-align: left;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }

        .page-hello88vina__promo-title {
            font-size: 1.8em;
            color: #2563eb;
            margin-bottom: 15px;
        }

        .page-hello88vina__promo-description {
            font-size: 1em;
            color: #444444;
            margin-bottom: 20px;
        }

        .page-hello88vina__promo-button {
            display: inline-block;
            padding: 12px 25px;
            background-color: #2563eb;
            color: #ffffff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            max-width: 100%;
        }

        .page-hello88vina__promo-button:hover {
            background-color: #1a4ed8;
        }

        .page-hello88vina__faq-list {
            margin-top: 40px;
            text-align: left;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .page-hello88vina__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.15em;
            font-weight: bold;
            color: #2563eb;
            cursor: pointer;
            background-color: #f0f8ff;
            border-bottom: 1px solid #e0e0e0;
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page-hello88vina__faq-question:hover {
            background-color: #e6f2ff;
        }

        .page-hello88vina__faq-question h3 {
            margin: 0;
            color: #2563eb;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-hello88vina__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            color: #2563eb;
            pointer-events: none; /* Prevent toggle from blocking click event */
            width: 20px;
            text-align: center;
        }

        .page-hello88vina__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            background-color: #ffffff;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #444444;
            text-align: left;
        }

        .page-hello88vina__faq-item.active .page-hello88vina__faq-answer {
            max-height: 2000px !important; /* Use !important to ensure override */
            padding: 20px 25px !important;
            opacity: 1;
        }

        /* Floating Login Button */
        .page-hello88vina__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffcc00; /* Eye-catching color */
            color: #333333;
            padding: 15px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: transform 0.3s ease;
            white-space: nowrap;
            word-wrap: break-word;
            max-width: calc(100% - 40px);
            box-sizing: border-box;
        }

        .page-hello88vina__floating-button:hover {
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-hello88vina__hero-title {
                font-size: clamp(1.8em, 6vw, 2.5em);
            }
            .page-hello88vina__section-title {
                font-size: 2em;
            }
            .page-hello88vina__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page-hello88vina__text-content {
                padding: 0 15px;
            }
            .page-hello88vina__promo-card {
                padding: 25px;
            }
            .page-hello88vina__faq-question {
                padding: 15px 20px;
            }
            .page-hello88vina__faq-answer {
                padding: 0 20px;
            }
            .page-hello88vina__faq-item.active .page-hello88vina__faq-answer {
                padding: 15px 20px !important;
            }
        }

        @media (max-width: 768px) {
            .page-hello88vina__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }
            .page-hello88vina__hero-title {
                font-size: clamp(1.5em, 8vw, 2.2em);
                margin-bottom: 10px;
            }
            .page-hello88vina__hero-description {
                font-size: 1em;
                margin-bottom: 20px;
            }
            .page-hello88vina__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            .page-hello88vina__btn-primary,
            .page-hello88vina__btn-secondary {
                max-width: 100% !important;
                width: 100% !important;
                font-size: 1em;
                padding: 12px 20px;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-hello88vina__section {
                padding: 40px 15px;
            }
            .page-hello88vina__section-title {
                font-size: 1.8em;
                margin-bottom: 20px;
            }
            .page-hello88vina__text-content {
                font-size: 0.95em;
                padding: 0;
            }
            .page-hello88vina__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }
            .page-hello88vina__game-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-hello88vina__game-image-wrapper {
                height: 180px;
            }
            .page-hello88vina__game-title {
                font-size: 1.3em;
            }
            .page-hello88vina__game-description {
                font-size: 0.9em;
            }
            .page-hello88vina__game-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-hello88vina__promo-card {
                padding: 20px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                margin: 0 15px 20px 15px;
            }
            .page-hello88vina__promo-title {
                font-size: 1.5em;
            }
            .page-hello88vina__promo-button {
                max-width: 100% !important;
                width: 100% !important;
                font-size: 1em;
                padding: 10px 20px;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-hello88vina__faq-list {
                padding: 0 15px;
            }
            .page-hello88vina__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }
            .page-hello88vina__faq-answer {
                padding: 0 20px;
            }
            .page-hello88vina__faq-item.active .page-hello88vina__faq-answer {
                padding: 15px 20px !important;
            }
            .page-hello88vina__floating-button {
                bottom: 15px;
                right: 15px;
                font-size: 0.95em;
                padding: 12px 20px;
                max-width: calc(100% - 30px) !important;
                width: auto !important;
                text-align: center;
            }
            .page-hello88vina img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block;
            }
            .page-hello88vina__section,
            .page-hello88vina__card,
            .page-hello88vina__container,
            .page-hello88vina__text-content {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-hello88vina__text-content h3 {
                font-size: 1.4em;
            }
            .page-hello88vina ul,
            .page-hello88vina ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-hello88vina ul li,
            .page-hello88vina ol li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 10px 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    