
    /* CSS cho trang 789bét */
    .page-789betwin {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f4f4f4;
        padding-top: 120px; /* Đảm bảo nội dung không bị che bởi header cố định */
    }

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

    .page-789betwin__section--dark {
        background-color: #333;
        color: #fff;
    }

    .page-789betwin__section-title {
        text-align: center;
        color: #0056b3;
        margin-bottom: 30px;
        font-size: 2.5em;
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-789betwin__section--dark .page-789betwin__section-title {
        color: #00c0ff;
    }

    .page-789betwin__hero-section {
        text-align: center;
        padding: 0; /* Hero image will define its own padding */
        margin-bottom: 30px;
        background-color: transparent; /* No background color for hero section */
        box-shadow: none;
        border-radius: 0;
    }

    .page-789betwin__hero-image-wrapper {
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-789betwin__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 0; /* Hero image usually no border-radius */
    }

    .page-789betwin__hero-content {
        padding: 30px 20px;
        background-color: #fff;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-top: -8px; /* Slightly overlap with image to connect */
        position: relative;
        z-index: 1;
    }

    .page-789betwin__hero-content h1 {
        font-size: 3em;
        color: #0056b3;
        margin-bottom: 15px;
    }

    .page-789betwin__hero-content p {
        font-size: 1.2em;
        color: #555;
        max-width: 800px;
        margin: 0 auto 20px;
    }

    .page-789betwin__cta-button {
        display: inline-block;
        background-color: #007bff;
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-789betwin__cta-button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-789betwin__intro-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        justify-content: center;
        text-align: left;
    }

    .page-789betwin__intro-text {
        flex: 1;
        min-width: 300px;
    }

    .page-789betwin__intro-text h2 {
        color: #0056b3;
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-789betwin__intro-image-wrapper {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }

    .page-789betwin__intro-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

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

    .page-789betwin__game-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none; /* Ensure link styles are reset */
        color: #333;
        display: block; /* Make the whole card clickable */
    }

    .page-789betwin__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-789betwin__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for uniformity */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #eee;
    }

    .page-789betwin__game-card-image {
        width: 100%; /* Ensure image fills its container */
        height: 100%;
        object-fit: cover; /* Crop image to fit */
        display: block;
    }

    .page-789betwin__game-card-title {
        font-size: 1.5em;
        margin: 15px 10px;
        color: #0056b3;
        font-weight: bold;
    }

    .page-789betwin__game-card-description {
        font-size: 0.95em;
        padding: 0 15px 15px;
        color: #666;
    }

    .page-789betwin__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        justify-items: center;
        padding: 0 20px;
    }

    .page-789betwin__provider-logo-wrapper {
        width: 100%;
        max-width: 150px;
        height: 100px; /* Fixed height for logo uniformity */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        transition: transform 0.2s ease;
    }

    .page-789betwin__provider-logo-wrapper:hover {
        transform: translateY(-5px);
    }

    .page-789betwin__provider-logo {
        max-width: 90%;
        max-height: 90%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    .page-789betwin__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }

    .page-789betwin__promotion-card {
        background-color: #f9f9f9;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-align: center;
        padding: 25px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-789betwin__promotion-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-789betwin__promotion-card h3 {
        color: #007bff;
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .page-789betwin__promotion-card p {
        color: #555;
        margin-bottom: 20px;
    }

    .page-789betwin__why-choose-list {
        list-style: none;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-789betwin__why-choose-item {
        background-color: #f9f9f9;
        border-left: 5px solid #007bff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .page-789betwin__why-choose-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .page-789betwin__why-choose-item h3 {
        color: #0056b3;
        margin-bottom: 10px;
        font-size: 1.4em;
    }

    .page-789betwin__faq-section {
        background-color: #f9f9f9;
    }

    .page-789betwin__faq-list {
        list-style: none;
        padding: 0 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-789betwin__faq-item {
        background-color: #fff;
        border: 1px solid #ddd;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .page-789betwin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #eaf6ff;
        color: #0056b3;
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-789betwin__faq-question:hover {
        background-color: #d0e9ff;
    }

    .page-789betwin__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-789betwin__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-789betwin__faq-item.active .page-789betwin__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-789betwin__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: #555;
    }

    .page-789betwin__faq-item.active .page-789betwin__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-789betwin__floating-login-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #ff0000; /* Eye-catching red */
        color: #fff;
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .page-789betwin__floating-login-button:hover {
        background-color: #cc0000;
        transform: translateY(-3px);
    }

    .page-789betwin__floating-login-button span {
        display: block;
        line-height: 1.2;
    }

    .page-789betwin__floating-login-button .small-text {
        font-size: 0.8em;
        font-weight: normal;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-789betwin {
            padding-top: 100px; /* Điều chỉnh cho mobile */
        }
        .page-789betwin__section {
            padding: 25px 15px;
            margin-bottom: 20px;
        }
        .page-789betwin__section-title {
            font-size: 2em;
            margin-bottom: 20px;
        }
        .page-789betwin__hero-content h1 {
            font-size: 2.2em;
        }
        .page-789betwin__hero-content p {
            font-size: 1em;
        }
        .page-789betwin__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-789betwin__intro-content {
            flex-direction: column;
            text-align: center;
        }
        .page-789betwin__intro-text, .page-789betwin__intro-image-wrapper {
            min-width: unset;
            width: 100%;
        }
        .page-789betwin__game-categories-grid,
        .page-789betwin__providers-grid,
        .page-789betwin__promotions-grid,
        .page-789betwin__why-choose-list {
            grid-template-columns: 1fr;
            padding: 0 10px;
            gap: 20px;
        }
        .page-789betwin__game-card-title {
            font-size: 1.3em;
        }
        .page-789betwin__game-card-description {
            font-size: 0.9em;
        }
        .page-789betwin__faq-question {
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-789betwin__faq-answer {
            padding: 15px 15px !important; /* Important for mobile */
        }
        .page-789betwin__floating-login-button {
            bottom: 15px;
            right: 15px;
            padding: 12px 20px;
            font-size: 1em;
            gap: 8px;
        }
        .page-789betwin__floating-login-button .small-text {
            font-size: 0.75em;
        }
        /* Ensure all images are responsive on mobile */
        .page-789betwin img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-789betwin__hero-image-wrapper,
        .page-789betwin__game-card-image-wrapper,
        .page-789betwin__provider-logo-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
    @media (max-width: 480px) {
        .page-789betwin__section-title {
            font-size: 1.8em;
        }
        .page-789betwin__hero-content h1 {
            font-size: 1.8em;
        }
        .page-789betwin__hero-content p {
            font-size: 0.9em;
        }
        .page-789betwin__floating-login-button {
            padding: 10px 18px;
            font-size: 0.9em;
        }
    }
  