
    .page-abc88 {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text on dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll from fixed buttons */
    }

    .page-abc88__hero-section {
        background: url('[GALLERY:hero:1920x1080:casino,gaming,abstract]') no-repeat center center/cover;
        color: #ffffff;
        text-align: center;
        padding: 10px 20px 80px; /* 10px top padding for hero */
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        position: relative;
        z-index: 1;
    }

    .page-abc88__hero-content {
        max-width: 900px;
        background-color: rgba(0, 0, 0, 0.6);
        padding: 30px;
        border-radius: 10px;
    }

    .page-abc88__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #ffcc00; /* Gold accent */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        word-wrap: break-word; /* Ensure title breaks on small screens */
    }

    .page-abc88__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
        word-wrap: break-word;
    }

    .page-abc88__hero-cta-button,
    .page-abc88__primary-cta-button {
        display: inline-block;
        background-color: #00cc66; /* Green accent */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-abc88__hero-cta-button:hover,
    .page-abc88__primary-cta-button:hover {
        background-color: #00a352;
    }

    .page-abc88__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-abc88__floating-button {
        display: block;
        width: 100px;
        padding: 10px 0;
        text-align: center;
        border-radius: 25px;
        font-weight: bold;
        font-size: 0.9em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, background-color 0.2s ease;
        text-decoration: none;
        color: #fff; /* White text for contrast */
    }

    .page-abc88__floating-button--register {
        background-color: #007bff; /* Blue for register */
    }

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

    .page-abc88__floating-button--login {
        background-color: #ffcc00; /* Gold for login */
        color: #333; /* Darker text for contrast */
    }

    .page-abc88__floating-button--login:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-abc88__section-title {
        font-size: 2.2em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 20px;
        padding-top: 40px;
        word-wrap: break-word;
    }

    .page-abc88__section-description {
        font-size: 1.1em;
        color: #e0e0e0;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
        padding: 0 15px;
        word-wrap: break-word;
    }

    .page-abc88__products-section,
    .page-abc88__promotions-section,
    .page-abc88__about-section,
    .page-abc88__features-section,
    .page-abc88__faq-section,
    .page-abc88__cta-bottom-section {
        padding: 60px 20px;
        text-align: center;
    }

    .page-abc88__product-grid,
    .page-abc88__promo-grid,
    .page-abc88__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-abc88__product-item,
    .page-abc88__promo-item,
    .page-abc88__feature-item {
        background-color: #2a2a2a;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .page-abc88__product-item:hover,
    .page-abc88__promo-item:hover,
    .page-abc88__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-abc88__product-image,
    .page-abc88__promo-image,
    .page-abc88__feature-icon {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        object-fit: cover;
        display: block; /* Ensure image is block for margin auto to center */
        margin-left: auto;
        margin-right: auto;
    }

    .page-abc88__product-image {
        width: 100%; /* For responsive grid items */
        aspect-ratio: 4/3; /* Maintain aspect ratio */
    }
    .page-abc88__promo-image {
        width: 100%;
        aspect-ratio: 16/9;
    }
    .page-abc88__feature-icon {
        width: 100px; /* Fixed width for icons, but still responsive max-width */
        height: 100px;
    }


    .page-abc88__product-title,
    .page-abc88__promo-title,
    .page-abc88__feature-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .page-abc88__product-text,
    .page-abc88__promo-text,
    .page-abc88__feature-text {
        font-size: 1em;
        color: #c0c0c0;
        word-wrap: break-word;
    }

    .page-abc88__cta-button-wrapper {
        margin-top: 40px;
    }

    .page-abc88__about-content {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
        background-color: #2a2a2a;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-abc88__about-content .page-abc88__section-title {
        text-align: left;
        margin-bottom: 20px;
        padding-top: 0;
    }

    .page-abc88__about-content .page-abc88__section-description {
        text-align: left;
        margin: 0 0 15px;
        padding: 0;
    }

    .page-abc88__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

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

    .page-abc88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
        color: #ffcc00;
    }

    .page-abc88__faq-question:hover {
        background-color: #444;
    }

    .page-abc88__faq-question-text {
        margin: 0;
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        color: #ffcc00;
        word-wrap: break-word;
        flex-grow: 1; /* Allow text to take available space */
    }

    .page-abc88__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        margin-left: 15px;
        pointer-events: none; /* Prevent span from blocking click on parent div */
        transition: transform 0.3s ease;
        color: #00cc66; /* Green accent for toggle */
    }

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

    .page-abc88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        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: #2a2a2a;
        color: #c0c0c0;
    }

    .page-abc88__faq-item.active .page-abc88__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 20px !important; /* Specific padding for active state, consistency */
        opacity: 1;
    }

    .page-abc88__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Small padding at bottom of paragraph for spacing */
        word-wrap: break-word;
    }
    .page-abc88__faq-answer p:last-child {
        padding-bottom: 0;
    }


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

        .page-abc88__hero-subtitle {
            font-size: 1em;
        }

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

        .page-abc88__section-title {
            font-size: 1.8em;
        }

        .page-abc88__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-abc88__products-section,
        .page-abc88__promotions-section,
        .page-abc88__about-section,
        .page-abc88__features-section,
        .page-abc88__faq-section,
        .page-abc88__cta-bottom-section {
            padding: 40px 15px;
        }

        .page-abc88__product-grid,
        .page-abc88__promo-grid,
        .page-abc88__features-grid {
            grid-template-columns: 1fr; /* Stack items on mobile */
            gap: 20px;
            width: 100%; /* Ensure container takes full width */
            max-width: 100%; /* Ensure container takes full width */
            box-sizing: border-box; /* Include padding in width */
            padding: 0 15px; /* Add some horizontal padding */
        }

        .page-abc88__product-item,
        .page-abc88__promo-item,
        .page-abc88__feature-item {
            padding: 20px;
            width: 100% !important; /* Force full width for list items */
            max-width: 100% !important; /* Force full width for list items */
            box-sizing: border-box !important; /* Crucial for padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important; /* Ensure text wraps */
            overflow-wrap: break-word !important;
        }

        .page-abc88__product-image,
        .page-abc88__promo-image,
        .page-abc88__feature-icon {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .page-abc88__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Buttons side-by-side on smaller screens */
            width: calc(100% - 30px); /* Adjust width to fit screen with padding */
            justify-content: space-around;
        }

        .page-abc88__floating-button {
            width: 48%; /* Each button takes almost half the width */
            padding: 12px 0;
            font-size: 0.9em;
        }

        .page-abc88__about-content {
            padding: 30px 20px;
        }

        .page-abc88__faq-question {
            padding: 12px 15px;
        }

        .page-abc88__faq-question-text {
            font-size: 1.1em;
        }

        .page-abc88__faq-toggle {
            font-size: 1.3em;
        }

        .page-abc88__faq-answer {
            padding: 0 15px; /* Adjust initial padding for mobile */
        }

        .page-abc88__faq-item.active .page-abc88__faq-answer {
            padding: 15px 15px !important; /* Adjust active padding for mobile */
        }
    }

    @media (max-width: 480px) {
        .page-abc88__hero-section {
            min-height: 400px;
            padding: 10px 10px 60px;
        }
        .page-abc88__hero-content {
            padding: 20px;
        }
        .page-abc88__hero-title {
            font-size: 1.8em;
        }
        .page-abc88__section-title {
            font-size: 1.6em;
        }
        .page-abc88__floating-buttons {
            flex-direction: column; /* Stack buttons again on very small screens */
            width: 120px; /* Fixed width */
            left: auto; /* Reset left */
            right: 10px; /* Keep to the right */
        }
        .page-abc88__floating-button {
            width: 100%; /* Full width of its container */
            margin-bottom: 5px; /* Add some spacing between stacked buttons */
        }
        .page-abc88__floating-button:last-child {
            margin-bottom: 0;
        }
    }
  