
    /* CSS styles for page-tr88game */
    :root {
        --page-tr88game__primary-color: #e44d26; /* A vibrant orange-red */
        --page-tr88game__secondary-color: #333;
        --page-tr88game__text-color: #333;
        --page-tr88game__light-bg: #f5f5f5;
        --page-tr88game__dark-bg: #222;
        --page-tr88game__white: #ffffff;
        --page-tr88game__border-color: #ddd;
        --page-tr88game__accent-color: #4CAF50; /* Green for success/highlights */
    }

    .page-tr88game {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-tr88game__text-color);
        background-color: var(--page-tr88game__white);
        padding: 0;
        margin: 0;
    }

    .page-tr88game__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-tr88game__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: var(--page-tr88game__white);
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-tr88game__section--dark {
        background-color: var(--page-tr88game__dark-bg);
        color: var(--page-tr88game__white);
    }

    .page-tr88game__section-title {
        text-align: center;
        color: var(--page-tr88game__primary-color);
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
    }

    .page-tr88game__section--dark .page-tr88game__section-title {
        color: var(--page-tr88game__accent-color);
    }

    .page-tr88game__text-center {
        text-align: center;
    }

    /* Hero Section */
    .page-tr88game__hero-section {
        position: relative;
        width: 100%;
        background-color: var(--page-tr88game__dark-bg);
        color: var(--page-tr88game__white);
        text-align: center;
        padding-top: 10px; /* To clear fixed header */
        overflow: hidden;
        margin-bottom: 20px;
    }

    .page-tr88game__hero-image {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        filter: brightness(0.7); /* Darken image slightly for text readability, not changing color */
    }

    .page-tr88game__hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        width: 90%;
        max-width: 800px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-tr88game__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-tr88game__white);
        line-height: 1.2;
    }

    .page-tr88game__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 25px;
        color: var(--page-tr88game__white);
    }

    /* Floating Promotion Button */
    .page-tr88game__floating-promo-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--page-tr88game__accent-color);
        color: var(--page-tr88game__white);
        padding: 15px 25px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        z-index: 100;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
        animation: page-tr88game__pulse 2s infinite;
        border: none; /* Ensure it looks like a button */
    }

    .page-tr88game__floating-promo-button:hover {
        background-color: #388E3C; /* Darker green */
        transform: translateY(-3px);
    }

    @keyframes page-tr88game__pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* General Button Style (for non-floating buttons) */
    .page-tr88game__button {
        display: inline-block;
        background-color: var(--page-tr88game__primary-color);
        color: var(--page-tr88game__white);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-tr88game__button:hover {
        background-color: #c73c1c; /* Darker primary color */
    }

    .page-tr88game__button--secondary {
        background-color: var(--page-tr88game__secondary-color);
    }

    .page-tr88game__button--secondary:hover {
        background-color: #555;
    }

    /* Game Categories */
    .page-tr88game__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 20px 0;
    }

    .page-tr88game__game-card {
        background-color: var(--page-tr88game__light-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

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

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

    .page-tr88game__game-card-content {
        padding: 20px;
    }

    .page-tr88game__game-card-title {
        font-size: 1.5em;
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--page-tr88game__primary-color);
    }

    .page-tr88game__game-card-description {
        font-size: 0.95em;
        color: var(--page-tr88game__text-color);
    }

    /* Steps Section */
    .page-tr88game__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    .page-tr88game__step-item {
        background-color: var(--page-tr88game__white);
        border: 1px solid var(--page-tr88game__border-color);
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .page-tr88game__step-number {
        display: inline-block;
        width: 50px;
        height: 50px;
        line-height: 50px;
        border-radius: 50%;
        background-color: var(--page-tr88game__primary-color);
        color: var(--page-tr88game__white);
        font-size: 1.8em;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .page-tr88game__step-title {
        font-size: 1.6em;
        color: var(--page-tr88game__secondary-color);
        margin-bottom: 10px;
    }

    .page-tr88game__step-description {
        font-size: 1em;
        color: var(--page-tr88game__text-color);
    }

    .page-tr88game__step-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-top: 20px;
        border-radius: 8px;
        object-fit: cover;
    }

    /* Features / Why Choose Us */
    .page-tr88game__feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        padding: 20px 0;
    }

    .page-tr88game__feature-item {
        background-color: var(--page-tr88game__light-bg);
        border-left: 5px solid var(--page-tr88game__primary-color);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .page-tr88game__feature-item:hover {
        transform: translateY(-3px);
    }

    .page-tr88game__feature-title {
        font-size: 1.4em;
        color: var(--page-tr88game__primary-color);
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-tr88game__feature-description {
        font-size: 0.95em;
    }

    /* FAQ Section */
    .page-tr88game__faq-section {
        background-color: var(--page-tr88game__light-bg);
        padding: 40px 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-tr88game__faq-item {
        background-color: var(--page-tr88game__white);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .page-tr88game__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: var(--page-tr88game__primary-color);
        color: var(--page-tr88game__white);
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .page-tr88game__faq-question:hover {
        background-color: #c73c1c; /* Darker primary color */
    }

    .page-tr88game__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-tr88game__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-tr88game__faq-item.active .page-tr88game__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-tr88game__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Adjusted from 15px to 20px to match question padding */
        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: var(--page-tr88game__white);
        color: var(--page-tr88game__text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-tr88game__container {
            padding: 15px;
        }

        .page-tr88game__section {
            padding: 30px 15px;
        }

        .page-tr88game__section-title {
            font-size: 2em;
        }

        .page-tr88game__hero-section {
            padding-top: 10px; /* Ensure it clears the header on mobile too */
        }

        .page-tr88game__hero-content {
            width: 95%;
            padding: 15px;
        }

        .page-tr88game__hero-title {
            font-size: 2em;
        }

        .page-tr88game__hero-subtitle {
            font-size: 1em;
        }

        .page-tr88game__floating-promo-button {
            bottom: 15px;
            right: 15px;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-tr88game__game-grid,
        .page-tr88game__steps-grid,
        .page-tr88game__feature-list {
            grid-template-columns: 1fr; /* Stack items on mobile */
            gap: 20px;
            padding: 0; /* Remove horizontal padding from grid containers */
        }
        
        /* List items mobile responsiveness */
        .page-tr88game__game-card,
        .page-tr88game__step-item,
        .page-tr88game__feature-item,
        .page-tr88game__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for smaller screens */
        }

        .page-tr88game__game-card-image,
        .page-tr88game__step-image {
            max-width: 100% !important;
            height: auto !important;
            object-fit: contain !important; /* Ensure image fits */
        }

        .page-tr88game__game-card-description,
        .page-tr88game__step-description,
        .page-tr88game__feature-description,
        .page-tr88game__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

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

        .page-tr88game__faq-question h3 {
            font-size: 1em;
        }

        .page-tr88game__faq-answer {
            padding: 0 15px;
        }
        .page-tr88game__faq-item.active .page-tr88game__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-tr88game__hero-title {
            font-size: 1.8em;
        }
        .page-tr88game__hero-subtitle {
            font-size: 0.9em;
        }
        .page-tr88game__floating-promo-button {
            padding: 10px 18px;
            font-size: 0.9em;
            bottom: 10px;
            right: 10px;
        }
        .page-tr88game__section-title {
            font-size: 1.8em;
        }
    }
  