
        .page-789p {
            font-family: 'Arial', sans-serif;
            color: #333333;
            background-color: #f8f9fa;
        }

        .page-789p__hero-section {
            position: relative;
            padding-top: 10px; /* Adjusted for fixed header, small decorative top padding */
            padding-bottom: 0;
            background-color: #2563eb;
            overflow: hidden;
            text-align: center;
        }

        .page-789p__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-789p__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            color: #ffffff;
            text-align: center;
        }

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

        .page-789p__hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-789p__cta-button {
            display: inline-block;
            background-color: #ffc107; /* Brighter yellow for CTA */
            color: #212529;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        .page-789p__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #dc3545; /* Red for urgency */
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 200px;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            line-height: 1.2;
        }

        .page-789p__floating-button:hover {
            background-color: #c82333;
        }

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

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

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

        .page-789p__game-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

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

        .page-789p__game-image {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            object-fit: cover;
            display: block;
        }

        .page-789p__game-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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

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

        .page-789p__game-button {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-789p__game-button:hover {
            background-color: #1a4aae;
        }

        .page-789p__usp-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
        }

        .page-789p__usp-item {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            flex: 1 1 calc(33% - 50px);
            max-width: calc(33% - 50px);
            text-align: center;
            min-width: 280px;
            box-sizing: border-box;
        }

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

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

        .page-789p__usp-description {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
        }

        .page-789p__promotions-section {
            background-color: #f0f4f8;
            padding: 60px 20px;
            text-align: center;
            box-sizing: border-box;
        }

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

        .page-789p__promo-card {
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-789p__promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

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

        .page-789p__promo-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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

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

        .page-789p__promo-link {
            display: inline-block;
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-789p__promo-link:hover {
            color: #1a4aae;
            text-decoration: underline;
        }

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

        .page-789p__faq-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            text-align: left;
        }

        .page-789p__faq-item {
            background-color: #ffffff;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-sizing: border-box;
        }

        .page-789p__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #e3f2fd;
            color: #2563eb;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
        }

        .page-789p__faq-question h3 {
            margin: 0;
            font-size: inherit;
            font-weight: inherit;
            color: inherit;
            pointer-events: none; /* Prevent h3 from blocking click */
        }

        .page-789p__faq-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click */
        }

        .page-789p__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            color: #64748b;
            line-height: 1.6;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            box-sizing: border-box;
        }

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

        .page-789p__faq-item.active .page-789p__faq-question {
            background-color: #bbdefb;
        }

        .page-789p__contact-section {
            background-color: #2563eb;
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
            box-sizing: border-box;
        }

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

        .page-789p__contact-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-789p__contact-button {
            background-color: #ffc107;
            color: #212529;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

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

        /* General image responsiveness */
        .page-789p img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-789p__hero-section {
                padding-top: 10px !important; /* Ensure small top padding */
            }

            .page-789p__hero-content {
                padding: 15px;
            }

            .page-789p__hero-title {
                font-size: 2rem;
            }

            .page-789p__hero-description {
                font-size: 0.95rem;
            }

            .page-789p__cta-button {
                padding: 12px 25px;
                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__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 10px 15px;
                font-size: 0.9rem;
                max-width: 160px;
            }

            .page-789p__section {
                padding: 40px 15px;
            }

            .page-789p__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .page-789p__games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-789p__game-card {
                width: 100%;
                box-sizing: border-box;
            }

            .page-789p__usp-list {
                flex-direction: column;
                gap: 20px;
            }

            .page-789p__usp-item {
                flex: 1 1 100%;
                max-width: 100%;
                padding: 25px;
                box-sizing: border-box;
            }

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

            .page-789p__promotions-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-789p__promo-card {
                width: 100%;
                box-sizing: border-box;
            }

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

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

            .page-789p__faq-answer {
                padding: 15px !important;
            }

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

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

            .page-789p__contact-description {
                font-size: 1rem;
            }

            .page-789p__contact-button {
                padding: 12px 25px;
                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 img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-789p__section,
            .page-789p__card,
            .page-789p__container,
            .page-789p__games-grid,
            .page-789p__usp-list,
            .page-789p__promotions-grid,
            .page-789p__faq-list {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-789p__cta-buttons,
            .page-789p__button-group,
            .page-789p__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;
                flex-direction: column;
            }
        }
    