
    .page-888l {
        font-family: 'Arial', sans-serif;
        color: #333333;
        line-height: 1.6;
        background-color: #f0f2f5; /* Light grey background */
    }

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

    .page-888l__floating-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 120px;
        height: 45px;
        background-color: #FFD700; /* Gold */
        color: #000080; /* Navy Blue */
        text-decoration: none;
        font-weight: bold;
        border-radius: 25px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* Important for responsive */
    }

    .page-888l__floating-button:hover {
        background-color: #e0b800; /* Darker gold */
        transform: translateY(-2px);
    }

    .page-888l__floating-button--register {
        background-color: #000080; /* Navy Blue */
        color: #FFFFFF; /* White */
    }

    .page-888l__floating-button--register:hover {
        background-color: #000060; /* Darker navy */
    }

    /* Hero Section */
    .page-888l__hero-section {
        padding: 10px 20px 40px; /* Small decorative padding-top, more bottom padding */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: #000080; /* Navy Blue background */
        color: #FFFFFF; /* White text */
        position: relative;
        overflow: hidden;
    }

    .page-888l__hero-image {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        margin-top: 20px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-888l__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-888l__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #FFD700; /* Gold title */
        line-height: 1.2;
    }

    .page-888l__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .page-888l__hero-cta-button {
        display: inline-block;
        background-color: #FFD700; /* Gold */
        color: #000080; /* Navy Blue */
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-888l__hero-cta-button:hover {
        background-color: #e0b800; /* Darker gold */
        transform: translateY(-2px);
    }

    .page-888l__keyword-highlight {
        color: #FFD700; /* Gold for keywords in dark sections */
        font-weight: bold;
    }

    /* General Section Styling */
    .page-888l__section-title {
        font-size: 2.2em;
        color: #000080; /* Navy Blue */
        text-align: center;
        margin: 60px 0 40px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-888l__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #FFD700; /* Gold underline */
        border-radius: 2px;
    }

    /* Game Categories Section */
    .page-888l__games-section,
    .page-888l__promotions-section,
    .page-888l__news-section,
    .page-888l__benefits-section,
    .page-888l__faq-section {
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-888l__game-grid,
    .page-888l__promo-grid,
    .page-888l__news-grid,
    .page-888l__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-888l__game-item,
    .page-888l__promo-item,
    .page-888l__news-item,
    .page-888l__benefit-item {
        background-color: #FFFFFF; /* White background */
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        padding-bottom: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-888l__game-item:hover,
    .page-888l__promo-item:hover,
    .page-888l__news-item:hover,
    .page-888l__benefit-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-888l__game-image,
    .page-888l__promo-image,
    .page-888l__news-image,
    .page-888l__benefit-icon {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        margin-bottom: 15px;
    }

    .page-888l__benefit-icon {
        height: 120px;
        width: 120px;
        border-radius: 50%; /* Make it circular */
        margin: 20px auto 15px;
        background-color: #f0f2f5;
        padding: 10px;
    }

    .page-888l__game-title,
    .page-888l__promo-title,
    .page-888l__news-title,
    .page-888l__benefit-title {
        font-size: 1.5em;
        color: #000080; /* Navy Blue */
        margin: 15px 15px 10px;
    }

    .page-888l__game-description,
    .page-888l__promo-description,
    .page-888l__news-excerpt,
    .page-888l__benefit-description {
        font-size: 0.95em;
        color: #555555;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .page-888l__news-date {
        font-size: 0.85em;
        color: #888888;
        margin-bottom: 10px;
    }

    .page-888l__game-cta,
    .page-888l__promo-cta {
        display: inline-block;
        background-color: #FFD700; /* Gold */
        color: #000080; /* Navy Blue */
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-888l__game-cta:hover,
    .page-888l__promo-cta:hover {
        background-color: #e0b800; /* Darker gold */
    }

    /* FAQ Section */
    .page-888l__faq-container {
        max-width: 800px;
        margin: 0 auto 50px;
        background-color: #FFFFFF; /* White background */
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .page-888l__faq-item {
        border-bottom: 1px solid #eeeeee;
    }

    .page-888l__faq-item:last-child {
        border-bottom: none;
    }

    .page-888l__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #f9f9f9; /* Light grey for question */
        transition: background-color 0.3s ease;
    }

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

    .page-888l__faq-question-text {
        font-size: 1.1em;
        color: #000080; /* Navy Blue */
        margin: 0;
        pointer-events: none; /* Prevent text from blocking click event */
    }

    .page-888l__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #FFD700; /* Gold */
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent icon from blocking click event */
    }

    .page-888l__faq-item.active .page-888l__faq-toggle {
        transform: rotate(45deg); /* Rotate + to become X or - */
        color: #000080; /* Navy Blue when active */
    }

    .page-888l__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #FFFFFF; /* White for answer */
    }

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

    .page-888l__faq-answer p {
        margin: 0;
        color: #555555;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-888l__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            gap: 5px;
        }

        .page-888l__floating-button {
            width: 100%;
            max-width: 150px;
            font-size: 0.9em;
            padding: 12px 0;
        }

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

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

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

        .page-888l__section-title {
            font-size: 1.8em;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .page-888l__games-section,
        .page-888l__promotions-section,
        .page-888l__news-section,
        .page-888l__benefits-section,
        .page-888l__faq-section {
            padding: 15px;
        }

        .page-888l__game-grid,
        .page-888l__promo-grid,
        .page-888l__news-grid,
        .page-888l__benefits-grid {
            grid-template-columns: 1fr; /* Single column for small screens */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* List item specific responsive rules */
        .page-888l__game-item,
        .page-888l__promo-item,
        .page-888l__news-item,
        .page-888l__benefit-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 0 15px 0 !important; /* Adjust padding for mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-888l__game-image,
        .page-888l__promo-image,
        .page-888l__news-image,
        .page-888l__benefit-icon {
            height: 180px; /* Slightly smaller image height for mobile */
        }

        .page-888l__benefit-icon {
            height: 100px;
            width: 100px;
        }

        .page-888l__game-title,
        .page-888l__promo-title,
        .page-888l__news-title,
        .page-888l__benefit-title {
            font-size: 1.3em;
            margin: 10px 10px 8px;
        }

        .page-888l__game-description,
        .page-888l__promo-description,
        .page-888l__news-excerpt,
        .page-888l__benefit-description {
            font-size: 0.9em;
            padding: 0 10px;
            margin-bottom: 15px;
        }

        .page-888l__faq-question {
            padding: 15px 20px;
        }

        .page-888l__faq-question-text {
            font-size: 1em;
        }

        .page-888l__faq-answer {
            padding: 0 20px;
        }

        .page-888l__faq-item.active .page-888l__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-888l__floating-button {
            width: 100px;
            height: 40px;
            font-size: 0.8em;
        }
        .page-888l__hero-title {
            font-size: 1.6em;
        }
        .page-888l__hero-description {
            font-size: 0.9em;
        }
        .page-888l__hero-cta-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  