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

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

        .page-tg88-188k__hero-section {
            position: relative;
            padding-top: 10px; /* Small top padding, relying on body for header offset */
            padding-bottom: 40px;
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
            overflow: hidden;
            border-radius: 0 0 15px 15px;
            margin-bottom: 40px;
        }

        .page-tg88-188k__hero-image-wrapper {
            width: 100%;
            max-height: 500px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-tg88-188k__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 10px;
        }

        .page-tg88-188k__hero-content {
            padding: 0 20px;
        }

        .page-tg88-188k__hero-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-tg88-188k__hero-description {
            font-size: 1.15rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #f0f0f0;
        }

        .page-tg88-188k__cta-button {
            display: inline-block;
            background-color: #ffcc00; /* Bright yellow for CTA */
            color: #2563eb;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-tg88-188k__section {
            background-color: #ffffff;
            padding: 40px 20px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        .page-tg88-188k__section-title {
            font-size: 2.2rem;
            color: #2563eb;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-tg88-188k__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-tg88-188k__game-card {
            background-color: #f0f8ff;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .page-tg88-188k__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .page-tg88-188k__game-icon {
            width: 100%;
            height: auto;
            max-width: 250px;
            margin-bottom: 20px;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-tg88-188k__game-title {
            font-size: 1.5rem;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-tg88-188k__game-description {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 20px;
        }

        .page-tg88-188k__btn-secondary {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-tg88-188k__btn-secondary:hover {
            background-color: #1a4d9e;
        }

        .page-tg88-188k__features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .page-tg88-188k__feature-item {
            background-color: #e0f2fe;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            box-sizing: border-box;
            word-wrap: break-word;
        }

        .page-tg88-188k__feature-icon {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
            object-fit: contain;
            border-radius: 5px;
        }

        .page-tg88-188k__feature-content h3 {
            color: #2563eb;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

        .page-tg88-188k__feature-content p {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .page-tg88-188k__faq-section {
            background-color: #ffffff;
            padding: 40px 20px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        }

        .page-tg88-188k__faq-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-tg88-188k__faq-item {
            margin-bottom: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-tg88-188k__faq-question {
            background-color: #f0f8ff;
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2563eb;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
            user-select: none;
        }

        .page-tg88-188k__faq-question:hover {
            background-color: #e6f2ff;
        }

        .page-tg88-188k__faq-question h3 {
            margin: 0;
            font-size: 1.1rem;
            pointer-events: none;
            flex-grow: 1;
        }

        .page-tg88-188k__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            margin-left: 10px;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-tg88-188k__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            background-color: #ffffff;
            color: #64748b;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .page-tg88-188k__faq-item.active .page-tg88-188k__faq-answer {
            max-height: 2000px !important;
            padding: 20px !important;
            opacity: 1;
        }

        .page-tg88-188k__promotion-banner {
            background-color: #64748b;
            color: #ffffff;
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            margin-top: 40px;
        }

        .page-tg88-188k__promotion-banner h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .page-tg88-188k__promotion-banner p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #f0f0f0;
        }

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

        .page-tg88-188k__link-button:hover {
            background-color: #e6b800;
        }

        .page-tg88-188k__content-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            margin: 25px 0;
            object-fit: cover;
        }

        .page-tg88-188k p {
            margin-bottom: 15px;
            color: #333333;
        }

        .page-tg88-188k ul {
            list-style: disc inside;
            padding-left: 20px;
            margin-bottom: 15px;
            color: #333333;
        }

        .page-tg88-188k ul li {
            margin-bottom: 8px;
            box-sizing: border-box;
        }

        .page-tg88-188k a {
            color: #2563eb;
            text-decoration: none;
        }

        .page-tg88-188k a:hover {
            text-decoration: underline;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .page-tg88-188k__container {
                padding: 15px;
            }

            .page-tg88-188k__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
                margin-bottom: 20px;
            }

            .page-tg88-188k__hero-title {
                font-size: 2.2rem;
            }

            .page-tg88-188k__hero-description {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .page-tg88-188k__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-tg88-188k__section {
                padding: 30px 15px;
                margin-bottom: 20px;
            }

            .page-tg88-188k__section-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .page-tg88-188k__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-tg88-188k__game-icon {
                max-width: 200px;
            }

            .page-tg88-188k__game-title {
                font-size: 1.3rem;
            }

            .page-tg88-188k__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-tg88-188k__features-list {
                grid-template-columns: 1fr;
            }

            .page-tg88-188k__feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 15px;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-tg88-188k__feature-icon {
                margin-bottom: 15px;
            }

            .page-tg88-188k__faq-section {
                padding: 30px 15px;
                margin-bottom: 20px;
            }

            .page-tg88-188k__faq-question {
                font-size: 1rem;
                padding: 12px 15px;
            }

            .page-tg88-188k__faq-question h3 {
                font-size: 1rem;
            }

            .page-tg88-188k__faq-answer {
                padding: 15px !important;
            }

            .page-tg88-188k__promotion-banner {
                padding: 25px 15px;
            }

            .page-tg88-188k__promotion-banner h2 {
                font-size: 1.7rem;
            }

            .page-tg88-188k__promotion-banner p {
                font-size: 1rem;
            }

            .page-tg88-188k__link-button {
                padding: 10px 20px;
                font-size: 1rem;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .page-tg88-188k img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            
            .page-tg88-188k ul {
                padding-left: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-tg88-188k ul li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }
    