
    /* Global styles for the page-bwin scope */
    .page-bwin {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset if shared CSS not applied */
    }

    .page-bwin__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-bwin__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-bwin__title {
        font-size: 2.5em;
        color: #d40000; /* A strong red for brand */
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .page-bwin__subtitle {
        font-size: 1.8em;
        color: #222;
        text-align: center;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .page-bwin__text {
        font-size: 1.1em;
        margin-bottom: 15px;
        text-align: justify;
    }

    .page-bwin__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: #d40000;
        color: #ffffff;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
        text-align: center;
    }

    .page-bwin__button:hover {
        background-color: #a00000;
    }

    /* Hero Section */
    .page-bwin__hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('[GALLERY:hero:1920x1080:bwin,betting,casino,vietnam]') no-repeat center center/cover;
        color: #ffffff;
        text-align: center;
        padding: 100px 20px;
        padding-top: calc(100px + 10px); /* Add a small padding-top for visual separation, relying on body for main offset */
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .page-bwin__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        font-weight: 800;
    }

    .page-bwin__hero-description {
        font-size: 1.4em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-bwin__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Floating Register/Login Buttons */
    .page-bwin__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-bwin__floating-button {
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease, background-color 0.3s ease;
        font-size: 1em;
        border: none;
        cursor: pointer;
    }

    .page-bwin__floating-button--register {
        background-color: #008000; /* Green */
        color: #ffffff;
    }

    .page-bwin__floating-button--register:hover {
        background-color: #006400;
        transform: translateY(-2px);
    }

    .page-bwin__floating-button--login {
        background-color: #000080; /* Dark Blue */
        color: #ffffff;
    }

    .page-bwin__floating-button--login:hover {
        background-color: #000064;
        transform: translateY(-2px);
    }

    /* Promotions Section */
    .page-bwin__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-bwin__promotion-card {
        background-color: #fdfdfd;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-bwin__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-bwin__promotion-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-bwin__promotion-content {
        padding: 20px;
    }

    .page-bwin__promotion-title {
        font-size: 1.4em;
        color: #d40000;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-bwin__promotion-description {
        font-size: 0.95em;
        color: #555;
        margin-bottom: 20px;
    }

    /* Game Categories Section */
    .page-bwin__categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        text-align: center;
    }

    .page-bwin__category-card {
        background-color: #fdfdfd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 20px; /* Ensure padding for text */
    }

    .page-bwin__category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-bwin__category-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-bwin__category-title {
        font-size: 1.3em;
        color: #d40000;
        font-weight: 700;
        margin-top: 0;
        padding: 0 15px; /* Add horizontal padding to title */
        word-wrap: break-word; /* Ensure text wraps */
    }

    /* Why Choose Us Section */
    .page-bwin__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-bwin__feature-item {
        background-color: #fdfdfd;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
        box-sizing: border-box;
    }

    .page-bwin__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-bwin__feature-title {
        font-size: 1.3em;
        color: #d40000;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .page-bwin__feature-description {
        font-size: 0.95em;
        color: #555;
    }

    /* FAQ Section */
    .page-bwin__faq-section {
        background-color: #f0f0f0;
        padding: 40px 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .page-bwin__faq-item {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 10px;
        overflow: hidden;
    }

    .page-bwin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f9f9f9;
        font-weight: bold;
        color: #333;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-bwin__faq-question:hover {
        background-color: #f0f0f0;
    }

    .page-bwin__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #d40000;
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-bwin__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 15px;
        color: #d40000;
        pointer-events: none; /* Prevent toggle icon from blocking click */
        width: 20px; /* Fixed width for consistent alignment */
        text-align: center;
    }

    .page-bwin__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* Initial padding matches active state's horizontal padding */
        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;
        font-size: 0.95em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-bwin {
            padding-top: calc(var(--header-offset, 122px) + 0px); /* Adjust if needed, but rely on body padding */
        }
        .page-bwin__title {
            font-size: 2em;
        }
        .page-bwin__subtitle {
            font-size: 1.5em;
        }
        .page-bwin__hero-section {
            padding: 60px 15px;
            padding-top: calc(60px + 10px);
        }
        .page-bwin__hero-title {
            font-size: 2.5em;
        }
        .page-bwin__hero-description {
            font-size: 1.1em;
        }
        .page-bwin__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-bwin__button {
            width: 100%;
            padding: 15px 20px;
        }
        .page-bwin__section {
            padding: 30px 15px;
        }

        /* List item responsive */
        .page-bwin__promotions-grid,
        .page-bwin__categories-grid,
        .page-bwin__features-list {
            grid-template-columns: 1fr; /* Single column for mobile */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-bwin__promotion-card,
        .page-bwin__category-card,
        .page-bwin__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px; /* Adjust padding for mobile */
            padding-right: 15px; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-bwin__promotion-image,
        .page-bwin__category-image,
        .page-bwin__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-bwin__promotion-content,
        .page-bwin__feature-item {
             padding: 15px;
        }

        .page-bwin__faq-question {
            padding: 12px 15px;
        }
        .page-bwin__faq-question h3 {
            font-size: 1em;
        }
        .page-bwin__faq-answer {
            padding: 15px 15px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
    }

    @media (max-width: 480px) {
        .page-bwin__hero-title {
            font-size: 2em;
        }
        .page-bwin__floating-buttons {
            right: 10px;
            bottom: 10px;
        }
    }
  