
    /* Page specific CSS here */
    .page-taihitclub {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    /* Hero Section */
    .page-taihitclub .hero-section {
        position: relative;
        text-align: center;
        padding-top: 160px; /* Safety zone for floating menu (140-180px) */
        padding-bottom: 40px;
        background-color: #2a0a0a; /* Dark red/brown for hero */
        border-bottom: 5px solid #ffcc00; /* Gold accent */
    }

    .page-taihitclub .hero-image-wrapper {
        width: 100%;
        max-width: 800px; /* Adjust as needed for mobile-first */
        margin: 0 auto;
        display: block;
        height: auto;
    }

    .page-taihitclub .hero-image-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    }

    .page-taihitclub .hero-content {
        padding: 20px;
        color: #fff;
    }

    .page-taihitclub .hero-content h1 {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: #ffcc00; /* Gold for main title */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    @media (max-width: 768px) {
        .page-taihitclub .hero-content h1 {
            font-size: 1.8em;
        }
    }

    .page-taihitclub .hero-content p {
        font-size: 1.1em;
        margin-bottom: 25px;
        color: #e0e0e0;
    }

    .page-taihitclub .download-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 30px;
    }

    .page-taihitclub .download-button {
        display: inline-flex; /* Use flex for icon alignment */
        align-items: center;
        justify-content: center;
        background-color: #ffcc00; /* Gold button */
        color: #1a1a1a;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        gap: 8px; /* Space between text and icon */
    }

    .page-taihitclub .download-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Floating Login/Register Button */
    .page-taihitclub .floating-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .page-taihitclub .floating-cta a {
        background-color: #e74c3c; /* Red for urgent CTA */
        color: #fff;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-taihitclub .floating-cta a:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
    }

    /* Sections */
    .page-taihitclub section {
        padding: 60px 20px;
        text-align: center;
    }

    .page-taihitclub section:nth-of-type(even) {
        background-color: #222;
    }

    .page-taihitclub section:nth-of-type(odd) {
        background-color: #1a1a1a;
    }

    .page-taihitclub h2 {
        font-size: 2em;
        margin-bottom: 30px;
        color: #ffcc00;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 768px) {
        .page-taihitclub h2 {
            font-size: 1.6em;
        }
    }

    .page-taihitclub p {
        margin-bottom: 20px;
        color: #e0e0e0;
    }

    /* Game Categories */
    .page-taihitclub .game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-taihitclub .game-card {
        background-color: #2c2c2c;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-taihitclub .game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-taihitclub .game-card img {
        width: 100px; /* Adjust size for mobile-first */
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .page-taihitclub .game-card h3 {
        font-size: 1.2em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-taihitclub .game-card p {
        font-size: 0.9em;
        color: #ccc;
    }

    .page-taihitclub .game-card a {
        display: block;
        text-decoration: none;
        color: inherit; /* Inherit color from parent for accessibility */
    }

    /* Promotions */
    .page-taihitclub .promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-taihitclub .promo-item {
        background-color: #333;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        text-align: left;
        border-left: 5px solid #e74c3c;
    }

    .page-taihitclub .promo-item h3 {
        color: #ffcc00;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .page-taihitclub .promo-item p {
        color: #e0e0e0;
        font-size: 1em;
    }

    .page-taihitclub .promo-item a {
        display: inline-block;
        margin-top: 15px;
        background-color: #e74c3c;
        color: #fff;
        padding: 8px 18px;
        border-radius: 25px;
        text-decoration: none;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-taihitclub .promo-item a:hover {
        background-color: #c0392b;
    }

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

    .page-taihitclub .provider-logo {
        background-color: #333;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px; /* Fixed height for logos */
    }

    .page-taihitclub .provider-logo:hover {
        transform: scale(1.05);
    }

    .page-taihitclub .provider-logo img {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        display: block;
        filter: grayscale(20%); /* Slightly desaturate */
        transition: filter 0.3s ease;
    }
    .page-taihitclub .provider-logo:hover img {
        filter: grayscale(0%); /* Full color on hover */
    }

    /* FAQ Section */
    .page-taihitclub .faq-list {
        margin-top: 40px;
        text-align: left;
    }

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

    .page-taihitclub .faq-question {
        background-color: #3a3a3a;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        color: #ffcc00;
        font-size: 1.1em;
        border-bottom: 1px solid #444;
    }

    .page-taihitclub .faq-question span {
        transition: transform 0.3s ease;
    }

    .page-taihitclub .faq-question.active span {
        transform: rotate(180deg);
    }

    .page-taihitclub .faq-answer {
        padding: 15px 20px;
        background-color: #2c2c2c;
        color: #e0e0e0;
        display: none;
        border-top: 1px solid #333;
    }

    .page-taihitclub .faq-answer p {
        margin: 0;
    }

    /* General utility */
    .page-taihitclub .text-center {
        text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-taihitclub .page-container {
            padding: 10px;
        }

        .page-taihitclub .hero-section {
            padding-top: 120px; /* Smaller safety zone for smaller screens */
            padding-bottom: 20px;
        }

        .page-taihitclub .hero-content h1 {
            font-size: 2em;
        }

        .page-taihitclub .hero-content p {
            font-size: 1em;
        }

        .page-taihitclub .download-button {
            width: 100%;
            max-width: 280px;
        }

        .page-taihitclub .floating-cta {
            bottom: 15px;
            right: 15px;
        }

        .page-taihitclub .floating-cta a {
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-taihitclub section {
            padding: 40px 15px;
        }

        .page-taihitclub h2 {
            font-size: 1.8em;
        }

        .page-taihitclub .game-categories,
        .page-taihitclub .promo-grid,
        .page-taihitclub .providers-grid {
            grid-template-columns: 1fr;
        }
        .page-taihitclub .game-card, .page-taihitclub .promo-item, .page-taihitclub .provider-logo {
            margin: 0 auto;
            max-width: 300px;
        }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
        .page-taihitclub .game-categories {
            grid-template-columns: repeat(3, 1fr);
        }
        .page-taihitclub .providers-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }
    @media (min-width: 1025px) {
        .page-taihitclub .game-categories {
            grid-template-columns: repeat(6, 1fr);
        }
        .page-taihitclub .providers-grid {
            grid-template-columns: repeat(8, 1fr);
        }
    }

  