
    /* General styling for the page */
    .page-jilihot-777-login-register {
        font-family: 'Arial', sans-serif;
        color: #333333; /* Dark grey for good contrast */
        line-height: 1.6;
        background-color: #f8f8f8; /* Light background */
        padding-top: 10px; /* Small padding-top for visual separation from header */
    }

    .page-jilihot-777-login-register__section-title {
        font-size: 2.5em;
        color: #0056b3; /* Primary blue for titles */
        text-align: center;
        margin-bottom: 40px;
        padding: 20px 15px;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__section-subtitle {
        font-size: 1.2em;
        color: #555555;
        text-align: center;
        margin-bottom: 30px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__highlight {
        color: #cc0000; /* Red for emphasis, good contrast with light background */
        font-weight: bold;
    }

    /* Hero Section */
    .page-jilihot-777-login-register__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #007bff, #0056b3); /* Blue gradient */
        color: #ffffff;
        position: relative;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__hero-content {
        max-width: 900px;
        margin-bottom: 40px;
        z-index: 1;
    }

    .page-jilihot-777-login-register__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffffff; /* White text on blue background */
    }

    .page-jilihot-777-login-register__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0; /* Lighter white for description */
    }

    .page-jilihot-777-login-register__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-jilihot-777-login-register__primary-button,
    .page-jilihot-777-login-register__secondary-button {
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        display: inline-block;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__primary-button {
        background-color: #ffc107; /* Yellow */
        color: #333333; /* Dark text for contrast */
        font-weight: bold;
    }

    .page-jilihot-777-login-register__primary-button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-jilihot-777-login-register__secondary-button {
        background-color: #ffffff; /* White */
        color: #007bff; /* Primary blue */
        border: 2px solid #007bff;
        font-weight: bold;
    }

    .page-jilihot-777-login-register__secondary-button:hover {
        background-color: #e2e6ea;
        transform: translateY(-2px);
    }

    .page-jilihot-777-login-register__hero-image-wrapper {
        width: 100%;
        max-width: 1200px;
        margin-top: 40px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    .page-jilihot-777-login-register__hero-image {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    /* Features Section */
    .page-jilihot-777-login-register__features-section {
        padding: 80px 20px;
        background-color: #ffffff;
        text-align: center;
        box-sizing: border-box;
    }

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

    .page-jilihot-777-login-register__feature-item {
        background-color: #fefefe;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-777-login-register__feature-icon {
        width: 100%; /* Ensure max-width is 100% for images */
        max-width: 250px; /* Example size, min 200x200 */
        height: auto;
        margin-bottom: 20px;
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__feature-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-bottom: 15px;
    }

    .page-jilihot-777-login-register__feature-description {
        font-size: 1em;
        color: #666666;
    }

    /* Steps Section */
    .page-jilihot-777-login-register__steps-section {
        padding: 80px 20px;
        background-color: #f0f4f8; /* Light blue background */
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto 50px auto;
    }

    .page-jilihot-777-login-register__step-item {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__step-number {
        width: 60px;
        height: 60px;
        background-color: #007bff;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 2em;
        font-weight: bold;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__step-title {
        font-size: 1.4em;
        color: #0056b3;
        margin-bottom: 10px;
    }

    .page-jilihot-777-login-register__step-description {
        font-size: 0.95em;
        color: #666666;
    }

    .page-jilihot-777-login-register__cta-buttons {
        margin-top: 40px;
    }

    .page-jilihot-777-login-register__cta-button {
        padding: 18px 40px;
        background-color: #28a745; /* Green for CTA */
        color: #ffffff;
        border-radius: 8px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.2s ease;
        display: inline-block;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__cta-button:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    /* Games Showcase Section */
    .page-jilihot-777-login-register__games-showcase {
        padding: 80px 20px;
        background-color: #ffffff;
        text-align: center;
        box-sizing: border-box;
    }

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

    .page-jilihot-777-login-register__game-card {
        background-color: #fefefe;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-777-login-register__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Responsive image */
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__game-title {
        font-size: 1.4em;
        color: #0056b3;
        padding: 15px 20px 0;
    }

    .page-jilihot-777-login-register__game-description {
        font-size: 0.95em;
        color: #666666;
        padding: 0 20px 20px;
    }

    /* FAQ Section */
    .page-jilihot-777-login-register__faq-section {
        padding: 80px 20px;
        background-color: #f0f4f8;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-jilihot-777-login-register__faq-item {
        background-color: #ffffff;
        margin-bottom: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #007bff; /* Blue for question header */
        color: #ffffff;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__faq-question:hover {
        background-color: #0056b3;
    }

    .page-jilihot-777-login-register__faq-question-title {
        margin: 0;
        font-size: 1.2em; /* Ensure title is readable */
        color: #ffffff;
        pointer-events: none; /* Crucial for click event on parent div */
        flex-grow: 1;
        text-align: left;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent div */
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__faq-item.active .page-jilihot-777-login-register__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-jilihot-777-login-register__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;
        background-color: #fefefe;
        color: #333333;
        box-sizing: border-box;
    }

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

    .page-jilihot-777-login-register__faq-answer p {
        margin: 0;
        font-size: 1em;
        color: #555555;
    }

    /* Final CTA Section */
    .page-jilihot-777-login-register__cta-final-section {
        padding: 80px 20px;
        background: linear-gradient(135deg, #0056b3, #007bff); /* Blue gradient */
        color: #ffffff;
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-777-login-register__cta-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-jilihot-777-login-register__cta-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: #ffffff;
    }

    .page-jilihot-777-login-register__cta-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        color: #e0e0e0;
    }

    .page-jilihot-777-login-register__cta-button--large {
        padding: 20px 45px;
        font-size: 1.3em;
        background-color: #ffc107; /* Yellow */
        color: #333333;
        font-weight: bold;
    }

    .page-jilihot-777-login-register__cta-button--large:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }


    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-jilihot-777-login-register__hero-title {
            font-size: 3em;
        }
        .page-jilihot-777-login-register__section-title {
            font-size: 2em;
        }
        .page-jilihot-777-login-register__cta-title {
            font-size: 2.5em;
        }
    }

    @media (max-width: 768px) {
        .page-jilihot-777-login-register__hero-section {
            padding: 40px 15px;
        }
        .page-jilihot-777-login-register__hero-title {
            font-size: 2.5em;
        }
        .page-jilihot-777-login-register__hero-description {
            font-size: 1.1em;
        }
        .page-jilihot-777-login-register__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-jilihot-777-login-register__primary-button,
        .page-jilihot-777-login-register__secondary-button,
        .page-jilihot-777-login-register__cta-button,
        .page-jilihot-777-login-register__cta-button--large {
            width: 100%;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-jilihot-777-login-register__section-title {
            font-size: 1.8em;
            padding: 15px;
        }
        .page-jilihot-777-login-register__section-subtitle {
            font-size: 1em;
        }

        /* List item specific mobile responsiveness */
        .page-jilihot-777-login-register__features-grid,
        .page-jilihot-777-login-register__steps-container,
        .page-jilihot-777-login-register__game-grid {
            grid-template-columns: 1fr; /* Single column */
            gap: 20px;
            padding: 0 15px;
            box-sizing: border-box;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-jilihot-777-login-register__feature-item,
        .page-jilihot-777-login-register__step-item,
        .page-jilihot-777-login-register__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-jilihot-777-login-register__game-image {
            height: 180px; /* Adjust image height for mobile */
        }

        .page-jilihot-777-login-register__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }
        .page-jilihot-777-login-register__faq-question-title {
            font-size: 1.1em;
        }
        .page-jilihot-777-login-register__faq-answer {
            padding: 0 20px;
        }
        .page-jilihot-777-login-register__faq-item.active .page-jilihot-777-login-register__faq-answer {
            padding: 15px 20px !important;
        }

        .page-jilihot-777-login-register__cta-title {
            font-size: 2em;
        }
        .page-jilihot-777-login-register__cta-description {
            font-size: 1.1em;
        }
    }

    @media (max-width: 480px) {
        .page-jilihot-777-login-register__hero-title {
            font-size: 2em;
        }
        .page-jilihot-777-login-register__hero-description {
            font-size: 1em;
        }
        .page-jilihot-777-login-register__section-title {
            font-size: 1.5em;
        }
        .page-jilihot-777-login-register__cta-title {
            font-size: 1.8em;
        }
        .page-jilihot-777-login-register__cta-description {
            font-size: 1em;
        }
        .page-jilihot-777-login-register__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-jilihot-777-login-register__faq-question-title {
            font-size: 1em;
        }
        .page-jilihot-777-login-register__faq-toggle {
            font-size: 1.5em;
            margin-left: 10px;
        }
        .page-jilihot-777-login-register__faq-answer {
            padding: 0 15px;
        }
        .page-jilihot-777-login-register__faq-item.active .page-jilihot-777-login-register__faq-answer {
            padding: 10px 15px !important;
        }
    }
  