
    .page-app-888-casino {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-app-888-casino__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-app-888-casino__section--dark {
        background-color: #222222;
    }

    .page-app-888-casino__section-title {
        font-size: 2.5em;
        color: #e0b400; /* Gold/Yellow */
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .page-app-888-casino__section-subtitle {
        font-size: 1.8em;
        color: #f0f0f0;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .page-app-888-casino__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #cccccc;
        text-align: justify;
    }

    /* Hero Section */
    .page-app-888-casino__hero-section {
        position: relative;
        padding-top: 10px; /* Adhering to the 8-16px rule for hero section */
        height: 60vh;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        background-color: #000;
    }

    .page-app-888-casino__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.5); /* Allowed for background images for readability */
    }

    .page-app-888-casino__hero-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
        padding: 20px;
        max-width: 800px;
    }

    .page-app-888-casino__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        font-weight: 800;
        color: #e0b400;
        line-height: 1.2;
    }

    .page-app-888-casino__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

    .page-app-888-casino__cta-button {
        display: inline-block;
        background-color: #e0b400;
        color: #1a1a1a;
        padding: 15px 35px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-app-888-casino__cta-button:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

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

    .page-app-888-casino__button {
        background-color: #e0b400; /* Yellowish color */
        color: #1a1a1a;
        padding: 12px 25px;
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        width: 150px;
    }

    .page-app-888-casino__button:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

    .page-app-888-casino__button--register {
        background-color: #007bff; /* Blue for register */
        color: #ffffff;
    }

    .page-app-888-casino__button--register:hover {
        background-color: #0056b3;
    }

    /* Product Display Section */
    .page-app-888-casino__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-app-888-casino__product-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-app-888-casino__product-card:hover {
        transform: translateY(-5px);
    }

    .page-app-888-casino__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-app-888-casino__product-content {
        padding: 20px;
    }

    .page-app-888-casino__product-title {
        font-size: 1.4em;
        color: #e0b400;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-app-888-casino__product-description {
        font-size: 0.95em;
        color: #cccccc;
        margin-bottom: 15px;
    }

    /* Features List */
    .page-app-888-casino__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .page-app-888-casino__feature-item {
        background-color: #2a2a2a;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-app-888-casino__feature-item:hover {
        background-color: #333333;
    }

    .page-app-888-casino__feature-icon {
        width: 200px;
        height: 200px;
        margin-bottom: 15px;
        object-fit: contain;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-app-888-casino__feature-title {
        font-size: 1.3em;
        color: #e0b400;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-app-888-casino__feature-description {
        font-size: 1em;
        color: #cccccc;
    }

    /* Payment Methods */
    .page-app-888-casino__payment-methods {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-app-888-casino__payment-item {
        background-color: #2a2a2a;
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        color: #e0b400;
        font-weight: 600;
        font-size: 1.1em;
        text-align: center;
        box-sizing: border-box;
        flex-basis: 150px;
        flex-grow: 1;
        max-width: 200px;
    }

    /* Game Providers */
    .page-app-888-casino__providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-app-888-casino__provider-item {
        background-color: #2a2a2a;
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        color: #f0f0f0;
        font-weight: 600;
        font-size: 1.1em;
        text-align: center;
        box-sizing: border-box;
        flex-basis: 180px;
        flex-grow: 1;
        max-width: 250px;
    }

    /* FAQ Section */
    .page-app-888-casino__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-app-888-casino__faq-list {
        margin-top: 30px;
    }

    .page-app-888-casino__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        color: #ffffff;
    }

    .page-app-888-casino__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #333333;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .page-app-888-casino__faq-question:hover {
        background-color: #444444;
    }

    .page-app-888-casino__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        font-weight: 600;
        color: #e0b400;
        pointer-events: none;
    }

    .page-app-888-casino__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e0b400;
        transition: transform 0.3s ease;
        pointer-events: none;
        line-height: 1;
    }

    .page-app-888-casino__faq-item.active .page-app-888-casino__faq-toggle {
        transform: rotate(45deg);
    }

    .page-app-888-casino__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-app-888-casino__faq-item.active .page-app-888-casino__faq-answer {
        max-height: 2000px !important;
        padding: 20px !important;
        opacity: 1;
    }

    .page-app-888-casino__faq-answer p {
        margin: 0;
        line-height: 1.6;
        color: #cccccc;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-app-888-casino__hero-title {
            font-size: 3em;
        }
        .page-app-888-casino__hero-description {
            font-size: 1.2em;
        }
        .page-app-888-casino__section-title {
            font-size: 2em;
        }
        .page-app-888-casino__section-subtitle {
            font-size: 1.6em;
        }
    }

    @media (max-width: 768px) {
        .page-app-888-casino__section {
            padding: 30px 15px;
        }
        .page-app-888-casino__hero-section {
            height: 50vh;
            min-height: 300px;
        }
        .page-app-888-casino__hero-title {
            font-size: 2.2em;
        }
        .page-app-888-casino__hero-description {
            font-size: 1em;
        }
        .page-app-888-casino__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-app-888-casino__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-app-888-casino__button {
            padding: 10px 20px;
            font-size: 1em;
            width: 120px;
        }
        .page-app-888-casino__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        .page-app-888-casino__section-subtitle {
            font-size: 1.4em;
        }
        .page-app-888-casino__text-content {
            font-size: 0.95em;
        }

        /* List item specific responsiveness */
        .page-app-888-casino__features-list,
        .page-app-888-casino__product-grid,
        .page-app-888-casino__payment-methods,
        .page-app-888-casino__providers-list {
            grid-template-columns: 1fr; /* Stack items vertically */
            gap: 20px;
        }

        .page-app-888-casino__feature-item,
        .page-app-888-casino__product-card,
        .page-app-888-casino__payment-item,
        .page-app-888-casino__provider-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px 15px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-app-888-casino__product-image {
            height: 180px;
        }
        .page-app-888-casino__feature-icon {
            width: 200px;
            height: 200px;
        }

        .page-app-888-casino__faq-question {
            padding: 12px 15px;
        }
        .page-app-888-casino__faq-question h3 {
            font-size: 1em;
        }
        .page-app-888-casino__faq-answer {
            padding: 0 15px;
        }
        .page-app-888-casino__faq-item.active .page-app-888-casino__faq-answer {
            padding: 15px !important;
        }
    }
  