
    :root {
        --page-game-b-i-168-primary-color: #ffcc00; /* Vàng rực rỡ */
        --page-game-b-i-168-secondary-color: #333333; /* Xám đậm */
        --page-game-b-i-168-accent-color: #e74c3c; /* Đỏ nhấn */
        --page-game-b-i-168-text-color: #ffffff; /* Trắng */
        --page-game-b-i-168-background-dark: #1a1a1a; /* Nền tối */
        --page-game-b-i-168-background-light: #2c2c2c; /* Nền sáng hơn */
        --page-game-b-i-168-border-color: #444444; /* Màu viền */
        --page-game-b-i-168-button-bg: #ffcc00;
        --page-game-b-i-168-button-text: #1a1a1a;
        --page-game-b-i-168-button-hover-bg: #e6b800;
    }

    /* Base styles for the page */
    .page-game-b-i-168 {
        font-family: 'Arial', sans-serif;
        color: var(--page-game-b-i-168-text-color);
        background-color: var(--page-game-b-i-168-background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Adjusted for fixed header */
    }

    .page-game-b-i-168__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-game-b-i-168__section {
        padding: 40px 0;
        text-align: center;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-game-b-i-168__section--dark {
        background-color: var(--page-game-b-i-168-background-dark);
    }

    .page-game-b-i-168__section--light {
        background-color: var(--page-game-b-i-168-background-light);
    }

    .page-game-b-i-168__title {
        color: var(--page-game-b-i-168-primary-color);
        font-size: 2.8em;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: bold;
    }

    .page-game-b-i-168__subtitle {
        color: var(--page-game-b-i-168-text-color);
        font-size: 1.8em;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .page-game-b-i-168__text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }

    /* Hero Section */
    .page-game-b-i-168__hero-section {
        position: relative;
        overflow: hidden;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        background-color: var(--page-game-b-i-168-background-dark);
        padding: 60px 20px; /* Ensure padding for content */
    }

    .page-game-b-i-168__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.4;
    }

    .page-game-b-i-168__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

    .page-game-b-i-168__hero-title {
        font-size: 3.5em;
        color: var(--page-game-b-i-168-primary-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-game-b-i-168__hero-description {
        font-size: 1.3em;
        color: var(--page-game-b-i-168-text-color);
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-game-b-i-168__button {
        display: inline-block;
        background-color: var(--page-game-b-i-168-button-bg);
        color: var(--page-game-b-i-168-button-text);
        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;
        border: none;
        cursor: pointer;
        margin: 0 10px;
    }

    .page-game-b-i-168__button:hover {
        background-color: var(--page-game-b-i-168-button-hover-bg);
        transform: translateY(-2px);
    }

    /* Info Cards */
    .page-game-b-i-168__info-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-game-b-i-168__info-card {
        background-color: var(--page-game-b-i-168-background-light);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid var(--page-game-b-i-168-primary-color);
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-game-b-i-168__info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game-b-i-168__info-card-icon {
        width: 250px; /* Enforced min size 200x200 */
        height: 250px; /* Enforced min size 200x200 */
        margin-bottom: 15px;
        object-fit: contain;
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .page-game-b-i-168__info-card-title {
        color: var(--page-game-b-i-168-primary-color);
        font-size: 1.5em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-game-b-i-168__info-card-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1em;
    }

    /* Game Showcase */
    .page-game-b-i-168__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-game-b-i-168__game-card {
        background-color: var(--page-game-b-i-168-background-light);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-game-b-i-168__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-game-b-i-168__game-image {
        width: 100%;
        height: 200px; /* Minimum height for image */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Ensure aspect ratio */
    }

    .page-game-b-i-168__game-content {
        padding: 20px;
    }

    .page-game-b-i-168__game-title {
        color: var(--page-game-b-i-168-primary-color);
        font-size: 1.4em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-game-b-i-168__game-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95em;
        margin-bottom: 15px;
    }

    /* Promotions */
    .page-game-b-i-168__promo-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-game-b-i-168__promo-item {
        background-color: var(--page-game-b-i-168-background-light);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        text-align: left;
        border-bottom: 3px solid var(--page-game-b-i-168-accent-color);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-game-b-i-168__promo-title {
        color: var(--page-game-b-i-168-primary-color);
        font-size: 1.3em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-game-b-i-168__promo-text {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1em;
    }

    /* Payment and Providers */
    .page-game-b-i-168__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-game-b-i-168__logo-item {
        background-color: var(--page-game-b-i-168-background-dark);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Fixed height for consistency */
        box-sizing: border-box;
    }

    .page-game-b-i-168__logo-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        filter: grayscale(80%) brightness(150%); /* Allowed as it's not changing original color, but enhancing visibility on dark background */
        transition: filter 0.3s ease;
        min-width: 200px; /* Enforced min size 200x200 */
        min-height: 200px; /* Enforced min size 200x200 */
    }

    .page-game-b-i-168__logo-image:hover {
        filter: grayscale(0%) brightness(100%);
    }

    /* FAQ Section */
    .page-game-b-i-168__faq-section {
        background-color: var(--page-game-b-i-168-background-light);
        padding: 60px 0;
    }

    .page-game-b-i-168__faq-item {
        background-color: var(--page-game-b-i-168-background-dark);
        border: 1px solid var(--page-game-b-i-168-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-game-b-i-168__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--page-game-b-i-168-background-dark);
        transition: background-color 0.3s ease;
    }

    .page-game-b-i-168__faq-question:hover {
        background-color: var(--page-game-b-i-168-secondary-color);
    }

    .page-game-b-i-168__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-game-b-i-168-text-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }

    .page-game-b-i-168__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-game-b-i-168-primary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-game-b-i-168__faq-item.active .page-game-b-i-168__faq-toggle {
        transform: rotate(45deg);
    }

    .page-game-b-i-168__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        color: rgba(255, 255, 255, 0.7);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        text-align: left;
    }

    .page-game-b-i-168__faq-item.active .page-game-b-i-168__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 20px !important;
        opacity: 1;
    }

    /* Floating Buttons */
    .page-game-b-i-168__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-game-b-i-168__floating-button {
        background-color: var(--page-game-b-i-168-primary-color);
        color: var(--page-game-b-i-168-background-dark);
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        text-align: center;
        text-decoration: none; /* Ensure it looks like a button, not a link */
    }

    .page-game-b-i-168__floating-button:hover {
        background-color: var(--page-game-b-i-168-button-hover-bg);
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-game-b-i-168__container {
            padding: 15px;
        }

        .page-game-b-i-168__title {
            font-size: 2em;
        }

        .page-game-b-i-168__subtitle {
            font-size: 1.5em;
        }

        .page-game-b-i-168__hero-title {
            font-size: 2.5em;
        }

        .page-game-b-i-168__hero-description {
            font-size: 1.1em;
        }

        .page-game-b-i-168__button {
            padding: 12px 20px;
            font-size: 1em;
            margin: 0 5px;
        }

        .page-game-b-i-168__info-grid,
        .page-game-b-i-168__game-grid,
        .page-game-b-i-168__promo-list,
        .page-game-b-i-168__logos-grid {
            grid-template-columns: 1fr; /* Stack columns on mobile */
            gap: 20px;
        }
        
        /* Specific list item responsive styles */
        .page-game-b-i-168__info-card,
        .page-game-b-i-168__game-card,
        .page-game-b-i-168__promo-item,
        .page-game-b-i-168__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-game-b-i-168__promo-item {
            padding: 20px !important;
        }

        .page-game-b-i-168__faq-question {
            padding: 12px 15px;
        }

        .page-game-b-i-168__faq-question h3 {
            font-size: 1.1em;
        }

        .page-game-b-i-168__faq-answer {
            padding: 15px 15px !important;
        }

        .page-game-b-i-168__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Layout buttons horizontally on smaller screens */
            width: calc(100% - 30px);
            justify-content: center;
        }

        .page-game-b-i-168__floating-button {
            flex: 1; /* Distribute space evenly */
            padding: 10px 15px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .page-game-b-i-168__hero-title {
            font-size: 2em;
        }
        .page-game-b-i-168__hero-description {
            font-size: 1em;
        }
        .page-game-b-i-168__button {
            display: block;
            width: calc(100% - 20px);
            margin: 10px auto;
        }
        .page-game-b-i-168__floating-buttons {
            flex-direction: column; /* Stack buttons vertically again if screen is very small */
        }
        .page-game-b-i-168__floating-button {
            width: 100%;
        }
    }

    /* Image responsive styles */
    .page-game-b-i-168 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-game-b-i-168 div[class*="__image-container"] { /* Generic container for images */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
  