
    /* CSS Styles for page-t88 */
    :root {
        --page-t88-primary-color: #e44d26; /* A vibrant orange-red, often associated with energy and excitement */
        --page-t88-secondary-color: #f7b731; /* A bright yellow, for highlights and calls to action */
        --page-t88-text-color: #333;
        --page-t88-light-text-color: #f8f8f8;
        --page-t88-background-light: #f9f9f9;
        --page-t88-background-dark: #2c3e50; /* Dark blue-grey for contrast sections */
        --page-t88-border-radius: 8px;
        --page-t88-shadow: rgba(0, 0, 0, 0.1);
    }

    .page-t88 {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-t88-text-color);
        background-color: var(--page-t88-background-light);
    }

    /* Hero Section */
    .page-t88__hero-section {
        position: relative;
        width: 100%;
        height: 500px; /* Adjusted for mobile-first, will increase for desktop */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--page-t88-light-text-color);
        overflow: hidden;
        padding-top: 10px; /* For fixed header */
        box-sizing: border-box;
    }

    .page-t88__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Slightly darken background for text readability */
    }

    .page-t88__hero-content {
        position: relative;
        z-index: 1;
        padding: 20px;
        max-width: 90%;
    }

    .page-t88__hero-title {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: var(--page-t88-light-text-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-t88__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
        color: var(--page-t88-light-text-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-t88__cta-button {
        display: inline-block;
        background-color: var(--page-t88-secondary-color);
        color: var(--page-t88-text-color);
        padding: 12px 25px;
        border-radius: var(--page-t88-border-radius);
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 6px var(--page-t88-shadow);
        border: none; /* Ensure it looks like a button */
        cursor: pointer; /* Indicate clickable */
    }

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

    /* Floating Login Button */
    .page-t88__floating-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--page-t88-primary-color);
        color: var(--page-t88-light-text-color);
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* Ensure it doesn't look like a standard link */
        border: none; /* Make it look like a button */
        cursor: pointer; /* Indicate clickable */
    }

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

    /* Section Styling */
    .page-t88__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-t88__section--dark {
        background-color: var(--page-t88-background-dark);
        color: var(--page-t88-light-text-color);
    }

    .page-t88__section-title {
        font-size: 2em;
        text-align: center;
        margin-bottom: 30px;
        color: var(--page-t88-primary-color);
    }
    .page-t88__section--dark .page-t88__section-title {
        color: var(--page-t88-secondary-color);
    }

    .page-t88__text-content {
        font-size: 1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    /* Game Categories / Product Display */
    .page-t88__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-t88__game-card {
        background-color: #fff;
        border-radius: var(--page-t88-border-radius);
        box-shadow: 0 4px 10px var(--page-t88-shadow);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-t88__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        vertical-align: middle;
        max-width: 100%; /* Ensure image responsiveness */
        box-sizing: border-box; /* Include padding/border in width */
    }

    .page-t88__game-card-content {
        padding: 15px;
    }

    .page-t88__game-card-title {
        font-size: 1.3em;
        margin-bottom: 10px;
        color: var(--page-t88-primary-color);
    }

    .page-t88__game-card-description {
        font-size: 0.9em;
        color: #666;
        margin-bottom: 15px;
    }

    /* Benefits List */
    .page-t88__benefits-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
        justify-content: center;
    }

    .page-t88__benefit-item {
        background-color: #fff;
        padding: 25px;
        border-radius: var(--page-t88-border-radius);
        box-shadow: 0 4px 8px var(--page-t88-shadow);
        text-align: center;
        flex: 1 1 calc(33% - 40px); /* Default for desktop */
        min-width: 280px; /* Minimum width for items */
        box-sizing: border-box;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-t88__benefit-icon {
        width: 80px; /* Min size for image */
        height: 80px;
        margin-bottom: 15px;
        object-fit: contain;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-t88__benefit-title {
        font-size: 1.2em;
        color: var(--page-t88-primary-color);
        margin-bottom: 10px;
    }

    .page-t88__benefit-description {
        font-size: 0.95em;
        color: #555;
    }

    /* How-to Guide */
    .page-t88__guide-steps {
        display: flex;
        flex-direction: column; /* Stack vertically on mobile */
        gap: 25px;
        margin-top: 30px;
    }

    .page-t88__guide-step {
        background-color: #fff;
        padding: 25px;
        border-radius: var(--page-t88-border-radius);
        box-shadow: 0 4px 8px var(--page-t88-shadow);
        display: flex;
        align-items: center;
        gap: 20px;
        box-sizing: border-box;
    }

    .page-t88__step-icon {
        width: 60px; /* Min size for image */
        height: 60px;
        flex-shrink: 0;
        object-fit: contain;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-t88__step-content h3 {
        font-size: 1.3em;
        color: var(--page-t88-primary-color);
        margin-bottom: 8px;
    }

    .page-t88__step-content p {
        font-size: 0.95em;
        color: #555;
    }

    /* FAQ Section */
    .page-t88__faq-list {
        margin-top: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        list-style: none;
        box-sizing: border-box;
    }

    .page-t88__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: var(--page-t88-border-radius);
        box-shadow: 0 2px 5px var(--page-t88-shadow);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-t88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-t88__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-t88__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-t88-text-color);
        pointer-events: none; /* Prevent h3 from blocking click */
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .page-t88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-t88-primary-color);
        pointer-events: none; /* Prevent toggle from blocking click */
        margin-left: 10px;
    }

    .page-t88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding, will change on active */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        font-size: 0.95em;
        box-sizing: border-box;
    }

    .page-t88__faq-item.active .page-t88__faq-answer {
        max-height: 2000px !important; /* Use !important as required */
        padding: 20px 20px !important; /* Use !important as required */
        opacity: 1;
    }

    .page-t88__faq-item.active .page-t88__faq-question {
        background-color: var(--page-t88-primary-color);
        color: var(--page-t88-light-text-color);
    }
    .page-t88__faq-item.active .page-t88__faq-question h3 {
        color: var(--page-t88-light-text-color);
    }
    .page-t88__faq-item.active .page-t88__faq-toggle {
        color: var(--page-t88-light-text-color);
    }


    /* Responsive Design */
    @media (min-width: 769px) {
        .page-t88__hero-section {
            height: 600px;
            padding-top: 10px; /* Desktop fixed header padding */
        }
        .page-t88__hero-title {
            font-size: 3.5em;
        }
        .page-t88__hero-subtitle {
            font-size: 1.5em;
        }
        .page-t88__game-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .page-t88__benefits-list {
            flex-direction: row;
        }
        .page-t88__guide-steps {
            flex-direction: row; /* Layout horizontally on desktop */
            justify-content: center;
        }
        .page-t88__guide-step {
            flex: 1; /* Distribute space evenly */
            max-width: calc(33% - 20px); /* Adjust for gap */
            flex-direction: column;
            text-align: center;
        }
        .page-t88__step-icon {
            margin-bottom: 15px;
        }
        .page-t88__floating-button {
            padding: 18px 35px;
            font-size: 1.3em;
        }
    }

    @media (max-width: 768px) {
        .page-t88__hero-section {
            height: 400px;
            padding-top: 10px; /* Mobile fixed header padding */
        }
        .page-t88__hero-title {
            font-size: 2em;
        }
        .page-t88__hero-subtitle {
            font-size: 1em;
        }
        .page-t88__cta-button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-t88__section {
            padding: 30px 15px;
        }
        .page-t88__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .page-t88__game-grid {
            grid-template-columns: 1fr;
        }
        .page-t88__benefits-list {
            flex-direction: column;
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-t88__benefit-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-t88__guide-steps {
            flex-direction: column;
            gap: 15px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-t88__guide-step {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
            flex-direction: row; /* Keep horizontal for icon + text on mobile */
            text-align: left;
        }
        .page-t88__step-icon {
            margin-bottom: 0;
        }
        .page-t88__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-t88__faq-item {
            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;
        }
        .page-t88__faq-question {
            padding: 12px 15px;
        }
        .page-t88__faq-question h3 {
            font-size: 1em;
        }
        .page-t88__faq-answer {
            padding: 15px 15px;
        }
        .page-t88__faq-item.active .page-t88__faq-answer {
            padding: 15px 15px !important;
        }
        .page-t88__floating-button {
            padding: 12px 25px;
            font-size: 1.1em;
            bottom: 15px;
        }

        /* Ensure all images are responsive */
        .page-t88 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-t88__game-card-image,
        .page-t88__benefit-icon,
        .page-t88__step-icon {
            max-width: 100% !important;
            height: auto !important; /* Override fixed height for responsiveness if needed */
            box-sizing: border-box !important;
        }
    }
  