
        .page-ok789bot {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333333;
            background-color: #f8f9fa;
        }

        .page-ok789bot__hero-section {
            position: relative;
            width: 100%;
            padding-top: 10px; /* Offset for fixed header */
            padding-bottom: 40px;
            background-color: #ffffff;
            text-align: center;
        }

        .page-ok789bot__hero-image {
            width: 100%;
            height: auto;
            display: block;
            max-width: 1200px;
            margin: 0 auto;
            object-fit: cover;
            border-radius: 8px;
        }

        .page-ok789bot__hero-content {
            max-width: 900px;
            margin: 20px auto 0;
            padding: 0 20px;
        }

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

        .page-ok789bot__hero-description {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: #64748b;
            margin-bottom: 30px;
        }

        .page-ok789bot__btn-primary {
            display: inline-block;
            background-color: #2563eb;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-ok789bot__btn-primary:hover {
            background-color: #1a4ed8;
        }

        .page-ok789bot__floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff0000; /* Eye-catching red */
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none; /* Hidden by default, shown on mobile via JS */
            transition: background-color 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
            max-width: 200px;
            text-align: center;
        }

        .page-ok789bot__floating-btn:hover {
            background-color: #cc0000;
        }

        .page-ok789bot__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .page-ok789bot__section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-ok789bot__content-text {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #444444;
        }

        .page-ok789bot__content-text strong {
            color: #2563eb;
        }

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

        .page-ok789bot__advantage-item {
            background-color: #f0f8ff;
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 1px 5px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .page-ok789bot__advantage-item:hover {
            transform: translateY(-5px);
        }

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

        .page-ok789bot__advantage-description {
            font-size: 0.95rem;
            color: #64748b;
        }

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

        .page-ok789bot__game-card {
            background-color: #fdfdfd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

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

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

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

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

        .page-ok789bot__game-description {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-ok789bot__game-btn {
            background-color: #64748b;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: background-color 0.3s ease;
            display: block;
            margin-top: auto;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-ok789bot__game-btn:hover {
            background-color: #4a5568;
        }

        .page-ok789bot__guide-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }

        .page-ok789bot__guide-item {
            background-color: #f0f8ff;
            padding: 20px 25px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
        }

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

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

        .page-ok789bot__promo-card {
            background-color: #e6f0ff;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 30px;
        }

        .page-ok789bot__promo-title {
            font-size: 1.8rem;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .page-ok789bot__promo-description {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 25px;
        }

        .page-ok789bot__faq-list {
            margin-top: 30px;
        }

        .page-ok789bot__faq-item {
            background-color: #f0f8ff;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.06);
            overflow: hidden;
        }

        .page-ok789bot__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.15rem;
            font-weight: 600;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            background-color: #e6f0ff;
            transition: background-color 0.3s ease;
        }

        .page-ok789bot__faq-question:hover {
            background-color: #d9e6f2;
        }

        .page-ok789bot__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click */
            flex-grow: 1;
        }

        .page-ok789bot__faq-toggle {
            font-size: 1.5rem;
            line-height: 1;
            margin-left: 15px;
            pointer-events: none; /* Prevent toggle from blocking click */
            color: #2563eb;
        }

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

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

        .page-ok789bot__conclusion-text {
            font-size: 1.1rem;
            line-height: 1.7;
            text-align: center;
            color: #444444;
            margin-bottom: 30px;
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .page-ok789bot__section {
                padding: 40px 15px;
            }
            .page-ok789bot__hero-content {
                padding: 0 15px;
            }
            .page-ok789bot__games-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-ok789bot__hero-section {
                padding-top: 10px !important;
                padding-bottom: 20px;
            }
            .page-ok789bot__hero-title {
                font-size: 2rem;
            }
            .page-ok789bot__hero-description {
                font-size: 0.95rem;
            }
            .page-ok789bot__btn-primary {
                padding: 12px 20px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-ok789bot__floating-btn {
                display: block; /* Show floating button on mobile */
                max-width: 180px;
                right: 15px;
                bottom: 15px;
                font-size: 0.9rem;
                padding: 10px 15px;
            }
            .page-ok789bot__section {
                padding: 30px 15px;
                margin-bottom: 20px;
            }
            .page-ok789bot__section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            .page-ok789bot__content-text {
                font-size: 0.95rem;
            }
            .page-ok789bot__advantages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-ok789bot__games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-ok789bot__game-image {
                height: 180px;
            }
            .page-ok789bot__guide-item {
                padding: 15px 20px;
            }
            .page-ok789bot__guide-title {
                font-size: 1.1rem;
            }
            .page-ok789bot__promo-card {
                padding: 25px;
            }
            .page-ok789bot__promo-title {
                font-size: 1.5rem;
            }
            .page-ok789bot__promo-description {
                font-size: 1rem;
            }
            .page-ok789bot__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }
            .page-ok789bot__faq-answer {
                padding: 15px 20px !important;
                font-size: 0.95rem;
            }
            .page-ok789bot__conclusion-text {
                font-size: 1rem;
            }
            .page-ok789bot img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block;
            }
            .page-ok789bot__games-grid,
            .page-ok789bot__advantages-grid,
            .page-ok789bot__guide-list,
            .page-ok789bot__faq-list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-ok789bot__games-grid .page-ok789bot__game-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-ok789bot__advantage-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-ok789bot__guide-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-ok789bot__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
        }
    