
    /* General styling for the page */
    .page-88helo {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0; /* Light grey text */
        background-color: #1a1a2e; /* Dark blue background */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
        padding-top: 10px; /* Small decorative padding, assuming body has header offset */
    }

    .page-88helo__section-title {
        font-size: 2.5em;
        color: #fcb900; /* Yellow accent */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 40px;
    }

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

    /* Hero Section */
    .page-88helo__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        text-align: center;
        background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%);
        border-bottom: 5px solid #e94560;
    }

    .page-88helo__hero-content {
        max-width: 900px;
        margin-bottom: 40px;
    }

    .page-88helo__hero-title {
        font-size: 3.2em;
        color: #fcb900;
        margin-bottom: 20px;
        line-height: 1.2;
    }

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

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

    .page-88helo__hero-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #e94560; /* Reddish pink accent */
        color: #ffffff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-88helo__hero-button--register {
        background-color: #fcb900; /* Yellow accent */
        color: #1a1a2e;
    }

    .page-88helo__hero-button:hover {
        background-color: #c73752;
        transform: translateY(-3px);
    }

    .page-88helo__hero-button--register:hover {
        background-color: #e0a300;
    }

    .page-88helo__hero-image-container {
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-88helo__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    /* Features Section */
    .page-88helo__features-section {
        padding: 80px 20px;
        background-color: #2a2a4e; /* Slightly lighter dark blue */
    }

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

    .page-88helo__feature-item {
        background-color: #3a3a5e;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-88helo__feature-icon {
        width: 250px; /* Min size 200px */
        height: auto;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive image */
        border-radius: 8px;
    }

    .page-88helo__feature-title {
        font-size: 1.8em;
        color: #fcb900;
        margin-bottom: 15px;
    }

    .page-88helo__feature-description {
        font-size: 1em;
        color: #cccccc;
    }

    /* Games Section */
    .page-88helo__games-section {
        padding: 80px 20px;
        background-color: #1a1a2e;
    }

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

    .page-88helo__game-item {
        background-color: #2a2a4e;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

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

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

    .page-88helo__game-title {
        font-size: 1.7em;
        color: #fcb900;
        margin: 20px 15px 10px 15px;
    }

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

    /* Providers Section */
    .page-88helo__providers-section {
        padding: 60px 20px;
        background-color: #2a2a4e;
    }

    .page-88helo__providers-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-88helo__provider-name {
        background-color: #e94560;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
        max-width: 100%; /* Responsive */
    }

    /* Payments Section */
    .page-88helo__payments-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

    .page-88helo__payments-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Ensure items are at least 200px wide */
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
        justify-items: center; /* Center items in their grid cells */
    }

    .page-88helo__payment-logo {
        width: 200px; /* Base width */
        height: auto;
        max-width: 100%; /* Ensures responsiveness */
        border-radius: 8px;
        background-color: #3a3a5e;
        padding: 15px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
        object-fit: contain;
        display: block; /* To center with margin auto if needed */
        margin: 0 auto; /* Center if it's smaller than parent */
    }


    /* Social Section */
    .page-88helo__social-section {
        padding: 60px 20px;
        background-color: #2a2a4e;
    }

    .page-88helo__social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .page-88helo__social-link {
        background-color: #e94560;
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
        word-break: break-word;
        box-sizing: border-box;
        max-width: 100%; /* Responsive */
    }

    .page-88helo__social-link:hover {
        background-color: #c73752;
    }

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

    .page-88helo__faq-list {
        max-width: 900px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .page-88helo__faq-item {
        border-bottom: 1px solid #3a3a5e;
    }

    .page-88helo__faq-item:last-child {
        border-bottom: none;
    }

    .page-88helo__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #2a2a4e;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-88helo__faq-question:hover {
        background-color: #3a3a5e;
    }

    .page-88helo__faq-question-title {
        font-size: 1.2em;
        color: #fcb900;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

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

    .page-88helo__faq-item.active .page-88helo__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or similar */
        content: "−"; /* Actual text change handled by JS */
    }

    .page-88helo__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        background-color: #3a3a5e;
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-88helo__faq-answer p {
        margin: 0;
        padding-bottom: 20px; /* Add padding to the paragraph inside */
    }

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

    /* Floating Buttons */
    .page-88helo__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-88helo__floating-button {
        display: block;
        padding: 12px 25px;
        background-color: #e94560;
        color: #ffffff;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-88helo__floating-button--register {
        background-color: #fcb900;
        color: #1a1a2e;
    }

    .page-88helo__floating-button:hover {
        background-color: #c73752;
        transform: translateY(-2px);
    }

    .page-88helo__floating-button--register:hover {
        background-color: #e0a300;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-88helo__hero-title {
            font-size: 2.8em;
        }
        .page-88helo__section-title {
            font-size: 2em;
        }
        .page-88helo__games-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-88helo__hero-section {
            padding: 40px 15px;
        }
        .page-88helo__hero-title {
            font-size: 2.2em;
        }
        .page-88helo__hero-description {
            font-size: 1.1em;
        }
        .page-88helo__hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        .page-88helo__hero-button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-88helo__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
            padding-top: 30px;
        }
        .page-88helo__section-description {
            font-size: 1em;
            margin-bottom: 40px;
        }

        .page-88helo__features-section,
        .page-88helo__games-section,
        .page-88helo__providers-section,
        .page-88helo__payments-section,
        .page-88helo__social-section,
        .page-88helo__faq-section {
            padding: 50px 15px;
        }

        /* List item mobile responsiveness */
        .page-88helo__features-grid,
        .page-88helo__games-grid,
        .page-88helo__providers-list,
        .page-88helo__payments-grid,
        .page-88helo__social-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-88helo__feature-item,
        .page-88helo__game-item,
        .page-88helo__provider-name,
        .page-88helo__social-link {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding for mobile */
            padding-right: 15px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-88helo__payment-logo {
            width: 100% !important; /* Take full width of its grid cell */
            max-width: 250px !important; /* Limit max width for better appearance */
            height: auto !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            margin: 0 auto !important; /* Center logos in their column */
        }

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

        .page-88helo__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }
        .page-88helo__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }

    @media (max-width: 480px) {
        .page-88helo__hero-title {
            font-size: 1.8em;
        }
        .page-88helo__hero-description {
            font-size: 1em;
        }
        .page-88helo__section-title {
            font-size: 1.6em;
        }
        .page-88helo__faq-question {
            padding: 12px 15px;
        }
        .page-88helo__faq-question-title {
            font-size: 1em;
        }
        .page-88helo__faq-answer {
            padding: 0 15px;
        }
        .page-88helo__faq-item.active .page-88helo__faq-answer {
            padding: 12px 15px !important;
        }
        .page-88helo__floating-button {
            padding: 8px 18px;
            font-size: 0.85em;
        }
    }
  