
    /* CSS styles for page-taigame68-bot */
    :root {
        --primary-color: #e44d26; /* A vibrant orange-red, common in gaming/betting */
        --secondary-color: #333;
        --accent-color: #f7b32b; /* A golden yellow for accents */
        --text-light: #f8f8f8;
        --text-dark: #222;
        --bg-dark: #1a1a1a;
        --bg-medium: #2a2a2a;
        --bg-light: #f0f0f0;
        --border-color: #444;
        --gradient-primary: linear-gradient(90deg, #e44d26, #f7b32b);
        --gradient-secondary: linear-gradient(90deg, #333, #555);
        --font-family-primary: 'Arial', sans-serif;
    }

    .page-taigame68-bot {
        font-family: var(--font-family-primary);
        color: var(--text-light);
        background-color: var(--bg-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-taigame68-bot__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-taigame68-bot__section {
        padding: 60px 0;
        text-align: center;
        position: relative;
    }

    .page-taigame68-bot__section--dark {
        background-color: var(--bg-medium);
    }

    .page-taigame68-bot__title {
        font-size: 2.8em;
        color: var(--accent-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-taigame68-bot__subtitle {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 30px;
    }

    .page-taigame68-bot__text {
        font-size: 1.1em;
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .page-taigame68-bot__button {
        display: inline-block;
        padding: 12px 25px;
        background: var(--gradient-primary);
        color: var(--text-light);
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
        box-shadow: 0 4px 15px rgba(247, 179, 43, 0.4);
    }

    .page-taigame68-bot__button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(247, 179, 43, 0.6);
    }

    /* Hero Section */
    .page-taigame68-bot__hero-section {
        background: url('[GALLERY:hero:1920x1080:game68,casino,mobile_gaming]') no-repeat center center/cover;
        padding: 10px 0 100px 0; /* Adjusted for body padding-top, 10px top padding */
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
    }

    .page-taigame68-bot__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .page-taigame68-bot__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 20px;
    }

    .page-taigame68-bot__hero-title {
        font-size: 3.5em;
        color: var(--accent-color);
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-taigame68-bot__hero-description {
        font-size: 1.4em;
        color: var(--text-light);
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Floating Buttons */
    .page-taigame68-bot__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-taigame68-bot__floating-button {
        background: var(--primary-color);
        color: var(--text-light);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9em;
        font-weight: bold;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    
    .page-taigame68-bot__floating-button--register {
        background: var(--primary-color);
    }

    .page-taigame68-bot__floating-button--login {
        background: var(--accent-color);
        color: var(--text-dark); /* Dark text for contrast on accent color */
    }

    .page-taigame68-bot__floating-button:hover {
        transform: scale(1.05);
    }

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

    .page-taigame68-bot__product-card {
        background-color: var(--bg-medium);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        text-align: left;
        color: var(--text-light);
    }

    .page-taigame68-bot__product-card:hover {
        transform: translateY(-5px);
    }

    .page-taigame68-bot__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
        box-sizing: border-box; /* Ensure responsive */
    }

    .page-taigame68-bot__product-content {
        padding: 20px;
    }

    .page-taigame68-bot__product-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-taigame68-bot__product-description {
        font-size: 0.95em;
        color: var(--text-light);
        margin-bottom: 15px;
    }

    /* Why Choose Section */
    .page-taigame68-bot__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-taigame68-bot__feature-item {
        background-color: var(--bg-medium);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
        text-align: left;
        transition: background-color 0.3s ease;
        box-sizing: border-box; /* For responsive list items */
    }

    .page-taigame68-bot__feature-item:hover {
        background-color: #3a3a3a;
    }

    .page-taigame68-bot__feature-icon {
        width: 200px; /* Min 200px required */
        height: 200px;
        margin-bottom: 15px;
        object-fit: contain;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
        box-sizing: border-box; /* Ensure responsive */
    }

    .page-taigame68-bot__feature-title {
        font-size: 1.3em;
        color: var(--accent-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-taigame68-bot__feature-description {
        font-size: 1em;
        color: var(--text-light);
    }

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

    .page-taigame68-bot__promo-card {
        background-color: var(--bg-medium);
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        text-align: left;
        transition: transform 0.3s ease;
    }

    .page-taigame68-bot__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-taigame68-bot__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
        box-sizing: border-box; /* Ensure responsive */
    }

    .page-taigame68-bot__promo-content {
        padding: 20px;
    }

    .page-taigame68-bot__promo-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-taigame68-bot__promo-description {
        font-size: 0.95em;
        color: var(--text-light);
        margin-bottom: 15px;
    }

    /* Providers & Payments Section */
    .page-taigame68-bot__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for logos */
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-content: center;
    }

    .page-taigame68-bot__logo-item {
        background-color: var(--bg-medium);
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px; /* Fixed height for consistent look */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* For responsive list items */
    }

    .page-taigame68-bot__logo-image {
        max-width: 100%;
        max-height: 70px;
        object-fit: contain;
        display: block;
        max-width: 100%; /* Ensure responsive */
        height: auto; /* Ensure responsive */
        box-sizing: border-box; /* Ensure responsive */
    }

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

    .page-taigame68-bot__faq-item {
        background-color: var(--bg-medium);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .page-taigame68-bot__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: var(--bg-medium);
        cursor: pointer;
        user-select: none;
        border-bottom: 1px solid var(--border-color);
    }

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

    .page-taigame68-bot__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--text-light);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-taigame68-bot__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-taigame68-bot__faq-item.active .page-taigame68-bot__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: var(--accent-color);
    }

    .page-taigame68-bot__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--text-light);
        background-color: #222;
    }

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

    .page-taigame68-bot__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
        color: var(--text-light); /* Ensure text color is visible */
    }

    /* Call to Action */
    .page-taigame68-bot__cta-section {
        background: var(--gradient-primary);
        padding: 80px 0;
    }

    .page-taigame68-bot__cta-title {
        color: var(--text-light);
        font-size: 2.5em;
        margin-bottom: 20px;
    }

    .page-taigame68-bot__cta-description {
        color: var(--text-light);
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .page-taigame68-bot__hero-title {
            font-size: 3em;
        }
        .page-taigame68-bot__hero-description {
            font-size: 1.2em;
        }
        .page-taigame68-bot__title {
            font-size: 2.4em;
        }
        .page-taigame68-bot__subtitle {
            font-size: 1.6em;
        }
        .page-taigame68-bot__section {
            padding: 40px 0;
        }
    }

    @media (max-width: 768px) {
        .page-taigame68-bot__hero-section {
            min-height: 500px;
            padding-bottom: 80px;
        }
        .page-taigame68-bot__hero-title {
            font-size: 2.5em;
        }
        .page-taigame68-bot__hero-description {
            font-size: 1.1em;
        }
        .page-taigame68-bot__title {
            font-size: 2em;
        }
        .page-taigame68-bot__subtitle {
            font-size: 1.4em;
        }
        .page-taigame68-bot__floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        .page-taigame68-bot__floating-button {
            width: 50px;
            height: 50px;
            font-size: 0.8em;
        }
        .page-taigame68-bot__product-grid,
        .page-taigame68-bot__features-list,
        .page-taigame68-bot__promo-grid,
        .page-taigame68-bot__logos-grid {
            grid-template-columns: 1fr; /* Stack on mobile */
        }

        /* List items responsive requirements */
        .page-taigame68-bot__product-card,
        .page-taigame68-bot__feature-item,
        .page-taigame68-bot__promo-card,
        .page-taigame68-bot__logo-item,
        .page-taigame68-bot__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-taigame68-bot__product-content,
        .page-taigame68-bot__feature-item,
        .page-taigame68-bot__promo-content,
        .page-taigame68-bot__logo-item,
        .page-taigame68-bot__faq-question,
        .page-taigame68-bot__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .page-taigame68-bot__faq-question h3 {
            font-size: 1.1em;
        }
        .page-taigame68-bot__faq-toggle {
            font-size: 1.5em;
        }

        /* Ensure images are fully responsive */
        .page-taigame68-bot__product-image,
        .page-taigame68-bot__feature-icon,
        .page-taigame68-bot__promo-image,
        .page-taigame68-bot__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        
        /* Word break for long text/keywords */
        .page-taigame68-bot__product-description,
        .page-taigame68-bot__feature-description,
        .page-taigame68-bot__promo-description,
        .page-taigame68-bot__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
    }

    @media (max-width: 480px) {
        .page-taigame68-bot__hero-title {
            font-size: 2em;
        }
        .page-taigame68-bot__hero-description {
            font-size: 1em;
        }
        .page-taigame68-bot__title {
            font-size: 1.8em;
        }
        .page-taigame68-bot__subtitle {
            font-size: 1.2em;
        }
        .page-taigame68-bot__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  