
    /* CSS Styles for five88 com page */
    :root {
        --page-five88-primary-color: #e44d26; /* A vibrant red-orange for accents */
        --page-five88-secondary-color: #333;
        --page-five88-background-dark: #1a1a1a;
        --page-five88-background-light: #f5f5f5;
        --page-five88-text-color-light: #fff;
        --page-five88-text-color-dark: #333;
        --page-five88-accent-green: #28a745;
        --page-five88-border-color: #ddd; /* Lighter border for light background */
        --page-five88-shadow: rgba(0, 0, 0, 0.3);
    }

    .page-five88 {
        font-family: 'Arial', sans-serif;
        color: var(--page-five88-text-color-dark);
        background-color: var(--page-five88-background-light);
        line-height: 1.6;
    }

    .page-five88__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Fixed Header Spacing */
    .page-five88__hero-section,
    .page-five88__content-wrapper {
        padding-top: 120px; /* Adjust based on actual header height */
    }

    @media (max-width: 768px) {
        .page-five88__hero-section,
        .page-five88__content-wrapper {
            padding-top: 100px; /* Adjust for mobile header height */
        }
    }

    /* Hero Section */
    .page-five88__hero-section {
        position: relative;
        overflow: hidden;
        background-color: var(--page-five88-background-dark);
        color: var(--page-five88-text-color-light);
        text-align: center;
        padding-bottom: 50px;
    }

    .page-five88__hero-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        margin: 0 auto;
        border-radius: 8px; /* Slightly rounded corners for banner */
        box-shadow: 0 4px 15px var(--page-five88-shadow);
    }

    .page-five88__hero-content {
        position: relative;
        z-index: 10;
        padding: 20px 15px;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-five88__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--page-five88-primary-color);
        text-shadow: 2px 2px 4px var(--page-five88-shadow);
    }

    .page-five88__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #ddd;
    }

    .page-five88__hero-cta-button {
        display: inline-block;
        background-color: var(--page-five88-accent-green);
        color: var(--page-five88-text-color-light);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    }

    .page-five88__hero-cta-button:hover {
        background-color: #218838;
        transform: translateY(-3px);
    }

    /* Floating Login Button */
    .page-five88__floating-login {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }

    .page-five88__floating-login-button {
        background-image: linear-gradient(45deg, var(--page-five88-primary-color), #ff7f50);
        color: var(--page-five88-text-color-light);
        padding: 15px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        animation: pulse 2s infinite;
    }

    .page-five88__floating-login-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Sections General */
    .page-five88__section {
        padding: 60px 0;
        background-color: var(--page-five88-background-light);
        text-align: center;
    }

    .page-five88__section--dark {
        background-color: var(--page-five88-background-dark);
        color: var(--page-five88-text-color-light);
    }

    .page-five88__section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--page-five88-primary-color);
        position: relative;
        display: inline-block;
    }

    .page-five88__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--page-five88-accent-green);
        border-radius: 2px;
    }

    .page-five88__section--dark .page-five88__section-title {
        color: var(--page-five88-text-color-light);
    }

    /* Game Categories */
    .page-five88__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-five88__game-card {
        background-color: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
        color: var(--page-five88-text-color-dark);
        display: flex;
        flex-direction: column;
    }

    .page-five88__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .page-five88__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-five88__game-card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .page-five88__game-card-title {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: var(--page-five88-primary-color);
    }

    .page-five88__game-card-description {
        font-size: 0.95em;
        color: var(--page-five88-secondary-color);
        margin-bottom: 15px;
    }

    .page-five88__game-card-button {
        display: inline-block;
        background-color: var(--page-five88-accent-green);
        color: var(--page-five88-text-color-light);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
    }

    .page-five88__game-card-button:hover {
        background-color: #218838;
    }

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

    .page-five88__promo-card {
        background-color: var(--page-five88-background-dark);
        color: var(--page-five88-text-color-light);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        text-align: left;
        transition: transform 0.3s ease;
    }

    .page-five88__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-five88__promo-card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .page-five88__promo-card-content {
        padding: 25px;
    }

    .page-five88__promo-card-title {
        font-size: 1.6em;
        margin-bottom: 10px;
        color: var(--page-five88-primary-color);
    }

    .page-five88__promo-card-description {
        font-size: 0.95em;
        margin-bottom: 20px;
        color: #ccc;
    }

    .page-five88__promo-card-link {
        display: inline-block;
        background-color: var(--page-five88-primary-color);
        color: var(--page-five88-text-color-light);
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-five88__promo-card-link:hover {
        background-color: #c0392b;
    }

    /* About Section */
    .page-five88__about-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
        font-size: 1.1em;
        color: #555;
    }

    .page-five88__about-content p {
        margin-bottom: 20px;
    }

    .page-five88__about-content ul {
        list-style-type: disc;
        padding-left: 25px;
        margin-bottom: 20px;
    }

    .page-five88__about-content li {
        margin-bottom: 10px;
    }

    /* Game Providers */
    .page-five88__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 40px;
        align-items: center;
        justify-content: center;
    }

    .page-five88__provider-logo {
        width: 100%;
        max-width: 150px; /* Ensure logos are not too large */
        height: auto;
        object-fit: contain;
        filter: grayscale(80%);
        transition: filter 0.3s ease;
        margin: 0 auto;
        display: block;
    }

    .page-five88__provider-logo:hover {
        filter: grayscale(0%);
    }

    /* FAQ Section */
    .page-five88__faq-list {
        max-width: 800px;
        margin: 40px auto 0;
        text-align: left;
    }

    .page-five88__faq-item {
        background-color: #fff;
        border: 1px solid var(--page-five88-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .page-five88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 25px;
        cursor: pointer;
        background-color: var(--page-five88-background-light);
        color: var(--page-five88-text-color-dark);
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-five88__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-five88-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-five88__faq-question:hover {
        background-color: #eee;
    }

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

    .page-five88__faq-item.active .page-five88__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-five88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #f9f9f9;
        color: var(--page-five88-secondary-color);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-five88__faq-answer p {
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-five88__hero-title {
            font-size: 2em;
        }

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

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

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

        .page-five88__game-categories,
        .page-five88__promotions-grid {
            grid-template-columns: 1fr;
        }

        .page-five88__floating-login {
            bottom: 15px;
            right: 15px;
        }

        .page-five88__floating-login-button {
            padding: 12px 20px;
            font-size: 0.9em;
        }

        /* Image responsive optimization */
        .page-five88 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-five88__game-card-image,
        .page-five88__promo-card-image,
        .page-five88__hero-banner {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
        .page-five88__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 480px) {
        .page-five88__hero-title {
            font-size: 1.8em;
        }
        .page-five88__hero-description {
            font-size: 0.9em;
        }
        .page-five88__hero-cta-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
        .page-five88__section-title {
            font-size: 1.8em;
        }
        .page-five88__faq-question {
            font-size: 1em;
            padding: 15px 20px;
        }
        .page-five88__faq-question h3 {
            font-size: 1em;
        }
        .page-five88__faq-answer {
            padding: 15px 20px;
        }
    }
  