
    /* General styling for the page container */
    .page-8k8-com-11 {
        font-family: 'Arial', sans-serif;
        color: #CCD6F6; /* Light text */
        background-color: #0A192F; /* Dark background */
        line-height: 1.6;
        padding-top: 10px; /* Small padding-top for first section, assuming body has header offset */
    }

    /* Section styling */
    .page-8k8-com-11__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
        box-sizing: border-box;
    }

    .page-8k8-com-11__section--dark {
        background-color: #112240;
    }

    .page-8k8-com-11__section-title {
        font-size: 2.8em;
        color: #E6F1FF;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-8k8-com-11__section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #64FFDA;
        margin: 10px auto 0;
    }

    /* Hero Section */
    .page-8k8-com-11__hero-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 80vh;
        text-align: center;
        background-image: url('[GALLERY:hero:1920x1080:casino_lobby,slots,philippines]');
        background-size: cover;
        background-position: center;
        position: relative;
        padding: 100px 20px 60px; /* Adjust top padding if header is fixed */
        box-sizing: border-box;
    }

    .page-8k8-com-11__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

    .page-8k8-com-11__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
    }

    .page-8k8-com-11__hero-title {
        font-size: 4em;
        color: #64FFDA;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        line-height: 1.2;
    }

    .page-8k8-com-11__hero-description {
        font-size: 1.4em;
        color: #E6F1FF;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-11__cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-8k8-com-11__button {
        background-color: #64FFDA;
        color: #0A192F;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
        box-sizing: border-box;
    }

    .page-8k8-com-11__button:hover {
        background-color: #4CAF50; /* A darker green for hover */
        transform: translateY(-3px);
    }

    /* Floating Buttons (as text, no links) */
    .page-8k8-com-11__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-8k8-com-11__floating-button {
        background-color: #64FFDA;
        color: #0A192F;
        padding: 12px 25px;
        border-radius: 50px;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
        transition: background-color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        border: none;
        user-select: none; /* Prevent text selection on button */
        box-sizing: border-box;
    }

    .page-8k8-com-11__floating-button:hover {
        background-color: #4CAF50;
        transform: translateY(-2px);
    }

    /* Content Area - General */
    .page-8k8-com-11__content-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin-top: 40px;
    }

    .page-8k8-com-11__content-card {
        background-color: #112240;
        border-radius: 10px;
        padding: 30px;
        flex: 1 1 calc(33% - 30px); /* 3 cards per row */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        text-align: left;
        min-width: 280px;
        box-sizing: border-box;
    }

    .page-8k8-com-11__content-card-title {
        font-size: 1.8em;
        color: #64FFDA;
        margin-bottom: 15px;
    }

    .page-8k8-com-11__content-card p {
        font-size: 1em;
        color: #CCD6F6;
    }

    /* Image styles */
    .page-8k8-com-11__image-container {
        margin-bottom: 25px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        width: 100%; /* Ensure container takes full width */
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-11__image {
        max-width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-com-11__image:hover {
        transform: scale(1.03);
    }

    /* List styles (e.g., game providers, payment methods) */
    .page-8k8-com-11__list {
        list-style: none;
        padding: 0;
        margin: 40px 0 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-11__list-item {
        background-color: #112240;
        border-radius: 8px;
        padding: 15px 25px;
        color: #E6F1FF;
        font-size: 1.1em;
        font-weight: bold;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        flex: 0 1 auto; /* Allow items to grow/shrink but not too much */
        min-width: 180px;
        text-align: center;
        box-sizing: border-box;
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-11__list-item:hover {
        background-color: #0A192F;
    }

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

    .page-8k8-com-11__promo-card {
        background-color: #112240;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        text-align: left;
        box-sizing: border-box;
    }

    .page-8k8-com-11__promo-image-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-com-11__promo-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        box-sizing: border-box;
    }

    .page-8k8-com-11__promo-content {
        padding: 25px;
        box-sizing: border-box;
    }

    .page-8k8-com-11__promo-title {
        font-size: 1.6em;
        color: #64FFDA;
        margin-bottom: 10px;
    }

    .page-8k8-com-11__promo-description {
        font-size: 0.95em;
        color: #CCD6F6;
        margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-8k8-com-11__faq-container {
        max-width: 800px;
        margin: 40px auto 0;
        text-align: left;
        box-sizing: border-box;
    }

    .page-8k8-com-11__faq-item {
        background-color: #112240;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-com-11__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #112240;
        color: #E6F1FF;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-com-11__faq-question:hover {
        background-color: #0A192F;
    }

    .page-8k8-com-11__faq-question h3 {
        margin: 0;
        font-size: 1em; /* Adjust to match parent font size */
        color: #E6F1FF;
        pointer-events: none; /* Prevent h3 from blocking click */
        flex-grow: 1;
    }

    .page-8k8-com-11__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #64FFDA;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-com-11__faq-item.active .page-8k8-com-11__faq-toggle {
        transform: rotate(45deg); /* Plus to X/minus effect */
    }

    .page-8k8-com-11__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        color: #CCD6F6;
        font-size: 1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        box-sizing: border-box;
    }

    .page-8k8-com-11__faq-item.active .page-8k8-com-11__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    /* Call to Action Section */
    .page-8k8-com-11__cta-section {
        background-color: #0A192F;
        padding: 80px 20px;
        box-sizing: border-box;
    }

    .page-8k8-com-11__cta-text {
        font-size: 2em;
        color: #E6F1FF;
        margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-com-11__section {
            padding: 40px 15px;
        }

        .page-8k8-com-11__section-title {
            font-size: 2em;
        }

        .page-8k8-com-11__hero-section {
            min-height: 60vh;
            padding-top: 80px;
        }

        .page-8k8-com-11__hero-title {
            font-size: 2.5em;
        }

        .page-8k8-com-11__hero-description {
            font-size: 1.1em;
        }

        .page-8k8-com-11__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-8k8-com-11__button {
            width: 100%;
            padding: 12px 20px;
        }

        .page-8k8-com-11__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 10px;
        }

        .page-8k8-com-11__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        .page-8k8-com-11__content-card {
            flex: 1 1 100%; /* Stack cards on mobile */
            padding: 25px;
        }

        .page-8k8-com-11__content-card-title {
            font-size: 1.5em;
        }

        /* List item responsive styles */
        .page-8k8-com-11__list {
            flex-direction: column;
            align-items: center;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-11__list-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 12px 15px !important; /* Adjust padding for mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-11__promo-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-com-11__promo-content {
            padding: 20px;
        }

        .page-8k8-com-11__promo-title {
            font-size: 1.4em;
        }

        .page-8k8-com-11__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

        .page-8k8-com-11__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-com-11__cta-text {
            font-size: 1.5em;
        }
    }

    /* Ensure all images are responsive and not small */
    .page-8k8-com-11 img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
        /* No filter properties to change image color */
    }

    /* Image container specific for responsiveness */
    .page-8k8-com-11__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-8k8-com-11__image-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        .page-8k8-com-11 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }
  