
    /* Bắt đầu CSS cho trang page-123bet-jfg-cn-com */
    :root {
        --page-primary-color: #e44d26; /* Một màu cam đỏ nổi bật, phù hợp với theme game */
        --page-secondary-color: #333;
        --page-accent-color: #f7b731; /* Màu vàng cam để nhấn nhá */
        --page-text-color-light: #f8f8f8;
        --page-text-color-dark: #1a1a1a;
        --page-background-dark: #121212; /* Nền tối cho cảm giác sang trọng */
        --page-background-light: #282828;
        --page-border-radius: 8px;
        --page-spacing-md: 20px;
        --page-spacing-lg: 40px;
    }

    .page-123bet-jfg-cn-com {
        font-family: 'Arial', sans-serif;
        color: var(--page-text-color-light);
        background-color: var(--page-background-dark);
        line-height: 1.6;
        /* Fallback to 0 if shared.css does not provide header-offset, then it will be handled by hero-section or main. If shared.css provides it, this will be 0 and body padding-top will handle it. */
        /* Removed padding-top here as it's handled by body in shared.css or hero section directly */
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com {
             /* Removed padding-top here as it's handled by body in shared.css or hero section directly */
        }
    }

    /* Fixed navigation bar spacing - assuming body padding-top from shared.css */
    .page-123bet-jfg-cn-com__hero-section {
        padding-top: 10px; /* Small decorative top padding, as body handles main offset */
    }

    .page-123bet-jfg-cn-com__section {
        padding: var(--page-spacing-lg) var(--page-spacing-md);
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-123bet-jfg-cn-com__section--dark {
        background-color: var(--page-background-light);
    }

    .page-123bet-jfg-cn-com__title {
        color: var(--page-accent-color);
        margin-bottom: var(--page-spacing-md);
        font-size: 2.5em;
        font-weight: bold;
        text-transform: uppercase;
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__title {
            font-size: 1.8em;
        }
    }

    .page-123bet-jfg-cn-com__subtitle {
        color: var(--page-text-color-light);
        font-size: 1.5em;
        margin-bottom: var(--page-spacing-lg);
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__subtitle {
            font-size: 1.2em;
        }
    }

    .page-123bet-jfg-cn-com__button {
        display: inline-block;
        background-color: var(--page-primary-color);
        color: var(--page-text-color-light);
        padding: 12px 25px;
        border-radius: var(--page-border-radius);
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-123bet-jfg-cn-com__button:hover {
        background-color: #c93a1d; /* Darker shade of primary color */
    }

    /* Hero Section */
    .page-123bet-jfg-cn-com__hero-section {
        background: var(--page-background-dark);
        position: relative;
        overflow: hidden;
        padding-bottom: var(--page-spacing-lg);
    }

    .page-123bet-jfg-cn-com__hero-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: cover;
        opacity: 0.7;
        margin-bottom: var(--page-spacing-md);
    }
    .page-123bet-jfg-cn-com__hero-content {
        position: relative;
        z-index: 2;
        padding: 0 var(--page-spacing-md);
    }
    .page-123bet-jfg-cn-com__hero-content h1 {
        font-size: 3.5em;
        color: var(--page-accent-color);
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        text-align: center; /* Brand keyword centered */
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__hero-content h1 {
            font-size: 2.2em;
        }
    }
    .page-123bet-jfg-cn-com__hero-content p {
        font-size: 1.2em;
        color: var(--page-text-color-light);
        max-width: 800px;
        margin: 0 auto 30px auto;
        text-align: center;
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__hero-content p {
            font-size: 1em;
        }
    }
    .page-123bet-jfg-cn-com__hero-cta-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    /* Floating Buttons */
    .page-123bet-jfg-cn-com__floating-buttons {
        position: fixed;
        bottom: var(--page-spacing-md);
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: 90%;
        max-width: 400px;
        justify-content: center;
    }
    .page-123bet-jfg-cn-com__floating-button {
        flex: 1;
        padding: 15px 10px;
        text-align: center;
        font-size: 1.1em;
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .page-123bet-jfg-cn-com__floating-button--register {
        background-color: var(--page-accent-color);
        color: var(--page-text-color-dark);
    }
    .page-123bet-jfg-cn-com__floating-button--register:hover {
        background-color: #e6a72e;
    }
    .page-123bet-jfg-cn-com__floating-button--login {
        background-color: var(--page-primary-color);
        color: var(--page-text-color-light);
    }
    .page-123bet-jfg-cn-com__floating-button--login:hover {
        background-color: #c93a1d;
    }

    /* Product Display */
    .page-123bet-jfg-cn-com__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-spacing-md);
        margin-top: var(--page-spacing-lg);
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__product-grid {
            grid-template-columns: 1fr;
        }
    }
    .page-123bet-jfg-cn-com__product-item {
        background-color: var(--page-background-light);
        border-radius: var(--page-border-radius);
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        padding-bottom: 20px;
    }
    .page-123bet-jfg-cn-com__product-image-wrapper {
        width: 100%;
        max-height: 250px; /* Centered product display, image covers */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .page-123bet-jfg-cn-com__product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        display: block;
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__product-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-123bet-jfg-cn-com__product-image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            overflow: hidden;
        }
    }
    .page-123bet-jfg-cn-com__product-item h3 {
        color: var(--page-accent-color);
        margin: 15px 10px 10px;
        font-size: 1.3em;
    }
    .page-123bet-jfg-cn-com__product-item p {
        color: var(--page-text-color-light);
        padding: 0 15px;
        font-size: 0.95em;
    }

    /* Promotions Section */
    .page-123bet-jfg-cn-com__promo-card {
        background-color: var(--page-background-light);
        border-radius: var(--page-border-radius);
        padding: var(--page-spacing-md);
        margin-bottom: var(--page-spacing-md);
        text-align: left;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .page-123bet-jfg-cn-com__promo-card h3 {
        color: var(--page-primary-color);
        margin-top: 0;
        font-size: 1.4em;
    }
    .page-123bet-jfg-cn-com__promo-card p {
        color: var(--page-text-color-light);
        font-size: 1em;
    }
    .page-123bet-jfg-cn-com__promo-button {
        margin-top: 15px;
    }

    /* Game Providers */
    .page-123bet-jfg-cn-com__providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--page-spacing-md);
        margin-top: var(--page-spacing-lg);
        list-style: none; /* Remove default list styling */
        padding: 0; /* Remove default padding */
    }
    .page-123bet-jfg-cn-com__provider-item {
        background-color: var(--page-background-light);
        border-radius: var(--page-border-radius);
        padding: 15px 20px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        color: var(--page-text-color-light);
        font-weight: bold;
        font-size: 1.1em;
        min-width: 150px;
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-123bet-jfg-cn-com__providers-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
    }


    /* Payment Methods */
    .page-123bet-jfg-cn-com__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--page-spacing-md);
        margin-top: var(--page-spacing-lg);
        list-style: none; /* Remove default list styling */
        padding: 0; /* Remove default padding */
    }
    .page-123bet-jfg-cn-com__payment-item {
        background-color: var(--page-background-light);
        border-radius: var(--page-border-radius);
        padding: 15px 20px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        color: var(--page-text-color-light);
        font-weight: bold;
        font-size: 1.1em;
        min-width: 120px;
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }
    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-123bet-jfg-cn-com__payment-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
    }

    /* FAQ Section */
    .page-123bet-jfg-cn-com__faq-container {
        max-width: 800px;
        margin: var(--page-spacing-lg) auto;
        padding: 0 var(--page-spacing-md);
    }

    .page-123bet-jfg-cn-com__faq-item {
        background-color: var(--page-background-light);
        border-radius: var(--page-border-radius);
        margin-bottom: 10px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-123bet-jfg-cn-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px var(--page-spacing-md);
        cursor: pointer;
        user-select: none;
        background-color: var(--page-primary-color);
        color: var(--page-text-color-light);
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .page-123bet-jfg-cn-com__faq-question:hover {
        background-color: #c93a1d;
    }

    .page-123bet-jfg-cn-com__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: inherit; /* Inherit color from parent */
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }

    .page-123bet-jfg-cn-com__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-123bet-jfg-cn-com__faq-item.active .page-123bet-jfg-cn-com__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar visually */
    }

    .page-123bet-jfg-cn-com__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--page-spacing-md);
        background-color: var(--page-background-light);
        color: var(--page-text-color-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        text-align: left;
    }

    .page-123bet-jfg-cn-com__faq-item.active .page-123bet-jfg-cn-com__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px var(--page-spacing-md) !important;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .page-123bet-jfg-cn-com__section {
            padding: var(--page-spacing-md) 15px;
        }
        .page-123bet-jfg-cn-com__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-123bet-jfg-cn-com__faq-question h3 {
            font-size: 1em;
        }
        .page-123bet-jfg-cn-com__faq-answer {
            padding: 0 15px;
        }
        .page-123bet-jfg-cn-com__faq-item.active .page-123bet-jfg-cn-com__faq-answer {
            padding: 15px 15px !important;
        }
    }

    /* Contact Section */
    .page-123bet-jfg-cn-com__contact-info {
        margin-top: var(--page-spacing-md);
    }
    .page-123bet-jfg-cn-com__contact-info p {
        margin-bottom: 10px;
    }
    .page-123bet-jfg-cn-com__social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .page-123bet-jfg-cn-com__social-link {
        color: var(--page-accent-color);
        font-size: 1.2em;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .page-123bet-jfg-cn-com__social-link:hover {
        color: var(--page-primary-color);
    }

  