
        :root {
            --page-789bet-primary-color: #2563eb;
            --page-789bet-secondary-color: #64748b;
            --page-789bet-text-dark: #111111;
            --page-789bet-text-light: #ffffff;
            --page-789bet-bg-light: #f8f9fa;
            --page-789bet-bg-white: #ffffff;
            --page-789bet-border-color: #e0e0e0;
        }

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

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

        .page-789bet__hero-section {
            background-color: var(--page-789bet-bg-white);
            padding-top: 10px; /* Small top padding, relying on body for header offset */
            padding-bottom: 40px;
            text-align: center;
        }

        .page-789bet__hero-image-wrapper {
            width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-789bet__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
            border-radius: 8px;
        }

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

        .page-789bet__hero-title {
            font-size: clamp(28px, 4.5vw, 48px);
            color: var(--page-789bet-primary-color);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
        }

        .page-789bet__hero-description {
            font-size: 18px;
            color: var(--page-789bet-secondary-color);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-789bet__cta-button {
            display: inline-block;
            background-color: var(--page-789bet-primary-color);
            color: var(--page-789bet-text-light);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 20px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-789bet__cta-button:hover {
            background-color: #1e52c7;
            transform: translateY(-2px);
        }

        .page-789bet__about-section,
        .page-789bet__games-showcase,
        .page-789bet__promotions-section,
        .page-789bet__guide-section,
        .page-789bet__why-choose-section,
        .page-789bet__faq-section,
        .page-789bet__final-cta-section {
            padding: 60px 0;
            background-color: var(--page-789bet-bg-white);
            margin-bottom: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-789bet__section-title {
            font-size: 36px;
            color: var(--page-789bet-primary-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-789bet__text-block {
            font-size: 17px;
            color: var(--page-789bet-text-dark);
            margin-bottom: 20px;
            text-align: justify;
        }

        .page-789bet__list {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .page-789bet__list-item {
            font-size: 17px;
            color: var(--page-789bet-text-dark);
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
            text-align: justify;
            box-sizing: border-box;
        }

        .page-789bet__list-item::before {
            content: '✓';
            color: var(--page-789bet-primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

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

        .page-789bet__game-card {
            background-color: var(--page-789bet-bg-light);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }

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

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

        .page-789bet__game-content {
            padding: 20px;
        }

        .page-789bet__game-title {
            font-size: 22px;
            color: var(--page-789bet-primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-789bet__game-description {
            font-size: 15px;
            color: var(--page-789bet-secondary-color);
            margin-bottom: 15px;
        }

        .page-789bet__game-button {
            display: inline-block;
            background-color: var(--page-789bet-secondary-color);
            color: var(--page-789bet-text-light);
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-789bet__game-button:hover {
            background-color: #5a6a7c;
        }

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

        .page-789bet__promo-card {
            background-color: var(--page-789bet-bg-white);
            border: 1px solid var(--page-789bet-border-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

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

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

        .page-789bet__promo-content {
            padding: 20px;
        }

        .page-789bet__promo-title {
            font-size: 24px;
            color: var(--page-789bet-primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-789bet__promo-description {
            font-size: 16px;
            color: var(--page-789bet-secondary-color);
            margin-bottom: 15px;
            text-align: justify;
        }

        .page-789bet__promo-button {
            display: inline-block;
            background-color: var(--page-789bet-primary-color);
            color: var(--page-789bet-text-light);
            padding: 12px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-789bet__promo-button:hover {
            background-color: #1e52c7;
        }

        .page-789bet__guide-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .page-789bet__step-item {
            display: flex;
            align-items: center;
            background-color: var(--page-789bet-bg-white);
            border-radius: 10px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            padding: 25px;
        }

        .page-789bet__step-number {
            font-size: 48px;
            font-weight: 700;
            color: var(--page-789bet-primary-color);
            margin-right: 25px;
            flex-shrink: 0;
        }

        .page-789bet__step-content h3 {
            font-size: 24px;
            color: var(--page-789bet-primary-color);
            margin-top: 0;
            margin-bottom: 10px;
        }

        .page-789bet__step-content p {
            font-size: 16px;
            color: var(--page-789bet-secondary-color);
            margin-bottom: 15px;
        }

        .page-789bet__step-button {
            display: inline-block;
            background-color: var(--page-789bet-secondary-color);
            color: var(--page-789bet-text-light);
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: 100%;
        }

        .page-789bet__step-button:hover {
            background-color: #5a6a7c;
        }

        .page-789bet__why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .page-789bet__advantage-card {
            background-color: var(--page-789bet-bg-white);
            border: 1px solid var(--page-789bet-border-color);
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
        }

        .page-789bet__advantage-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
        }

        .page-789bet__advantage-title {
            font-size: 22px;
            color: var(--page-789bet-primary-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-789bet__advantage-description {
            font-size: 16px;
            color: var(--page-789bet-secondary-color);
            text-align: justify;
        }

        details.page-789bet__faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid var(--page-789bet-border-color);
            overflow: hidden;
            background: var(--page-789bet-bg-white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        details.page-789bet__faq-item summary.page-789bet__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
        }
        details.page-789bet__faq-item summary.page-789bet__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-789bet__faq-item summary.page-789bet__faq-question:hover {
            background: var(--page-789bet-bg-light);
        }
        .page-789bet__faq-qtext {
            flex: 1;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: var(--page-789bet-text-dark);
        }
        .page-789bet__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--page-789bet-primary-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-789bet__faq-item .page-789bet__faq-answer {
            padding: 0 20px 20px;
            background: var(--page-789bet-bg-light);
            border-radius: 0 0 8px 8px;
        }
        .page-789bet__faq-answer p {
            font-size: 16px;
            color: var(--page-789bet-secondary-color);
            margin: 0;
            text-align: justify;
        }

        .page-789bet__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--page-789bet-primary-color);
            color: var(--page-789bet-text-light);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            animation: page-789bet-pulse 2s infinite;
            white-space: nowrap;
            word-wrap: break-word;
            box-sizing: border-box;
            max-width: calc(100% - 40px);
        }

        @keyframes page-789bet-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            .page-789bet__container {
                padding: 0 10px;
            }

            .page-789bet__hero-section {
                padding-bottom: 30px;
            }

            .page-789bet__hero-title {
                font-size: clamp(24px, 8vw, 36px);
            }

            .page-789bet__hero-description {
                font-size: 16px;
                padding: 0 5px;
            }

            .page-789bet__cta-button {
                padding: 12px 20px;
                font-size: 18px;
                width: 100% !important;
                max-width: 100% !important;
                margin: 0 auto;
                display: block;
            }

            .page-789bet__about-section,
            .page-789bet__games-showcase,
            .page-789bet__promotions-section,
            .page-789bet__guide-section,
            .page-789bet__why-choose-section,
            .page-789bet__faq-section,
            .page-789bet__final-cta-section {
                padding: 40px 0;
                margin-bottom: 15px;
            }

            .page-789bet__section-title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .page-789bet__text-block {
                font-size: 15px;
            }

            .page-789bet__list-item {
                font-size: 15px;
                padding-left: 25px;
            }

            .page-789bet__games-grid,
            .page-789bet__promotions-grid,
            .page-789bet__why-choose-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-789bet__game-title {
                font-size: 20px;
            }

            .page-789bet__game-description {
                font-size: 14px;
            }

            .page-789bet__game-button {
                font-size: 15px;
                padding: 9px 18px;
                width: 100% !important;
                max-width: 100% !important;
            }

            .page-789bet__promo-title {
                font-size: 20px;
            }

            .page-789bet__promo-description {
                font-size: 14px;
            }

            .page-789bet__promo-button {
                font-size: 16px;
                padding: 10px 20px;
                width: 100% !important;
                max-width: 100% !important;
            }

            .page-789bet__step-item {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .page-789bet__step-number {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .page-789bet__step-content h3 {
                font-size: 20px;
            }

            .page-789bet__step-content p {
                font-size: 15px;
            }

            .page-789bet__step-button {
                font-size: 15px;
                padding: 9px 18px;
                width: 100% !important;
                max-width: 100% !important;
            }

            .page-789bet__advantage-title {
                font-size: 20px;
            }

            .page-789bet__advantage-description {
                font-size: 15px;
            }

            details.page-789bet__faq-item summary.page-789bet__faq-question {
                padding: 15px;
            }
            .page-789bet__faq-qtext {
                font-size: 16px;
            }
            .page-789bet__faq-toggle {
                font-size: 20px;
            }
            details.page-789bet__faq-item .page-789bet__faq-answer {
                padding: 0 15px 15px;
            }
            .page-789bet__faq-answer p {
                font-size: 15px;
            }

            .page-789bet__floating-button {
                padding: 12px 20px;
                font-size: 16px;
                bottom: 15px;
                right: 15px;
                white-space: normal !important;
                word-wrap: break-word !important;
                max-width: calc(100% - 30px) !important;
            }

            .page-789bet img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-789bet__section,
            .page-789bet__card,
            .page-789bet__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 10px;
                padding-right: 10px;
            }
            .page-789bet__hero-image-wrapper {
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .page-789bet__hero-title {
                font-size: clamp(20px, 10vw, 32px);
            }
            .page-789bet__hero-description {
                font-size: 15px;
            }
            .page-789bet__cta-button {
                font-size: 16px;
            }
            .page-789bet__section-title {
                font-size: 24px;
            }
            .page-789bet__floating-button {
                font-size: 15px;
                padding: 10px 18px;
            }
        }
    