
    /* Global styles for the page-bet188link scope */
    .page-bet188link {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light grey text for contrast */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed floating button */
    }

    .page-bet188link__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-bet188link__section-title {
        font-size: 2.5em;
        color: #FFD700; /* Gold accent */
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-bet188link__section-description {
        font-size: 1.1em;
        margin-bottom: 40px;
        color: #cccccc;
    }

    /* Hero Section */
    .page-bet188link__hero-section {
        position: relative;
        width: 100%;
        min-height: 450px; /* Ensure sufficient height for banner */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        background-color: #000; /* Fallback background */
        overflow: hidden;
        padding-top: 10px; /* Required padding for fixed header */
        box-sizing: border-box;
    }

    .page-bet188link__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        max-width: 100%; /* Image responsive */
        height: auto; /* Image responsive */
    }

    .page-bet188link__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
        border-radius: 10px;
        max-width: 90%;
    }

    .page-bet188link__hero-title {
        font-size: 3em;
        margin-bottom: 10px;
        color: #FFD700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-bet188link__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 20px;
        color: #e0e0e0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-bet188link__hero-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #4CAF50; /* Green accent */
        color: #ffffff;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-bet188link__hero-button:hover {
        background-color: #5cb85c;
    }

    /* Floating Login Button */
    .page-bet188link__floating-button-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        text-align: center;
        box-sizing: border-box;
    }

    .page-bet188link__floating-button {
        display: inline-block;
        width: 90%;
        max-width: 400px;
        padding: 15px 20px;
        background-image: linear-gradient(to right, #FFD700, #FFA500); /* Gold gradient */
        color: #1a1a1a;
        border-radius: 8px;
        font-size: 1.3em;
        font-weight: bold;
        text-decoration: none;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    }

    .page-bet188link__floating-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
    }

    /* Game Grid */
    .page-bet188link__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-bet188link__game-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-bet188link__game-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-bet188link__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-bet188link__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Image responsive */
    }

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

    .page-bet188link__game-name {
        font-size: 1.5em;
        color: #FFD700;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-bet188link__game-description {
        font-size: 0.95em;
        color: #b0b0b0;
    }

    /* Promotions */
    .page-bet188link__promotion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-bet188link__promotion-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-bet188link__promotion-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-bet188link__promotion-title {
        font-size: 1.8em;
        color: #4CAF50;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-bet188link__promotion-description {
        font-size: 1em;
        color: #cccccc;
        margin-bottom: 20px;
    }

    .page-bet188link__promotion-action {
        display: inline-block;
        padding: 10px 20px;
        background-color: #FFD700;
        color: #1a1a1a;
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }

    .page-bet188link__promotion-action:hover {
        background-color: #FFA500;
    }

    /* Guide Steps */
    .page-bet188link__guide-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-bet188link__guide-step {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px;
        width: calc(33% - 20px); /* 3 items per row on desktop */
        min-width: 280px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-bet188link__guide-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background-color: #3a3a3a;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2em;
        color: #FFD700;
        font-weight: bold;
    }

    .page-bet188link__guide-title {
        font-size: 1.5em;
        color: #4CAF50;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-bet188link__guide-text {
        font-size: 1em;
        color: #cccccc;
    }

    /* FAQ Section */
    .page-bet188link__faq-section {
        text-align: left;
    }

    .page-bet188link__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-bet188link__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #333;
        color: #FFD700;
        cursor: pointer;
        border-radius: 8px;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-bet188link__faq-question:hover {
        background-color: #444;
    }

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

    .page-bet188link__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #4CAF50;
        pointer-events: none; /* Prevent toggle icon from blocking click */
        transition: transform 0.3s ease;
    }

    .page-bet188link__faq-item.active .page-bet188link__faq-toggle {
        transform: rotate(45deg); /* Rotate for minus sign effect */
    }

    .page-bet188link__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: #2a2a2a;
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-bet188link__section {
            padding: 30px 15px;
        }

        .page-bet188link__hero-section {
            min-height: 300px;
            padding-top: 10px; /* Ensure mobile padding is also 10px */
        }

        .page-bet188link__hero-title {
            font-size: 2em;
        }

        .page-bet188link__hero-subtitle {
            font-size: 1.2em;
        }

        .page-bet188link__hero-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-bet188link__section-title {
            font-size: 2em;
        }

        .page-bet188link__section-description {
            font-size: 1em;
        }

        .page-bet188link__game-grid {
            grid-template-columns: 1fr;
        }

        .page-bet188link__game-image-wrapper {
            height: 180px;
        }

        .page-bet188link__game-item {
            margin: 0 auto;
            max-width: 400px;
        }

        .page-bet188link__promotion-grid {
            grid-template-columns: 1fr;
        }

        .page-bet188link__guide-step {
            width: 100%;
            padding: 20px;
        }

        .page-bet188link__guide-icon {
            width: 60px;
            height: 60px;
            font-size: 1.5em;
        }

        .page-bet188link__faq-question {
            padding: 12px 15px;
            font-size: 1.1em;
        }

        .page-bet188link__faq-answer {
            padding: 15px 15px !important; /* Ensure important for mobile */
        }
        
        /* Image responsive styles for mobile */
        .page-bet188link img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-bet188link__game-image-wrapper,
        .page-bet188link__hero-image {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  