
    /* Reset & Base Styles */
    .page-tainew88 {
        font-family: 'Arial', sans-serif;
        background-color: #000000;
        color: #FFFFFF;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating button */
    }

    .page-tainew88__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-tainew88__section {
        padding: 40px 0;
        text-align: center;
    }

    .page-tainew88__section--dark {
        background-color: #1a1a1a;
    }

    .page-tainew88__heading {
        color: #FFD700;
        margin-bottom: 20px;
        font-size: 2.5em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-tainew88__subheading {
        color: #FFFFFF;
        margin-bottom: 15px;
        font-size: 1.8em;
    }

    .page-tainew88__text {
        color: #E0E0E0;
        margin-bottom: 15px;
        font-size: 1.1em;
    }

    .page-tainew88__button {
        display: inline-block;
        background-color: #FFD700;
        color: #000000;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        margin-top: 20px;
    }

    .page-tainew88__button:hover {
        background-color: #FFC400;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-tainew88__hero-section {
        padding-top: 140px; /* Safety zone for fixed header */
        position: relative;
        overflow: hidden;
        text-align: center;
        background-color: #000000; /* Ensure black background under image */
    }

    .page-tainew88__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px; /* Space between image and text */
    }

    .page-tainew88__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }

    .page-tainew88__hero-content {
        padding: 20px 15px 40px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-tainew88__hero-title {
        color: #FFD700;
        font-size: 2.8em;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .page-tainew88__hero-description {
        color: #E0E0E0;
        font-size: 1.2em;
        margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-tainew88__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #FFD700;
        color: #000000;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-tainew88__floating-button:hover {
        background-color: #FFC400;
        transform: translateY(-3px);
    }

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

    .page-tainew88__game-card {
        background-color: #1a1a1a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-tainew88__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    }

    .page-tainew88__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 200px; /* Fixed height for consistency */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .page-tainew88__game-image {
        width: 100%; /* Ensure image fills its wrapper */
        height: 100%;
        object-fit: cover; /* Cover the area without distortion */
        display: block;
    }

    .page-tainew88__game-title {
        color: #FFD700;
        font-size: 1.4em;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-tainew88__game-description {
        color: #E0E0E0;
        font-size: 0.95em;
        padding: 0 15px;
    }

    /* Game Providers */
    .page-tainew88__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-tainewew88__provider-logo-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        height: 100px; /* Consistent height for logos */
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #0a0a0a;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        transition: transform 0.3s ease;
    }

    .page-tainewew88__provider-logo-wrapper:hover {
        transform: scale(1.05);
    }

    .page-tainew88__provider-logo {
        max-width: 100%;
        max-height: 80px; /* Ensure logo fits within wrapper */
        height: auto;
        display: block;
        object-fit: contain; /* Contain the logo within its bounds */
    }

    /* How to Download */
    .page-tainew88__download-steps {
        text-align: left;
        max-width: 800px;
        margin: 30px auto 0;
    }

    .page-tainew88__step-item {
        background-color: #1a1a1a;
        border-left: 5px solid #FFD700;
        padding: 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-tainew88__step-title {
        color: #FFD700;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .page-tainew88__step-description {
        color: #E0E0E0;
        font-size: 1em;
    }
    
    .page-tainew88__download-qr-code {
        margin-top: 30px;
        background-color: #1a1a1a;
        padding: 20px;
        border-radius: 10px;
        display: inline-block;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    }

    .page-tainew88__download-qr-code img {
        width: 200px;
        height: 200px;
        display: block;
        margin: 0 auto 15px;
    }

    /* FAQ Section */
    .page-tainew88__faq-list {
        margin-top: 30px;
        text-align: left;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-tainew88__faq-item {
        background-color: #1a1a1a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-tainew88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #2a2a2a;
        color: #FFD700;
        cursor: pointer;
        user-select: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-tainew88__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-tainew88__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
    }

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

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

    .page-tainew88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        color: #E0E0E0;
        font-size: 1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-tainew88__hero-section {
            padding-top: 100px; /* Adjust for mobile fixed header */
        }
        .page-tainew88__hero-title {
            font-size: 2em;
        }
        .page-tainew88__hero-description {
            font-size: 1em;
        }
        .page-tainew88__heading {
            font-size: 2em;
        }
        .page-tainew88__subheading {
            font-size: 1.5em;
        }
        .page-tainew88__game-grid {
            grid-template-columns: 1fr;
        }
        .page-tainew88__providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        }
        .page-tainew88__floating-button {
            bottom: 15px;
            right: 15px;
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-tainew88__faq-question {
            font-size: 1.1em;
            padding: 12px 15px;
        }
        .page-tainew88__faq-answer {
            padding: 0 15px;
        }
        .page-tainew88__faq-item.active .page-tainew88__faq-answer {
            padding: 15px !important;
        }
        /* Images responsive optimization */
        .page-tainew88__hero-image,
        .page-tainew88__game-image,
        .page-tainew88__provider-logo,
        .page-tainew88__download-qr-code img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-tainew88__hero-image-wrapper,
        .page-tainew88__game-image-wrapper,
        .page-tainewew88__provider-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  