
        .page-789p {
            font-family: 'Arial', sans-serif;
            color: #333333; /* Default dark text for light body background */
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-789p__hero-section {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px 20px 60px;
            text-align: center;
            background-color: #e9ecef;
            overflow: hidden;
        }

        .page-789p__hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin-bottom: 30px;
        }

        .page-789p__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .page-789p__hero-content {
            max-width: 900px;
            padding: 0 15px;
        }

        .page-789p__hero-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .page-789p__hero-description {
            font-size: 1.15rem;
            color: #64748b;
            margin-bottom: 30px;
        }

        .page-789p__button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #2563eb;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-789p__button:hover {
            background-color: #1e40af;
            transform: translateY(-2px);
        }

        .page-789p__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            box-sizing: border-box;
        }

        .page-789p__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-789p__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 30px;
            color: #2563eb;
        }

        .page-789p__section--dark .page-789p__section-title {
            color: #ffffff;
        }

        .page-789p__text-block {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: #64748b;
        }

        .page-789p__section--dark .page-789p__text-block {
            color: #e0e7ff;
        }

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

        .page-789p__game-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .page-789p__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .page-789p__game-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            object-fit: contain;
            border-radius: 10px;
        }

        .page-789p__game-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 10px;
        }

        .page-789p__game-description {
            font-size: 0.95rem;
            color: #64748b;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .page-789p__feature-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            text-align: left;
        }

        .page-789p__feature-item {
            background-color: #ffffff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            height: 100%;
            box-sizing: border-box;
        }

        .page-789p__feature-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        .page-789p__feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 10px;
        }

        .page-789p__feature-text {
            font-size: 0.95rem;
            color: #64748b;
        }

        .page-789p__promo-card {
            background: linear-gradient(135deg, #2563eb, #64748b);
            padding: 40px;
            border-radius: 15px;
            color: #ffffff;
            margin-top: 40px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .page-789p__promo-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .page-789p__promo-text {
            font-size: 1.1rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-789p__cta-button {
            background-color: #ffffff;
            color: #2563eb;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .page-789p__cta-button:hover {
            background-color: #f0f0f0;
            color: #1e40af;
        }

        .page-789p__faq-section {
            background-color: #f0f2f5;
            padding: 60px 20px;
        }

        .page-789p__faq-list {
            list-style: none;
            padding: 0;
            margin: 40px auto 0;
            max-width: 900px;
        }

        .page-789p__faq-item {
            background-color: #ffffff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-789p__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            font-size: 1.15rem;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
        }

        .page-789p__faq-question:hover {
            background-color: #f5f5f5;
        }

        .page-789p__faq-question h3 {
            margin: 0;
            pointer-events: none;
            flex-grow: 1;
            text-align: left;
            color: #2563eb;
        }

        .page-789p__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none;
            transition: transform 0.3s ease;
            color: #64748b;
        }

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

        .page-789p__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
            text-align: left;
            color: #333333;
        }

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

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

        .page-789p__provider-logo {
            width: 80px;
            height: 50px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.3s ease, opacity 0.3s ease;
        }

        .page-789p__provider-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Floating Login/Register Button */
        .page-789p__floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffc107; /* Eye-catching color */
            color: #333333;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.3s ease;
            max-width: calc(100% - 40px); /* Adjust for padding */
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-789p__floating-cta:hover {
            background-color: #e0a800;
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .page-789p__hero-title {
                font-size: clamp(2rem, 6vw, 3rem);
            }
            .page-789p__hero-description {
                font-size: 1rem;
            }
            .page-789p__section-title {
                font-size: clamp(1.6rem, 5vw, 2.5rem);
            }
            .page-789p__game-grid, .page-789p__feature-list {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-789p {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-789p__hero-section,
            .page-789p__section {
                padding: 40px 15px;
            }
            .page-789p__hero-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }
            .page-789p__hero-description {
                font-size: 0.95rem;
            }
            .page-789p__button,
            .page-789p__cta-button {
                padding: 12px 20px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-789p__game-grid,
            .page-789p__feature-list {
                grid-template-columns: 1fr;
            }
            .page-789p__game-card,
            .page-789p__feature-item {
                padding: 20px;
            }
            .page-789p__game-icon,
            .page-789p__feature-icon {
                width: 80px;
                height: 80px;
            }
            .page-789p__promo-card {
                padding: 30px 20px;
            }
            .page-789p__promo-title {
                font-size: clamp(1.6rem, 6vw, 2.2rem);
            }
            .page-789p__promo-text {
                font-size: 1rem;
            }
            .page-789p__faq-question {
                font-size: 1rem;
                padding: 15px;
            }
            .page-789p__faq-answer {
                padding: 15px !important;
            }
            .page-789p__floating-cta {
                bottom: 15px;
                right: 15px;
                padding: 10px 20px;
                font-size: 0.9rem;
                max-width: calc(100% - 30px) !important;
                width: auto !important; /* Allow content to dictate width if shorter */
            }
            .page-789p__provider-logo {
                width: 60px;
                height: 40px;
            }
            /* Image responsiveness for mobile */
            .page-789p img {
                max-width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-789p__hero-image-container,
            .page-789p__game-grid,
            .page-789p__feature-list,
            .page-789p__faq-list,
            .page-789p__payment-providers,
            .page-789p__game-card,
            .page-789p__feature-item,
            .page-789p__promo-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 0;
                padding-right: 0;
            }
            .page-789p__faq-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-789p__feature-list li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 10px;
                padding-right: 10px;
            }
        }

        @media (max-width: 480px) {
            .page-789p__floating-cta {
                font-size: 0.85rem;
                padding: 10px 18px;
                bottom: 10px;
                right: 10px;
            }
        }
    