
    /* Base styles for the page */
    .page-888 {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a2e;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed floating buttons */
        /* Assuming body padding-top is handled by shared.css for header offset */
    }

    .page-888__section-title {
        font-size: 2.2em;
        color: #e94560;
        text-align: center;
        margin-bottom: 40px;
        padding: 20px 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__button {
        display: inline-block;
        padding: 12px 25px;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        text-decoration: none;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__button--primary {
        background-color: #e94560;
        color: #ffffff;
    }

    .page-888__button--primary:hover {
        background-color: #c73a51;
        transform: translateY(-2px);
    }

    .page-888__button--secondary {
        background-color: #0f3460;
        color: #e0e0e0;
        border: 1px solid #e94560;
    }

    .page-888__button--secondary:hover {
        background-color: #1c4a7e;
        transform: translateY(-2px);
    }

    .page-888__promo-link {
        display: block;
        text-align: center;
        color: #ffd700; /* Gold color for promotions */
        font-weight: bold;
        text-decoration: none;
        margin-top: 20px;
        font-size: 1.1em;
        transition: color 0.3s ease;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__promo-link:hover {
        color: #ffeb3b;
    }

    /* Hero Section */
    .page-888__hero-section {
        position: relative;
        padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        min-height: 400px;
        background: linear-gradient(135deg, #1a1a2e, #0f3460);
    }

    .page-888__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Slightly transparent to let background color show */
        z-index: 0;
        max-width: 100%; /* Ensure responsiveness */
        box-sizing: border-box;
    }

    .page-888__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-888__brand-title {
        font-size: 3.5em;
        color: #e94560;
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__hero-tagline {
        font-size: 1.5em;
        color: #e0e0e0;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
        margin-bottom: 20px;
    }

    /* Floating Buttons */
    .page-888__floating-buttons-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: #0f3460; /* Match secondary button background */
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        padding: 10px 0;
        box-sizing: border-box;
    }

    .page-888__floating-buttons {
        display: flex;
        justify-content: space-around;
        max-width: 400px; /* Limit width for mobile aesthetics */
        margin: 0 auto;
        gap: 10px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-888__floating-button {
        flex: 1;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__floating-button--register {
        background-color: #e94560;
        color: #ffffff;
    }

    .page-888__floating-button--register:hover {
        background-color: #c73a51;
        transform: translateY(-2px);
    }

    .page-888__floating-button--login {
        background-color: #0f3460;
        color: #e0e0e0;
        border: 1px solid #e94560;
    }

    .page-888__floating-button--login:hover {
        background-color: #1c4a7e;
        transform: translateY(-2px);
    }

    /* Products Section */
    .page-888__products-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

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

    .page-888__product-item {
        background-color: #2e3a5f;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        padding-bottom: 20px; /* Ensure space for text */
        box-sizing: border-box;
    }

    .page-888__product-item:hover {
        transform: translateY(-5px);
    }

    .page-888__product-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        max-width: 100%; /* Ensure responsiveness */
        box-sizing: border-box;
    }

    .page-888__product-title {
        font-size: 1.5em;
        color: #e94560;
        margin: 20px 15px 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__product-description {
        font-size: 0.95em;
        color: #c0c0c0;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* About Section (Why Choose Us) */
    .page-888__about-section {
        padding: 60px 20px;
        background-color: #0f3460;
    }

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

    .page-888__feature-item {
        background-color: #1a1a2e;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        padding: 30px 20px;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-888__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-888__feature-image {
        width: 250px; /* Minimum 200px */
        height: 180px; /* Minimum 200px (adjusting to aspect ratio) */
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Ensure responsiveness */
        box-sizing: border-box;
    }

    .page-888__feature-title {
        font-size: 1.4em;
        color: #e94560;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__feature-description {
        font-size: 0.9em;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-888__faq-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

    .page-888__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-888__faq-item {
        background-color: #2e3a5f;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-888__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #2e3a5f;
        color: #e0e0e0;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-888__faq-question:hover {
        background-color: #3b4d7a;
    }

    .page-888__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #e0e0e0;
        pointer-events: none; /* Prevent h3 from blocking click event */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e94560;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        margin-left: 15px;
    }

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

    .page-888__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* 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;
        color: #c0c0c0;
        box-sizing: border-box;
    }

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

    .page-888__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Call to Action Section */
    .page-888__cta-section {
        padding: 60px 20px;
        background-color: #0f3460;
        text-align: center;
    }

    .page-888__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #c0c0c0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-888__promo-link--bottom {
        margin-top: 30px;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-888__section-title {
            font-size: 1.8em;
        }

        .page-888__brand-title {
            font-size: 2.8em;
        }

        .page-888__hero-tagline {
            font-size: 1.2em;
        }

        .page-888__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-888__button {
            width: 100%;
            max-width: 280px; /* Limit button width on small screens */
            margin: 0 auto;
            padding: 10px 20px;
            box-sizing: border-box;
        }

        .page-888__product-grid,
        .page-888__features-grid {
            grid-template-columns: 1fr;
        }

        .page-888__product-item,
        .page-888__feature-item,
        .page-888__faq-item {
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            /* padding: 0; */ /* Adjust padding if needed, but ensure content is not squished */
        }

        .page-888__product-description,
        .page-888__feature-description,
        .page-888__cta-description,
        .page-888__faq-answer p {
            font-size: 0.85em;
        }

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

        .page-888__faq-question h3 {
            font-size: 1.1em;
        }

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

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

        /* Image responsiveness for all images */
        .page-888 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-888__product-image,
        .page-888__feature-image {
            width: 100% !important;
            height: auto !important; /* Let height adjust naturally */
            max-height: 250px; /* Cap max height for product images */
            object-fit: cover; /* Maintain aspect ratio */
            box-sizing: border-box !important;
        }

        .page-888__hero-image {
            height: 100%; /* Ensure hero image covers */
        }
    }

    @media (max-width: 480px) {
        .page-888__brand-title {
            font-size: 2.2em;
        }

        .page-888__hero-tagline {
            font-size: 1em;
        }

        .page-888__floating-buttons {
            flex-direction: column;
            gap: 8px;
            padding: 0 10px;
        }
        .page-888__floating-button {
            padding: 8px 10px;
            font-size: 0.9em;
        }
        .page-888 {
            padding-bottom: 120px; /* More space for stacked floating buttons */
        }
    }
  