
    .page-game-tt88 {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f9fa;
        padding-top: 10px; /* Small decorative padding, body should handle main offset */
    }

    /* Section styling */
    .page-game-tt88__hero-section,
    .page-game-tt88__about-section,
    .page-game-tt88__games-section,
    .page-game-tt88__promotions-section,
    .page-game-tt88__providers-section,
    .page-game-tt88__faq-section,
    .page-game-tt88__cta-section {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* Titles and headings */
    .page-game-tt88__section-title {
        font-size: 2.5em;
        color: #0056b3; /* Darker blue for contrast */
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .page-game-tt88__section-description {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 30px;
        color: #555;
    }

    .page-game-tt88__hero-title {
        font-size: 3em;
        color: #0056b3;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 800;
    }

    .page-game-tt88__hero-description {
        font-size: 1.2em;
        text-align: center;
        margin-bottom: 30px;
        color: #444;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-game-tt88__feature-title,
    .page-game-tt88__game-card-title,
    .page-game-tt88__promo-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-top: 15px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-game-tt88__faq-question-text {
        font-size: 1.2em;
        color: #333;
        margin: 0;
        font-weight: 600;
        pointer-events: none; /* Prevent h3 from intercepting click */
    }

    /* Highlight text */
    .page-game-tt88 .highlight {
        color: #e62e2e; /* Red color for highlight, good contrast */
    }

    /* Buttons */
    .page-game-tt88__primary-button,
    .page-game-tt88__secondary-button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap; /* Ensure button text stays on one line */
    }

    .page-game-tt88__primary-button {
        background-color: #e62e2e; /* Red */
        color: #ffffff;
        border: none;
        margin-right: 15px;
    }

    .page-game-tt88__primary-button:hover {
        background-color: #cc0000;
        transform: translateY(-2px);
    }

    .page-game-tt88__secondary-button {
        background-color: #007bff; /* Blue */
        color: #ffffff;
        border: none;
    }

    .page-game-tt88__secondary-button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-game-tt88__hero-actions {
        text-align: center;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
        gap: 15px;
    }

    /* Hero Section */
    .page-game-tt88__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        background: linear-gradient(135deg, #e0f2f7 0%, #c2e0f0 100%);
    }

    .page-game-tt88__hero-image-container {
        width: 100%;
        max-width: 900px; /* Centered product display image */
        margin-top: 30px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }

    .page-game-tt88__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    /* About Section */
    .page-game-tt88__about-content p {
        margin-bottom: 15px;
        text-align: center;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-game-tt88__feature-item {
        background-color: #f0f8ff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-game-tt88__feature-icon {
        width: 200px; /* Minimum size */
        height: auto;
        margin-bottom: 15px;
        max-width: 100%; /* Ensure responsiveness */
        object-fit: contain;
    }

    /* Games Section */
    .page-game-tt88__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-game-tt88__game-card {
        background-color: #fdfefe;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-game-tt88__game-card:hover {
        transform: translateY(-5px);
    }

    .page-game-tt88__game-card-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-game-tt88__game-card-title {
        margin-top: 15px;
        padding: 0 15px;
    }

    .page-game-tt88__game-card-description {
        padding: 0 15px 20px;
        color: #666;
        font-size: 0.95em;
    }

    /* Promotions Section */
    .page-game-tt88__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-game-tt88__promo-card {
        background-color: #fdfefe;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-game-tt88__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-game-tt88__promo-image {
        width: 100%;
        height: 220px; /* Fixed height */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-game-tt88__promo-title {
        margin-top: 15px;
        padding: 0 15px;
    }

    .page-game-tt88__promo-text {
        padding: 0 15px 20px;
        color: #666;
        font-size: 0.95em;
    }

    .page-game-tt88__promo-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* Providers Section */
    .page-game-tt88__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Adjust minmax for better fit */
        gap: 15px;
        margin-top: 30px;
        text-align: center;
    }

    .page-game-tt88__provider-item {
        background-color: #e9ecef;
        padding: 15px 10px;
        border-radius: 5px;
        font-weight: 600;
        color: #333;
        font-size: 1.1em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        box-sizing: border-box; /* Crucial for list item responsiveness */
        word-wrap: break-word; /* Ensure long names wrap */
        overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-game-tt88__faq-container {
        margin-top: 30px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-game-tt88__faq-item {
        margin-bottom: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-game-tt88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f5f5f5;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-game-tt88__faq-question:hover {
        background-color: #e9ecef;
    }

    .page-game-tt88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e62e2e; /* Red color for contrast */
        pointer-events: none; /* Prevent span from intercepting click */
        transition: transform 0.3s ease;
    }

    .page-game-tt88__faq-item.active .page-game-tt88__faq-toggle {
        transform: rotate(45deg); /* Plus to X/minus visual */
    }

    .page-game-tt88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding matches question */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box; /* Ensure padding is included */
        color: #555;
        font-size: 1em;
    }

    .page-game-tt88__faq-answer p {
        margin-top: 10px;
        margin-bottom: 10px;
        line-height: 1.8;
    }

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

    /* Call to Action Section */
    .page-game-tt88__cta-section {
        text-align: center;
        padding: 50px 20px;
        background-color: #e0f2f7;
        margin-bottom: 40px; /* Space before footer */
    }

    /* Responsive design */
    @media (max-width: 768px) {
        .page-game-tt88__section-title {
            font-size: 2em;
        }

        .page-game-tt88__hero-title {
            font-size: 2.2em;
        }

        .page-game-tt88__hero-description {
            font-size: 1em;
        }

        .page-game-tt88__primary-button,
        .page-game-tt88__secondary-button {
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        .page-game-tt88__hero-actions {
            flex-direction: column;
        }

        .page-game-tt88__hero-image-container {
            max-width: 100%;
        }

        /* List item responsiveness */
        .page-game-tt88__features-grid,
        .page-game-tt88__game-categories,
        .page-game-tt88__promo-grid,
        .page-game-tt88__providers-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
            padding: 0 15px; /* Adjust container padding */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-game-tt88__feature-item,
        .page-game-tt88__game-card,
        .page-game-tt88__promo-card,
        .page-game-tt88__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px; /* Adjusted padding */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-game-tt88__feature-icon,
        .page-game-tt88__game-card-image,
        .page-game-tt88__promo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

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

        .page-game-tt88__about-section,
        .page-game-tt88__games-section,
        .page-game-tt88__promotions-section,
        .page-game-tt88__providers-section,
        .page-game-tt88__faq-section,
        .page-game-tt88__cta-section {
            margin: 20px auto;
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        .page-game-tt88__section-title {
            font-size: 1.8em;
        }
        .page-game-tt88__hero-title {
            font-size: 1.8em;
        }
    }
  