
    .page-88win {
        font-family: 'Arial', sans-serif;
        background-color: #1a1a1a;
        color: #ffffff;
        line-height: 1.6;
        padding-top: 10px; /* Adjust for header offset if shared.css handles body padding-top */
    }

    .page-88win__section-title {
        font-size: 2.5em;
        color: #f0b400; /* Accent color */
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-88win__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #cccccc;
    }

    /* Hero Section */
    .page-88win__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #2a2a2a, #0a0a0a);
        overflow: hidden;
        position: relative;
        border-radius: 10px;
        margin: 20px auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-88win__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-88win__hero-title {
        font-size: 3em;
        color: #f0b400;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-88win__hero-description {
        font-size: 1.3em;
        color: #e0e0e0;
        margin-bottom: 40px;
    }

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

    .page-88win__button {
        padding: 15px 30px;
        font-size: 1.1em;
        font-weight: bold;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        display: inline-block;
        color: #ffffff; /* Default for all buttons */
    }

    .page-88win__button--primary {
        background-color: #f0b400;
        color: #1a1a1a;
    }

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

    .page-88win__button--secondary {
        background-color: #444444;
        color: #ffffff;
    }

    .page-88win__button--secondary:hover {
        background-color: #555555;
        transform: translateY(-2px);
    }

    .page-88win__button--external {
        background-color: #007bff; /* A different color for external link */
        color: #ffffff;
    }

    .page-88win__button--external:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-88win__external-link-button {
        text-decoration: none; /* Ensure the anchor tag doesn't underline the button */
    }

    .page-88win__hero-image-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        box-sizing: border-box;
    }

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

    /* Floating Buttons */
    .page-88win__floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px); /* Adjust width for mobile padding */
        max-width: 400px; /* Limit width on larger screens */
        box-sizing: border-box;
    }

    .page-88win__floating-button {
        flex: 1;
        padding: 12px 0;
        font-size: 1.1em;
        font-weight: bold;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        color: #1a1a1a;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88win__floating-button--register {
        background-color: #f0b400;
    }

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

    .page-88win__floating-button--login {
        background-color: #007bff;
        color: #ffffff;
    }

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

    /* Games Section */
    .page-88win__games-section,
    .page-88win__promotions-section,
    .page-88win__why-choose-us-section,
    .page-88win__providers-section,
    .page-88win__payments-section,
    .page-88win__faq-section,
    .page-88win__cta-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
        box-sizing: border-box;
    }

    .page-88win__games-grid,
    .page-88win__promotions-grid,
    .page-88win__features-grid,
    .page-88win__providers-grid,
    .page-88win__payments-grid {
        display: grid;
        gap: 30px;
        justify-content: center;
    }

    .page-88win__games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-88win__game-card {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .page-88win__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88win__game-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
    }

    .page-88win__game-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover; /* Ensure images cover the area without distortion */
        width: 100%; /* Make image fill wrapper width */
        min-height: 200px; /* Ensure minimum height */
    }

    .page-88win__game-title {
        font-size: 1.8em;
        color: #f0b400;
        margin: 20px 15px 10px 15px;
        font-weight: bold;
    }

    .page-88win__game-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-88win__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-88win__promo-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

    .page-88win__promo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    }

    .page-88win__promo-image-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333;
    }

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

    .page-88win__promo-title {
        font-size: 1.6em;
        color: #f0b400;
        margin: 20px 15px 10px 15px;
        font-weight: bold;
    }

    .page-88win__promo-description {
        font-size: 1em;
        color: #cccccc;
        padding: 0 15px;
    }

    /* Why Choose Us Section */
    .page-88win__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-88win__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-88win__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-88win__feature-icon {
        width: 100px; /* Displayed width */
        height: auto;
        max-width: 100px; /* Max displayed width */
        margin-bottom: 20px;
        min-width: 200px; /* Enforce minimum size for gallery placeholder */
        min-height: 200px; /* Enforce minimum size for gallery placeholder */
    }

    .page-88win__feature-title {
        font-size: 1.5em;
        color: #f0b400;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-88win__feature-description {
        font-size: 0.95em;
        color: #cccccc;
    }

    /* Providers and Payments Section */
    .page-88win__providers-grid,
    .page-88win__payments-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .page-88win__provider-logo-wrapper,
    .page-88win__payment-logo-wrapper {
        background-color: #2a2a2a;
        border-radius: 8px;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        min-height: 120px; /* Ensure visible area */
    }

    .page-88win__provider-logo,
    .page-88win__payment-logo {
        max-width: 100%;
        max-height: 80px; /* Displayed height */
        height: auto;
        display: block;
        filter: grayscale(100%) brightness(1.5); /* Allowed for making logos visible on dark background */
        transition: filter 0.3s ease;
        min-width: 200px; /* Enforce minimum size for gallery placeholder */
        min-height: 200px; /* Enforce minimum size for gallery placeholder */
    }

    .page-88win__provider-logo:hover,
    .page-88win__payment-logo:hover {
        filter: grayscale(0%) brightness(1); /* Restore color on hover */
    }

    /* FAQ Section */
    .page-88win__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-88win__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

    .page-88win__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333333;
        border-bottom: 1px solid #444444;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-88win__faq-question:hover {
        background-color: #444444;
    }

    .page-88win__faq-question h3 {
        margin: 0;
        font-size: 1.25em;
        color: #f0b400;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
        font-weight: bold;
    }

    .page-88win__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #f0b400;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

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

    .page-88win__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;
    }

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

    .page-88win__faq-answer p {
        margin: 0;
        color: #cccccc;
        font-size: 1em;
    }

    /* CTA Section */
    .page-88win__cta-section {
        text-align: center;
        padding-bottom: 80px;
    }

    .page-88win__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-88win__section-title {
            font-size: 2em;
            padding-top: 30px;
        }

        .page-88win__hero-section {
            padding: 40px 15px;
        }

        .page-88win__hero-title {
            font-size: 2.2em;
        }

        .page-88win__hero-description {
            font-size: 1.1em;
        }

        .page-88win__hero-buttons {
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 300px;
        }

        .page-88win__button {
            width: 100%;
            box-sizing: border-box;
        }

        .page-88win__floating-buttons {
            bottom: 15px;
            gap: 10px;
            width: calc(100% - 30px);
        }

        .page-88win__floating-button {
            padding: 10px 0;
            font-size: 1em;
        }

        .page-88win__games-section,
        .page-88win__promotions-section,
        .page-88win__why-choose-us-section,
        .page-88win__providers-section,
        .page-88win__payments-section,
        .page-88win__faq-section,
        .page-88win__cta-section {
            padding: 40px 15px;
        }

        .page-88win__games-grid,
        .page-88win__promotions-grid,
        .page-88win__features-grid,
        .page-88win__providers-grid,
        .page-88win__payments-grid {
            grid-template-columns: 1fr; /* Stack columns on mobile */
            gap: 20px;
        }
        
        /* List item specific responsive requirements */
        .page-88win__games-grid > div,
        .page-88win__promotions-grid > div,
        .page-88win__features-grid > div,
        .page-88win__providers-grid > div,
        .page-88win__payments-grid > div {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88win__game-image-wrapper,
        .page-88win__promo-image-wrapper {
            height: 180px; /* Slightly smaller height on mobile */
        }

        .page-88win__game-image,
        .page-88win__promo-image {
            min-height: 180px;
        }

        .page-88win__faq-question {
            padding: 15px 20px;
        }

        .page-88win__faq-question h3 {
            font-size: 1.1em;
        }

        .page-88win__faq-answer {
            padding: 0 20px;
        }
        
        .page-88win__faq-item.active .page-88win__faq-answer {
            padding: 15px 20px !important;
        }

        .page-88win__cta-buttons {
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 300px;
            margin: 40px auto 0 auto;
        }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
        .page-88win__games-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .page-88win__promotions-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .page-88win__features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .page-88win__providers-grid,
        .page-88win__payments-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (min-width: 1025px) {
        .page-88win__hero-section {
            flex-direction: row;
            text-align: left;
            padding: 80px 40px;
        }
        .page-88win__hero-content {
            flex: 1;
            padding-right: 40px;
        }
        .page-88win__hero-image-wrapper {
            flex: 1;
            margin-top: 0;
        }
        .page-88win__hero-title {
            font-size: 3.5em;
            text-align: left;
        }
        .page-88win__hero-description {
            text-align: left;
        }
        .page-88win__hero-buttons {
            justify-content: flex-start;
        }
        .page-88win__games-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .page-88win__promotions-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        .page-88win__features-grid {
            grid-template-columns: repeat(4, 1fr);
        }
        .page-88win__providers-grid,
        .page-88win__payments-grid {
            grid-template-columns: repeat(6, 1fr);
        }
    }
  