
    .page-0k789 {
        background-color: #1a1a1a;
        color: #f0f0f0;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        padding-bottom: 70px; /* Đảm bảo không gian cho nút nổi */
    }

    .page-0k789__section {
        padding: 20px 15px;
        max-width: 1200px;
        margin: 0 auto;
    }

    @media (min-width: 769px) {
        .page-0k789__section {
            padding: 40px 20px;
        }
    }

    .page-0k789__hero-section {
        padding-top: 10px; /* Khoảng đệm trên nhỏ, phần chính được xử lý bởi body padding-top */
        text-align: center;
        padding-bottom: 30px;
        background-color: #2c2c2c;
    }

    .page-0k789__hero-section h1 {
        font-size: 2.2em;
        color: #ffcc00;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }

    .page-0k789__hero-section p {
        font-size: 1.1em;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-0k789__hero-image-container {
        margin-top: 20px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-0k789__hero-image {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .page-0k789__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(26, 26, 26, 0.95); /* Nền tối bán trong suốt */
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    }

    .page-0k789__floating-buttons button {
        flex: 1;
        margin: 0 5px;
        padding: 12px 0;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        text-transform: uppercase;
        transition: background-color 0.3s ease;
        color: #1a1a1a; /* Chữ tối cho nút sáng */
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .page-0k789__floating-buttons .page-0k789__register-button {
        background-color: #ffcc00; /* Màu vàng nổi bật */
    }

    .page-0k789__floating-buttons .page-0k789__login-button {
        background-color: #007bff; /* Màu xanh nổi bật */
        color: #f0f0f0; /* Chữ sáng cho nút xanh */
    }

    .page-0k789__floating-buttons .page-0k789__register-button:hover {
        background-color: #e6b800;
    }

    .page-0k789__floating-buttons .page-0k789__login-button:hover {
        background-color: #0056b3;
    }

    .page-0k789__product-showcase h2, 
    .page-0k789__promotions h2, 
    .page-0k789__game-providers h2, 
    .page-0k789__about h2, 
    .page-0k789__faq-section h2, 
    .page-0k789__cta-section h2 {
        font-size: 1.8em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-0k789__product-showcase h2::after, 
    .page-0k789__promotions h2::after, 
    .page-0k789__game-providers h2::after, 
    .page-0k789__about h2::after, 
    .page-0k789__faq-section h2::after, 
    .page-0k789__cta-section h2::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #007bff;
        border-radius: 2px;
    }

    .page-0k789__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-0k789__product-item {
        background-color: #2c2c2c;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 15px;
        box-sizing: border-box;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-0k789__product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    }

    .page-0k789__product-image-container {
        width: 100%;
        height: 180px;
        overflow: hidden;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3a3a3a;
    }

    .page-0k789__product-image {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        object-fit: cover;
    }

    .page-0k789__product-item h3 {
        font-size: 1.4em;
        color: #ffcc00;
        margin: 15px 10px 10px;
    }

    .page-0k789__product-item p {
        font-size: 0.95em;
        color: #cccccc;
        padding: 0 15px;
    }

    .page-0k789__promotion-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-0k789__promotion-item {
        background-color: #2c2c2c;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-0k789__promotion-item:hover {
        transform: translateY(-3px);
    }

    .page-0k789__promotion-item h3 {
        color: #ffcc00;
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .page-0k789__promotion-item p {
        color: #cccccc;
        font-size: 1em;
    }

    .page-0k789__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-0k789__provider-item {
        background-color: #2c2c2c;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-0k789__provider-item:hover {
        transform: scale(1.05);
    }

    .page-0k789__provider-logo-container {
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5px;
    }

    .page-0k789__provider-logo {
        max-width: 90% !important;
        max-height: 100% !important;
        height: auto !important;
        display: block;
        object-fit: contain;
    }

    .page-0k789__provider-item span {
        font-size: 0.85em;
        color: #f0f0f0;
        display: block;
    }

    .page-0k789__about p {
        color: #cccccc;
        font-size: 1em;
        text-align: justify;
        margin-bottom: 15px;
    }

    .page-0k789__faq-item {
        background-color: #2c2c2c;
        border-radius: 10px;
        margin-bottom: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        overflow: hidden;
        box-sizing: border-box;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .page-0k789__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a3a;
        border-bottom: 1px solid #4a4a4a;
        transition: background-color 0.3s ease;
    }

    .page-0k789__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-0k789__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #f0f0f0;
        pointer-events: none; /* Ngăn chặn việc h3 chặn sự kiện click */
    }

    .page-0k789__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Ngăn chặn việc span chặn sự kiện click */
    }

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

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

    .page-0k789__faq-item.active .page-0k789__faq-answer {
        max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-0k789__cta-section {
        text-align: center;
        background-color: #2c2c2c;
        padding-top: 40px;
        padding-bottom: 80px; /* Thêm padding dưới để nút nổi không che mất nội dung */
    }

    .page-0k789__cta-section p {
        font-size: 1.1em;
        margin-bottom: 25px;
        color: #f0f0f0;
    }

    .page-0k789__cta-button {
        background-color: #ffcc00;
        color: #1a1a1a;
        border: none;
        padding: 15px 30px;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        text-transform: uppercase;
    }

    .page-0k789__cta-button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-0k789__hero-section h1 {
            font-size: 1.8em;
        }

        .page-0k789__hero-section p {
            font-size: 1em;
        }

        .page-0k789__product-showcase h2, 
        .page-0k789__promotions h2, 
        .page-0k789__game-providers h2, 
        .page-0k789__about h2, 
        .page-0k789__faq-section h2, 
        .page-0k789__cta-section h2 {
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .page-0k789__product-grid {
            grid-template-columns: 1fr;
        }

        .page-0k789__product-item, 
        .page-0k789__promotion-item, 
        .page-0k789__provider-item, 
        .page-0k789__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; 
            padding-right: 15px !important;
            box-sizing: border-box !important;
        }

        .page-0k789__product-grid, 
        .page-0k789__promotion-list, 
        .page-0k789__provider-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-0k789__floating-buttons button {
            font-size: 1em;
            padding: 10px 0;
        }

        .page-0k789 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-0k789__hero-image-container,
        .page-0k789__product-image-container,
        .page-0k789__provider-logo-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-0k789__faq-question h3 {
            font-size: 1em;
        }

        .page-0k789__faq-answer {
            font-size: 0.9em;
        }
    }
  