
    .page-123heo {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f4f4f4;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-123heo__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-123heo__section-title {
        text-align: center;
        color: #2c3e50;
        margin-bottom: 20px;
        font-size: 2.2em;
        font-weight: bold;
    }

    .page-123heo__section-description {
        text-align: center;
        color: #555;
        margin-bottom: 40px;
        font-size: 1.1em;
    }

    /* Hero Section */
    .page-123heo__hero-section {
        position: relative;
        background: linear-gradient(135deg, #FF6B6B, #FFD166); /* Vibrant gradient */
        color: #fff;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 450px;
        overflow: hidden;
        padding-top: 10px; /* Small top padding for decoration, body has actual offset */
    }

    .page-123heo__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin-bottom: 30px;
    }

    .page-123heo__hero-title {
        font-size: 3.5em;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #fff; /* Ensure good contrast */
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-123heo__hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: #eee;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .page-123heo__hero-cta {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-123heo__button {
        padding: 15px 30px;
        border: none;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        text-decoration: none;
        color: #fff;
    }

    .page-123heo__button--primary {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-123heo__button--primary:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-123heo__button--secondary {
        background-color: #6c757d; /* Grey */
        color: #fff;
    }

    .page-123heo__button--secondary:hover {
        background-color: #5a6268;
        transform: translateY(-2px);
    }

    .page-123heo__hero-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .page-123heo__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Overlay effect */
        display: block;
    }

    /* Fixed Buttons */
    .page-123heo__fixed-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .page-123heo__fixed-button {
        padding: 12px 25px;
        border: none;
        border-radius: 25px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        color: #fff;
        white-space: nowrap; /* Prevent text wrapping */
    }

    .page-123heo__fixed-button--register {
        background-color: #28a745; /* Green */
    }

    .page-123heo__fixed-button--register:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    .page-123heo__fixed-button--login {
        background-color: #17a2b8; /* Cyan */
    }

    .page-123heo__fixed-button--login:hover {
        background-color: #138496;
        transform: translateY(-2px);
    }

    /* About Section */
    .page-123heo__about-section {
        background-color: #fff;
        padding: 60px 0;
    }

    .page-123heo__image-text-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-123heo__image-text-item {
        text-align: center;
        background-color: #f9f9f9;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-123heo__image-text-image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        min-width: 200px; /* Minimum image size */
        min-height: 200px;
    }

    .page-123heo__image-text-title {
        font-size: 1.5em;
        color: #34495e;
        margin-bottom: 10px;
    }

    .page-123heo__image-text-description {
        color: #666;
        font-size: 1em;
    }

    /* Games Section */
    .page-123heo__games-section {
        background-color: #e9ecef;
        padding: 60px 0;
    }

    .page-123heo__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-123heo__game-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-123heo__game-item:hover {
        transform: translateY(-5px);
    }

    .page-123heo__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        min-width: 200px;
        min-height: 200px;
    }

    .page-123heo__game-title {
        font-size: 1.4em;
        color: #2c3e50;
        margin: 15px 10px 5px;
    }

    .page-123heo__game-description {
        color: #666;
        padding: 0 15px 20px;
        font-size: 0.95em;
    }

    /* Promo Section */
    .page-123heo__promo-section {
        background-color: #fff;
        padding: 60px 0;
    }

    .page-123heo__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-123heo__promo-item {
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        overflow: hidden;
        text-align: center;
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-123heo__promo-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        min-width: 200px;
        min-height: 200px;
    }

    .page-123heo__promo-title {
        font-size: 1.5em;
        color: #34495e;
        margin: 15px 15px 10px;
    }

    .page-123heo__promo-text {
        color: #666;
        padding: 0 15px 20px;
        font-size: 0.95em;
    }

    /* Payment Section */
    .page-123heo__payment-section {
        background-color: #e9ecef;
        padding: 60px 0;
    }

    .page-123heo__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-123heo__payment-item {
        background-color: #fff;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        text-align: center;
        min-width: 150px;
        flex: 1 1 150px; /* Allow items to grow/shrink but maintain min-width */
        max-width: 200px; /* Limit max width for larger screens */
        box-sizing: border-box; /* Ensure padding is included */
    }

    .page-123heo__payment-logo {
        max-width: 100%;
        height: auto;
        max-height: 80px; /* Limit logo height */
        object-fit: contain;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        min-width: 200px; /* enforce min size for gallery images */
        min-height: 200px;
    }

    .page-123heo__payment-name {
        font-weight: bold;
        color: #333;
        font-size: 1.1em;
    }

    /* FAQ Section */
    .page-123heo__faq-section {
        background-color: #fff;
        padding: 60px 0;
    }

    .page-123heo__faq-list {
        max-width: 800px;
        margin: 40px auto 0;
    }

    .page-123heo__faq-item {
        background-color: #f9f9f9;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-123heo__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #e0e0e0;
        color: #333;
        font-weight: bold;
        font-size: 1.1em;
        user-select: none;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-123heo__faq-question:hover {
        background-color: #d0d0d0;
    }

    .page-123heo__faq-question-text {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Crucial for click event on parent */
        color: #333; /* Ensure good contrast */
    }

    .page-123heo__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
        color: #333; /* Ensure good contrast */
    }

    .page-123heo__faq-item.active .page-123heo__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or similar visually */
    }

    .page-123heo__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;
        box-sizing: border-box;
        color: #555;
        background-color: #f0f0f0;
    }

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

    .page-123heo__faq-answer p {
        margin: 0;
        font-size: 1em;
    }

    /* Bottom CTA Section */
    .page-123heo__cta-bottom-section {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
        padding: 60px 20px;
        text-align: center;
    }

    .page-123heo__cta-bottom-section .page-123heo__section-title,
    .page-123heo__cta-bottom-section .page-123heo__section-description {
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }

    .page-123heo__cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-123heo__container {
            padding: 15px;
        }

        .page-123heo__hero-section {
            padding: 40px 15px;
            min-height: 350px;
        }

        .page-123heo__hero-title {
            font-size: 2.5em;
        }

        .page-123heo__hero-subtitle {
            font-size: 1.2em;
        }

        .page-123heo__hero-cta {
            flex-direction: column;
            gap: 15px;
        }

        .page-123heo__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

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

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

        /* Fixed buttons for mobile */
        .page-123heo__fixed-buttons {
            bottom: 15px;
            right: 15px;
            left: unset; /* Ensure it stays right */
            flex-direction: row; /* Make them side-by-side on mobile for better access */
            gap: 10px;
            justify-content: flex-end; /* Align to the right */
            width: auto;
            max-width: calc(100% - 30px); /* Adjust width */
        }

        .page-123heo__fixed-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        /* Image-text grid for mobile */
        .page-123heo__image-text-grid,
        .page-123heo__game-grid,
        .page-123heo__promo-grid,
        .page-123heo__payment-grid {
            grid-template-columns: 1fr; /* Single column for all grids */
            gap: 20px;
        }

        .page-123heo__image-text-item,
        .page-123heo__game-item,
        .page-123heo__promo-item,
        .page-123heo__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for mobile */
        }

        .page-123heo__image-text-image,
        .page-123heo__game-image,
        .page-123heo__promo-image,
        .page-123heo__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            min-width: 200px;
            min-height: 200px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        /* FAQ mobile adjustments */
        .page-123heo__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-123heo__faq-answer {
            padding: 0 20px;
        }
        .page-123heo__faq-item.active .page-123heo__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-123heo__hero-title {
            font-size: 2em;
        }
        .page-123heo__hero-subtitle {
            font-size: 1em;
        }
        .page-123heo__fixed-buttons {
            bottom: 10px;
            right: 10px;
            max-width: calc(100% - 20px);
        }
        .page-123heo__fixed-button {
            padding: 8px 15px;
            font-size: 0.85em;
        }
    }
  