
        .page-789live {
            font-family: 'Arial', sans-serif;
            background-color: #000000;
            color: #f0f0f0;
            line-height: 1.6;
            padding-bottom: 80px; /* Space for floating button */
        }

        .page-789live__section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .page-789live__hero-section {
            text-align: center;
            padding-top: 10px; /* Small offset as body handles --header-offset */
            padding-bottom: 20px;
            background-color: #1a1a1a;
        }

        .page-789live__hero-image {
            width: 100%;
            max-width: 1200px;
            height: auto;
            display: block;
            margin: 0 auto 20px auto;
            border-radius: 8px;
        }

        .page-789live__main-title {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            color: #ffd700;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page-789live__hero-description {
            font-size: clamp(1rem, 2.5vw, 1.15rem);
            color: #cccccc;
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

        .page-789live__button {
            display: inline-block;
            background-color: #ffd700;
            color: #000000;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .page-789live__button:hover {
            background-color: #ffc107;
            transform: translateY(-2px);
        }

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

        .page-789live__game-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            text-align: center;
            transition: transform 0.3s ease;
            border: 1px solid #333;
        }

        .page-789live__game-card:hover {
            transform: translateY(-5px);
        }

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

        .page-789live__game-title {
            color: #ffd700;
            font-size: 1.3rem;
            margin: 15px 10px 10px 10px;
        }

        .page-789live__game-description {
            color: #cccccc;
            font-size: 0.9rem;
            padding: 0 15px 15px 15px;
        }

        .page-789live__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #e74c3c;
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transition: background-color 0.3s ease, transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
            text-align: center;
        }

        .page-789live__floating-button:hover {
            background-color: #c0392b;
            transform: scale(1.05);
        }

        .page-789live__floating-button span {
            display: block;
        }

        .page-789live__section-title {
            font-size: 2.2rem;
            color: #ffd700;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-789live__provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            justify-items: center;
            align-items: center;
        }

        .page-789live__provider-logo {
            width: 100%;
            max-width: 180px;
            height: auto;
            object-fit: contain;
            padding: 10px;
            background-color: #222;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            border: 1px solid #444;
        }

        .page-789live__provider-logo:hover {
            transform: scale(1.05);
        }

        .page-789live__faq-item {
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-789live__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: #222;
            cursor: pointer;
            user-select: none;
            font-weight: bold;
            color: #ffd700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
        }

        .page-789live__faq-question:hover {
            background-color: #2a2a2a;
        }

        .page-789live__faq-question h3 {
            margin: 0;
            color: inherit;
            pointer-events: none; /* Prevent h3 from blocking click event */
        }

        .page-789live__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click event */
            transition: transform 0.3s ease;
        }

        .page-789live__faq-item.active .page-789live__faq-toggle {
            transform: rotate(45deg);
        }

        .page-789live__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            color: #cccccc;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            font-size: 0.95rem;
        }

        .page-789live__faq-item.active .page-789live__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-789live__social-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .page-789live__social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #333;
            border-radius: 50%;
            color: #ffd700;
            font-size: 2rem;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .page-789live__social-link:hover {
            background-color: #555;
            transform: translateY(-3px);
        }

        .page-789live__contact-info {
            text-align: center;
            color: #cccccc;
            margin-top: 20px;
            font-size: 1rem;
        }

        .page-789live__contact-info a {
            color: #ffd700;
            text-decoration: none;
        }

        .page-789live__contact-info a:hover {
            text-decoration: underline;
        }

        .page-789live__text-block {
            color: #f0f0f0;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .page-789live__text-block h2,
        .page-789live__text-block h3 {
            color: #ffd700;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-789live__text-block ul {
            list-style: disc inside;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .page-789live__text-block ul li {
            margin-bottom: 8px;
        }

        .page-789live__text-block a {
            color: #ffd700;
            text-decoration: none;
        }

        .page-789live__text-block a:hover {
            text-decoration: underline;
        }

        .page-789live__promo-banner {
            background-color: #2563eb;
            color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }

        .page-789live__promo-banner h3 {
            color: #ffffff;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .page-789live__section {
                padding: 20px 15px;
            }

            .page-789live__hero-section {
                padding-top: 10px !important;
                padding-bottom: 15px;
            }

            .page-789live__main-title {
                font-size: clamp(1.6rem, 8vw, 2.5rem);
            }

            .page-789live__hero-description {
                font-size: clamp(0.9rem, 3.5vw, 1rem);
                margin-bottom: 20px;
            }

            .page-789live__button {
                padding: 10px 20px;
                font-size: 0.9rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            .page-789live__floating-button {
                padding: 12px 20px;
                font-size: 1rem;
                bottom: 15px;
                right: 15px;
                max-width: calc(100% - 30px);
                box-sizing: border-box;
            }

            .page-789live__section-title {
                font-size: 1.8rem;
            }

            .page-789live__game-image {
                height: 160px;
            }

            .page-789live__game-title {
                font-size: 1.1rem;
            }

            .page-789live__game-description {
                font-size: 0.85rem;
            }

            .page-789live__provider-logo {
                max-width: 120px;
                padding: 8px;
            }

            .page-789live__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }

            .page-789live__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.9rem;
            }

            .page-789live__social-link {
                width: 50px;
                height: 50px;
                font-size: 1.8rem;
            }

            /* Images responsive */
            .page-789live img {
                max-width: 100% !important;
                height: auto !important;
                display: block !important;
                box-sizing: border-box !important;
            }
            .page-789live__section,
            .page-789live__card,
            .page-789live__container,
            .page-789live__games-grid,
            .page-789live__game-card,
            .page-789live__provider-grid,
            .page-789live__faq-item,
            .page-789live__social-grid,
            .page-789live__text-block ul,
            .page-789live__text-block li {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                overflow-x: hidden;
            }
            .page-789live__text-block ul {
                margin-left: 0 !important;
                padding-left: 20px !important; /* Ensure list bullets are visible */
            }
            .page-789live__text-block li {
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
        }

        @media (max-width: 480px) {
            .page-789live__floating-button {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            .page-789live__section-title {
                font-size: 1.5rem;
            }
            .page-789live__hero-description {
                font-size: 0.9rem;
            }
        }
    