
    /* General body styling for base font and background, ensuring contrast */
    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f4f7f6;
        margin: 0;
        padding: 0;
    }

    /* Base styles for the page container */
    .page-pg66bet {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Section styling */
    .page-pg66bet__section {
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 25px;
        padding: 25px;
        box-sizing: border-box;
    }

    /* Hero section specific styles */
    .page-pg66bet__hero-section {
        text-align: center;
        padding: 10px 15px 40px; /* Added padding-top for fixed header */
        background-color: #004d40; /* Dark green background for hero */
        color: #ffffff;
        border-radius: 0; /* No border-radius for hero to span full width */
        margin-bottom: 25px;
        box-shadow: none; /* No shadow for hero */
    }

    .page-pg66bet__hero-title {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: #ffeb3b; /* Yellow for highlights */
    }

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

    .page-pg66bet__hero-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .page-pg66bet__hero-image {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
        margin: 0 auto; /* Center image */
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-pg66bet__cta-button {
        display: inline-block;
        background-color: #ffeb3b; /* Yellow button */
        color: #004d40; /* Dark green text */
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-pg66bet__cta-button:hover {
        background-color: #ffe000; /* Darker yellow on hover */
        transform: translateY(-2px);
    }

    /* Section titles */
    .page-pg66bet__section-title {
        font-size: 2em;
        color: #004d40;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-pg66bet__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #ffeb3b;
        border-radius: 2px;
    }

    /* Game categories section */
    .page-pg66bet__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-pg66bet__game-card {
        background-color: #e0f2f1; /* Light teal background */
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        text-decoration: none; /* Remove underline for links */
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 180px; /* Ensure cards have a consistent height */
    }

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

    .page-pg66bet__game-card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    .page-pg66bet__game-card-image {
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        object-fit: cover;
        margin: 0 auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-pg66bet__game-card-title {
        font-size: 1.2em;
        font-weight: bold;
        color: #004d40;
        margin-top: 10px;
    }

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

    .page-pg66bet__advantage-item {
        background-color: #f4f7f6;
        border-left: 5px solid #004d40;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-pg66bet__advantage-item h3 {
        color: #004d40;
        margin-top: 0;
        font-size: 1.3em;
    }

    .page-pg66bet__advantage-item p {
        color: #555;
    }

    /* How to join section */
    .page-pg66bet__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .page-pg66bet__step-card {
        text-align: center;
        padding: 25px;
        background-color: #e0f7fa; /* Light cyan */
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-pg66bet__step-card-icon {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-pg66bet__step-card-image {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto 15px;
        border-radius: 5px;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-pg66bet__step-card h3 {
        color: #004d40;
        font-size: 1.4em;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-pg66bet__step-card p {
        color: #555;
    }

    /* Promotions section */
    .page-pg66bet__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-pg66bet__promo-card {
        background-color: #fffde7; /* Light yellow */
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .page-pg66bet__promo-card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 15px;
    }

    .page-pg66bet__promo-card-image {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        border-radius: 8px;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }

    .page-pg66bet__promo-card h3 {
        color: #004d40;
        font-size: 1.3em;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .page-pg66bet__promo-card p {
        color: #555;
        font-size: 0.95em;
    }

    /* Floating Login Button */
    .page-pg66bet__floating-login-button {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #e65100; /* Orange for urgency */
        color: #ffffff;
        padding: 15px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        transition: background-color 0.3s ease, transform 0.3s ease;
        white-space: nowrap; /* Prevent text wrapping */
    }

    .page-pg66bet__floating-login-button:hover {
        background-color: #ff6f00; /* Lighter orange on hover */
        transform: translateX(-50%) translateY(-3px);
    }

    /* FAQ Section */
    .page-pg66bet__faq-list {
        list-style: none;
        padding: 0;
    }

    .page-pg66bet__faq-item {
        background-color: #f4f7f6;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-pg66bet__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #00796b; /* Dark teal for question header */
        color: #ffffff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        font-size: 1.1em;
        border-radius: 8px;
    }

    .page-pg66bet__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #ffffff;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-pg66bet__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        background-color: #ffffff;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #333;
    }

    .page-pg66bet__faq-answer p {
        margin: 15px 0;
        padding-bottom: 5px;
    }

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

    .page-pg66bet__faq-item.active .page-pg66bet__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-pg66bet__hero-section {
            padding-top: 10px; /* Adjust for mobile fixed header */
        }

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

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

        .page-pg66bet__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .page-pg66bet__game-categories {
            grid-template-columns: 1fr 1fr; /* Two columns on smaller screens */
        }
        
        .page-pg66bet__game-card {
            min-height: 150px;
        }

        .page-pg66bet__game-card-image,
        .page-pg66bet__step-card-image,
        .page-pg66bet__promo-card-image {
            max-width: 100% !important;
            height: auto !important;
            min-width: 200px !important; /* Minimum size still enforced */
            min-height: 200px !important; /* Minimum size still enforced */
        }

        .page-pg66bet__advantage-list,
        .page-pg66bet__steps-grid,
        .page-pg66bet__promo-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }

        .page-pg66bet__floating-login-button {
            padding: 12px 20px;
            font-size: 1em;
            bottom: 15px;
            width: calc(100% - 30px); /* Full width with padding */
            max-width: 350px; /* Max width for button */
        }

        .page-pg66bet__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }

        .page-pg66bet__faq-answer {
            padding: 0 15px;
        }

        .page-pg66bet__faq-item.active .page-pg66bet__faq-answer {
            padding: 15px !important;
        }
    }

    /* Ensure all images are responsive */
    .page-pg66bet img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Force responsive image styles for mobile */
    @media (max-width: 768px) {
        .page-pg66bet img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-pg66bet__hero-image-container,
        .page-pg66bet__game-card-image-container,
        .page-pg66bet__step-card-icon,
        .page-pg66bet__promo-card-image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

  