
    /* General styles */
    .page-88-online {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #fff; /* White text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-88-online__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-88-online__section-title {
        font-size: 2.5em;
        color: #e94560; /* Accent color for titles */
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

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

    .page-88-online__text-content {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 30px;
        color: #ccc;
    }

    /* Buttons */
    .page-88-online__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: all 0.3s ease;
        text-align: center;
        cursor: pointer;
        border: none;
    }

    .page-88-online__button--primary {
        background-color: #e94560; /* Primary accent color */
        color: #fff;
    }

    .page-88-online__button--primary:hover {
        background-color: #c93a52;
        transform: translateY(-2px);
    }

    .page-88-online__button--secondary {
        background-color: transparent;
        color: #e94560;
        border: 2px solid #e94560;
        margin-left: 15px;
    }

    .page-88-online__button--secondary:hover {
        background-color: #e94560;
        color: #fff;
        transform: translateY(-2px);
    }

    .page-88-online__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Hero Section */
    .page-88-online__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
        text-align: center;
        padding-top: 10px; /* Small decorative top padding */
    }

    .page-88-online__hero-content {
        max-width: 800px;
        margin-bottom: 40px;
    }

    .page-88-online__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #fff;
        line-height: 1.2;
    }

    .page-88-online__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #ccc;
    }

    .page-88-online__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .page-88-online__hero-image-wrapper {
        width: 100%;
        max-width: 900px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .page-88-online__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* About Section */
    .page-88-online__about-section {
        padding: 80px 0;
        background-color: #16213e;
    }

    .page-88-online__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-88-online__feature-item {
        background-color: #0f3460;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .page-88-online__feature-item:hover {
        transform: translateY(-10px);
    }

    .page-88-online__feature-icon {
        width: 200px; /* Min size */
        height: auto;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .page-88-online__feature-title {
        font-size: 1.5em;
        color: #e94560;
        margin-bottom: 15px;
    }

    .page-88-online__feature-description {
        color: #ccc;
        font-size: 1em;
    }

    /* Game Categories Section */
    .page-88-online__game-categories-section {
        padding: 80px 0;
        background-color: #1a1a2e;
    }

    .page-88-online__categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-88-online__category-card {
        background-color: #0f3460;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        text-align: center;
    }

    .page-88-online__category-card:hover {
        transform: translateY(-10px);
    }

    .page-88-online__category-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency, adjust as needed */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-88-online__category-title {
        font-size: 1.4em;
        color: #e94560;
        margin: 20px 15px 10px;
    }

    .page-88-online__category-description {
        color: #ccc;
        font-size: 0.95em;
        padding: 0 15px 20px;
    }

    /* Promotion Section */
    .page-88-online__promotion-section {
        padding: 80px 0;
        background-color: #16213e;
    }

    .page-88-online__promotion-card {
        background-color: #0f3460;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        margin-bottom: 40px;
        text-align: center;
    }

    .page-88-online__promotion-card:last-child {
        margin-bottom: 0;
    }

    .page-88-online__promotion-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-88-online__promotion-title {
        font-size: 1.6em;
        color: #e94560;
        margin: 25px 20px 15px;
    }

    .page-88-online__promotion-description {
        color: #ccc;
        font-size: 1em;
        padding: 0 20px 25px;
    }

    /* Providers Section */
    .page-88-online__providers-section {
        padding: 80px 0;
        background-color: #1a1a2e;
    }

    .page-88-online__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted for more items */
        gap: 20px;
        margin-top: 50px;
        justify-items: center;
    }

    .page-88-online__provider-item {
        background-color: #0f3460;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 250px; /* Control max width for item */
        box-sizing: border-box;
    }

    .page-88-online__provider-item:hover {
        transform: scale(1.05);
    }

    .page-88-online__provider-logo {
        width: 100%;
        height: auto;
        max-height: 100px; /* Max height for logos */
        object-fit: contain;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        min-width: 200px; /* Min size for image placeholder */
    }

    .page-88-online__provider-name {
        font-size: 1.1em;
        color: #fff;
        font-weight: bold;
    }

    /* Payment Section */
    .page-88-online__payment-section {
        padding: 80px 0;
        background-color: #16213e;
    }

    .page-88-online__payments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 50px;
        justify-items: center;
    }

    .page-88-online__payment-item {
        background-color: #0f3460;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    .page-88-online__payment-item:hover {
        transform: scale(1.05);
    }

    .page-88-online__payment-logo {
        width: 100%;
        height: auto;
        max-height: 80px;
        object-fit: contain;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        min-width: 200px; /* Min size for image placeholder */
    }

    .page-88-online__payment-name {
        font-size: 1.1em;
        color: #fff;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-88-online__faq-section {
        padding: 80px 0;
        background-color: #1a1a2e;
    }

    .page-88-online__faq-list {
        max-width: 800px;
        margin: 50px auto 0;
    }

    .page-88-online__faq-item {
        background-color: #0f3460;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .page-88-online__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #e94560; /* Question background */
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-88-online__faq-question:hover {
        background-color: #c93a52;
    }

    .page-88-online__faq-question-text {
        margin: 0;
        font-size: 1.2em;
        color: #fff; /* Ensure text color is white for contrast */
        pointer-events: none; /* Prevent text from blocking click event */
    }

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

    .page-88-online__faq-item.active .page-88-online__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-88-online__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Adjust padding for closed state */
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #ccc;
        background-color: #0f3460; /* Answer background */
    }

    .page-88-online__faq-item.active .page-88-online__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to show content */
        padding: 20px 25px !important; /* Padding for open state */
        opacity: 1;
    }

    .page-88-online__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Add some spacing if multiple paragraphs */
    }

    /* CTA Section */
    .page-88-online__cta-section {
        padding: 80px 0;
        background-color: #0f3460;
        text-align: center;
    }

    /* Floating Buttons */
    .page-88-online__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
    }

    .page-88-online__floating-button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        min-width: 120px;
        box-sizing: border-box;
    }

    .page-88-online__floating-button--register {
        background-color: #e94560;
        color: #fff;
    }

    .page-88-online__floating-button--register:hover {
        background-color: #c93a52;
        transform: translateY(-2px);
    }

    .page-88-online__floating-button--login {
        background-color: #333;
        color: #fff;
    }

    .page-88-online__floating-button--login:hover {
        background-color: #555;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-88-online__hero-title {
            font-size: 3em;
        }
        .page-88-online__hero-description {
            font-size: 1.2em;
        }
        .page-88-online__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-88-online {
            padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
        }
        .page-88-online__hero-section {
            padding: 40px 15px;
        }
        .page-88-online__hero-title {
            font-size: 2.2em;
        }
        .page-88-online__hero-description {
            font-size: 1.1em;
        }
        .page-88-online__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-88-online__button--secondary {
            margin-left: 0;
        }
        .page-88-online__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-88-online__text-content {
            font-size: 1em;
        }

        /* List item responsiveness */
        .page-88-online__features-grid,
        .page-88-online__categories-grid,
        .page-88-online__providers-grid,
        .page-88-online__payments-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-88-online__feature-item,
        .page-88-online__category-card,
        .page-88-online__provider-item,
        .page-88-online__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
        }

        .page-88-online__feature-description,
        .page-88-online__category-description,
        .page-88-online__promotion-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88-online__category-image,
        .page-88-online__promotion-image,
        .page-88-online__feature-icon,
        .page-88-online__provider-logo,
        .page-88-online__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-88-online__category-image {
            height: 180px; /* Adjust height for smaller screens */
        }
        .page-88-online__promotion-card {
            margin-bottom: 30px;
        }
        .page-88-online__promotion-title {
            font-size: 1.4em;
        }

        .page-88-online__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-88-online__faq-question-text {
            font-size: 1.1em;
        }
        .page-88-online__faq-answer {
            padding: 0 20px;
        }
        .page-88-online__faq-item.active .page-88-online__faq-answer {
            padding: 15px 20px !important;
        }

        .page-88-online__floating-buttons {
            gap: 10px;
            bottom: 15px;
        }
        .page-88-online__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
            min-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .page-88-online__hero-title {
            font-size: 1.8em;
        }
        .page-88-online__hero-description {
            font-size: 0.95em;
        }
        .page-88-online__section-title {
            font-size: 1.5em;
        }
        .page-88-online__container {
            padding: 15px;
        }
        .page-88-online__floating-buttons {
            bottom: 10px;
            width: calc(100% - 30px); /* Adjust width to fit screen */
            justify-content: space-around;
            gap: 0;
        }
        .page-88-online__floating-button {
            flex-grow: 1;
            margin: 0 5px;
        }
    }
  