
    /* CSS Styles for page-789betjackpot */
    :root {
        --page-789betjackpot-primary-color: #e44d26; /* Cam đỏ */
        --page-789betjackpot-secondary-color: #333;
        --page-789betjackpot-accent-color: #f7b731; /* Vàng */
        --page-789betjackpot-text-color: #333;
        --page-789betjackpot-light-text-color: #f8f8f8;
        --page-789betjackpot-background-light: #f4f4f4;
        --page-789betjackpot-background-dark: #2c3e50; /* Xám đậm */
        --page-789betjackpot-border-radius: 8px;
        --page-789betjackpot-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-789betjackpot {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-789betjackpot-text-color);
        background-color: #fff;
        padding: 0;
        margin: 0;
    }

    /* Fixed header spacing */
    .page-789betjackpot__hero-section {
        padding-top: 60px; /* Adjust based on actual header height */
        position: relative;
        overflow: hidden;
        text-align: center;
        background-color: var(--page-789betjackpot-background-dark);
        color: var(--page-789betjackpot-light-text-color);
        padding-bottom: 40px;
    }
    @media (max-width: 768px) {
        .page-789betjackpot__hero-section {
            padding-top: 50px; /* Adjust for mobile header height */
            padding-bottom: 30px;
        }
    }

    .page-789betjackpot__hero-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        filter: brightness(0.6); /* Allowed for background effect, not color change */
    }
    .page-789betjackpot__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }
    .page-789betjackpot__hero-title {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: var(--page-789betjackpot-accent-color);
        line-height: 1.2;
    }
    .page-789betjackpot__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    .page-789betjackpot__cta-button {
        display: inline-block;
        background-color: var(--page-789betjackpot-primary-color);
        color: var(--page-789betjackpot-light-text-color);
        padding: 12px 25px;
        border-radius: var(--page-789betjackpot-border-radius);
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }
    .page-789betjackpot__cta-button:hover {
        background-color: #c7411e;
        transform: translateY(-2px);
    }

    .page-789betjackpot__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }
    .page-789betjackpot__section:nth-of-type(even) {
        background-color: var(--page-789betjackpot-background-light);
    }
    .page-789betjackpot__section-title {
        font-size: 2em;
        color: var(--page-789betjackpot-primary-color);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }
    .page-789betjackpot__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--page-789betjackpot-accent-color);
        border-radius: 2px;
    }
    .page-789betjackpot__section-description {
        font-size: 1em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-789betjackpot__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }
    .page-789betjackpot__feature-item {
        background-color: #fff;
        padding: 25px;
        border-radius: var(--page-789betjackpot-border-radius);
        box-shadow: var(--page-789betjackpot-box-shadow);
        text-align: left;
        transition: transform 0.3s ease;
    }
    .page-789betjackpot__feature-item:hover {
        transform: translateY(-5px);
    }
    .page-789betjackpot__feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        object-fit: contain;
    }
    .page-789betjackpot__feature-title {
        font-size: 1.3em;
        color: var(--page-789betjackpot-primary-color);
        margin-bottom: 10px;
        text-align: center;
    }
    .page-789betjackpot__feature-text {
        font-size: 0.95em;
        color: var(--page-789betjackpot-secondary-color);
    }

    .page-789betjackpot__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        margin-top: 30px;
        padding: 0;
        list-style: none;
    }
    .page-789betjackpot__step-item {
        background-color: #fff;
        padding: 25px;
        border-radius: var(--page-789betjackpot-border-radius);
        box-shadow: var(--page-789betjackpot-box-shadow);
        flex: 1 1 calc(33% - 50px); /* 3 items per row on desktop */
        min-width: 280px;
        max-width: 350px;
        text-align: left;
        position: relative;
        box-sizing: border-box; /* Crucial for list items */
    }
    .page-789betjackpot__step-number {
        display: inline-block;
        background-color: var(--page-789betjackpot-accent-color);
        color: var(--page-789betjackpot-light-text-color);
        width: 35px;
        height: 35px;
        line-height: 35px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 15px;
    }
    .page-789betjackpot__step-title {
        font-size: 1.2em;
        color: var(--page-789betjackpot-primary-color);
        margin-bottom: 10px;
    }
    .page-789betjackpot__step-description {
        font-size: 0.95em;
        color: var(--page-789betjackpot-secondary-color);
    }

    .page-789betjackpot__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }
    .page-789betjackpot__game-card {
        background-color: #fff;
        border-radius: var(--page-789betjackpot-border-radius);
        box-shadow: var(--page-789betjackpot-box-shadow);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
    }
    .page-789betjackpot__game-card:hover {
        transform: translateY(-5px);
    }
    .page-789betjackpot__game-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }
    .page-789betjackpot__game-content {
        padding: 20px;
    }
    .page-789betjackpot__game-title {
        font-size: 1.2em;
        color: var(--page-789betjackpot-primary-color);
        margin-bottom: 10px;
    }
    .page-789betjackpot__game-description {
        font-size: 0.9em;
        color: var(--page-789betjackpot-secondary-color);
        margin-bottom: 15px;
    }

    .page-789betjackpot__promotion-card {
        background-color: var(--page-789betjackpot-primary-color);
        color: var(--page-789betjackpot-light-text-color);
        padding: 30px;
        border-radius: var(--page-789betjackpot-border-radius);
        box-shadow: var(--page-789betjackpot-box-shadow);
        margin-top: 30px;
        text-align: center;
    }
    .page-789betjackpot__promotion-title {
        font-size: 2em;
        margin-bottom: 15px;
        color: var(--page-789betjackpot-accent-color);
    }
    .page-789betjackpot__promotion-text {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .page-789betjackpot__faq-container {
        margin-top: 40px;
        text-align: left;
    }
    .page-789betjackpot__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: var(--page-789betjackpot-border-radius);
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: var(--page-789betjackpot-box-shadow);
    }
    .page-789betjackpot__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f9f9f9;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--page-789betjackpot-secondary-color);
        transition: background-color 0.3s ease;
        user-select: none;
    }
    .page-789betjackpot__faq-question:hover {
        background-color: #eee;
    }
    .page-789betjackpot__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-789betjackpot-secondary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }
    .page-789betjackpot__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-789betjackpot-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }
    .page-789betjackpot__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--page-789betjackpot-text-color);
    }
    .page-789betjackpot__faq-item.active .page-789betjackpot__faq-answer {
        max-height: 2000px !important;
        padding: 20px !important;
        opacity: 1;
    }
    .page-789betjackpot__faq-item.active .page-789betjackpot__faq-toggle {
        color: var(--page-789betjackpot-accent-color); /* Change color for active state */
    }

    /* Floating Login Button */
    .page-789betjackpot__floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: var(--page-789betjackpot-primary-color);
        color: var(--page-789betjackpot-light-text-color);
        padding: 15px 25px;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border: none;
        cursor: pointer;
    }
    .page-789betjackpot__floating-button:hover {
        background-color: #c7411e;
        transform: translateY(-3px);
    }
    .page-789betjackpot__floating-button img {
        margin-left: 8px; /* Corrected margin for icon */
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-789betjackpot__hero-title {
            font-size: 1.8em;
        }
        .page-789betjackpot__hero-description {
            font-size: 1em;
        }
        .page-789betjackpot__section {
            padding: 30px 15px;
        }
        .page-789betjackpot__section-title {
            font-size: 1.7em;
        }
        .page-789betjackpot__steps-list {
            flex-direction: column;
            align-items: center;
        }
        .page-789betjackpot__step-item {
            flex: 1 1 100%;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-789betjackpot__floating-button {
            width: auto;
            left: 50%;
            transform: translateX(-50%);
            bottom: 15px;
            padding: 12px 20px;
            font-size: 1em;
        }
        /* Ensure all images are responsive on mobile */
        .page-789betjackpot img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-789betjackpot__game-image {
            height: 150px;
        }
        .page-789betjackpot__promotion-title {
            font-size: 1.5em;
        }
        .page-789betjackpot__promotion-text {
            font-size: 1em;
        }
        .page-789betjackpot__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-789betjackpot__faq-question h3 {
            font-size: 1em;
        }
        .page-789betjackpot__faq-answer {
            padding: 0 15px;
        }
        .page-789betjackpot__faq-item.active .page-789betjackpot__faq-answer {
            padding: 15px !important;
        }
    }
  