
        /* style/49tg88.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-dark: #111111;
            --text-light: #ffffff;
            --bg-light: #f8f9fa;
            --border-color: #e0e0e0;
        }

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

        .page-49tg88__hero-section {
            position: relative;
            width: 100%;
            padding-top: 10px; /* Adjust for shared header offset */
            padding-bottom: 40px;
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            overflow: hidden;
        }

        .page-49tg88__hero-image-container {
            width: 100%;
            height: auto;
            overflow: hidden;
        }

        .page-49tg88__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
        }

        .page-49tg88__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .page-49tg88__main-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-light);
        }

        .page-49tg88__hero-description {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .page-49tg88__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .page-49tg88__cta-button {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-49tg88__cta-button--primary {
            background-color: #ffc107; /* Brighter accent for CTA */
            color: var(--text-dark);
            border: none;
        }

        .page-49tg88__cta-button--primary:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page-49tg88__cta-button--secondary {
            background-color: var(--text-light);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .page-49tg88__cta-button--secondary:hover {
            background-color: var(--bg-light);
            transform: translateY(-2px);
        }

        .page-49tg88__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .page-49tg88__section:last-of-type {
            margin-bottom: 0;
        }

        .page-49tg88__section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 40px;
        }

        .page-49tg88__text-block {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #333333;
        }

        .page-49tg88__text-block p {
            margin-bottom: 15px;
        }

        .page-49tg88__highlight-box {
            background-color: #e3f2fd; /* Light blue background */
            border-left: 5px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
            color: #333333;
        }

        .page-49tg88__highlight-box h3 {
            color: var(--primary-color);
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-49tg88__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .page-49tg88__game-card {
            background-color: var(--bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
        }

        .page-49tg88__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .page-49tg88__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-49tg88__game-content {
            padding: 20px;
            flex-grow: 1;
        }

        .page-49tg88__game-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .page-49tg88__game-description {
            font-size: 0.95rem;
            color: #555555;
        }

        .page-49tg88__internal-links-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .page-49tg88__internal-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .page-49tg88__internal-link-card {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #d0e8ff;
            transition: background-color 0.3s ease;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            text-align: center;
        }

        .page-49tg88__internal-link-card:hover {
            background-color: #e0f2ff;
        }

        .page-49tg88__faq-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .page-49tg88__faq-item {
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 15px;
            padding-bottom: 15px;
        }

        .page-49tg88__faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .page-49tg88__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            user-select: none;
            padding: 10px 0;
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .page-49tg88__faq-question:hover {
            color: #1a4dbe;
        }

        .page-49tg88__faq-question h3 {
            margin: 0;
            pointer-events: none;
            flex-grow: 1;
            text-align: left;
        }

        .page-49tg88__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            pointer-events: none;
            width: 30px;
            text-align: center;
            flex-shrink: 0;
        }

        .page-49tg88__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 15px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
            font-size: 1rem;
            text-align: left;
        }

        .page-49tg88__faq-item.active .page-49tg88__faq-answer {
            max-height: 2000px !important;
            padding: 20px 15px !important;
            opacity: 1;
        }

        .page-49tg88__faq-item.active .page-49tg88__faq-toggle {
            content: '−';
        }

        .page-49tg88__contact-section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: var(--primary-color);
            color: var(--text-light);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .page-49tg88__contact-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        .page-49tg88__contact-button {
            background-color: #ffc107;
            color: var(--text-dark);
            border: none;
        }

        .page-49tg88__contact-button:hover {
            background-color: #e0a800;
            transform: translateY(-2px);
        }

        .page-49tg88 img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-49tg88__main-title {
                font-size: clamp(2rem, 4.5vw, 3rem);
            }
            .page-49tg88__hero-description {
                font-size: 1rem;
            }
            .page-49tg88__section-title {
                font-size: 2rem;
            }
            .page-49tg88__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-49tg88 {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-49tg88__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }
            .page-49tg88__hero-content {
                padding: 15px;
            }
            .page-49tg88__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }
            .page-49tg88__hero-description {
                font-size: 0.95rem;
            }
            .page-49tg88__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            .page-49tg88__cta-button,
            .page-49tg88 a[class*="button"],
            .page-49tg88 a[class*="btn"] {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-49tg88__cta-buttons,
            .page-49tg88__button-group,
            .page-49tg88__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
            }
            .page-49tg88__section,
            .page-49tg88__internal-links-section,
            .page-49tg88__faq-section,
            .page-49tg88__contact-section {
                padding: 30px 15px;
                margin-bottom: 20px;
                border-radius: 8px;
            }
            .page-49tg88__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .page-49tg88__text-block {
                font-size: 1rem;
            }
            .page-49tg88__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-49tg88__game-image {
                height: 180px;
            }
            .page-49tg88__game-title {
                font-size: 1.3rem;
            }
            .page-49tg88__internal-links-grid {
                grid-template-columns: 1fr;
            }
            .page-49tg88__faq-question {
                font-size: 1rem;
            }
            .page-49tg88__faq-answer {
                padding: 15px 10px !important;
                font-size: 0.95rem;
            }
            .page-49tg88 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-49tg88__hero-image-container,
            .page-49tg88__game-card,
            .page-49tg88__internal-link-card,
            .page-49tg88__highlight-box,
            .page-49tg88__text-block,
            .page-49tg88__section-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-49tg88__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-49tg88__faq-question h3 {
                padding-right: 10px;
            }
        }
    