
    /* General Styling for the entire page content */
    .page-jilihot-link-login {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small padding top as per fixed nav spacing rule */
    }

    .page-jilihot-link-login__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Section Titles */
    .page-jilihot-link-login__section-title {
        font-size: 2.5em;
        color: #d40000; /* Hotjili brand color */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        word-wrap: break-word; /* Ensure long titles wrap */
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__section-description {
        font-size: 1.1em;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #555;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Hero Section */
    .page-jilihot-link-login__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: linear-gradient(135deg, #ff4d4d, #d40000);
        color: #fff;
        padding: 60px 20px;
        gap: 40px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-jilihot-link-login__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: bold;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .page-jilihot-link-login__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-jilihot-link-login__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__hero-button--primary {
        background-color: #fff;
        color: #d40000;
        border: 2px solid #fff;
    }

    .page-jilihot-link-login__hero-button--primary:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
    }

    .page-jilihot-link-login__hero-button--secondary {
        background-color: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

    .page-jilihot-link-login__hero-button--secondary:hover {
        background-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .page-jilihot-link-login__hero-image-container {
        width: 100%;
        max-width: 800px;
        margin-top: 40px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__hero-image {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        max-width: 100% !important; /* Responsive image */
        box-sizing: border-box !important; /* Responsive image */
    }

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

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

    .page-jilihot-link-login__feature-item {
        background-color: #fefefe;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-jilihot-link-login__feature-icon {
        width: 250px; /* Min size 200x200px, so 250 is good */
        height: auto;
        margin-bottom: 20px;
        max-width: 100% !important; /* Responsive image */
        box-sizing: border-box !important; /* Responsive image */
    }

    .page-jilihot-link-login__feature-title {
        font-size: 1.8em;
        color: #d40000;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__feature-text {
        font-size: 1em;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* How-To Section */
    .page-jilihot-link-login__how-to-section {
        background-color: #f0f0f0;
        padding: 60px 0;
    }

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

    .page-jilihot-link-login__step-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: #d40000;
        margin-bottom: 15px;
    }

    .page-jilihot-link-login__step-title {
        font-size: 1.8em;
        color: #333;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__step-text {
        font-size: 1em;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__cta-bottom {
        text-align: center;
        margin-top: 60px;
        padding: 30px;
        background-color: #d40000;
        border-radius: 10px;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .page-jilihot-link-login__cta-text {
        font-size: 1.5em;
        margin-bottom: 25px;
        font-weight: bold;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Games Section */
    .page-jilihot-link-login__games-section {
        background-color: #fff;
        padding: 60px 0;
    }

    .page-jilihot-link-login__game-providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjusted for logos */
        gap: 20px;
        margin-top: 40px;
    }

    .page-jilihot-link-login__provider-item {
        background-color: #fefefe;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-jilihot-link-login__provider-logo {
        width: 100%;
        max-width: 280px; /* Adjusted to fit the minmax(250px) grid item */
        height: auto;
        margin-bottom: 10px;
        max-height: 100px; /* Keep logos from being too tall */
        object-fit: contain; /* Ensure logos scale correctly */
        max-width: 100% !important; /* Responsive image */
        box-sizing: border-box !important; /* Responsive image */
    }

    .page-jilihot-link-login__provider-name {
        font-size: 1.1em;
        font-weight: bold;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-jilihot-link-login__faq-section {
        background-color: #f8f8f8;
        padding: 60px 0;
    }

    .page-jilihot-link-login__faq-list {
        margin-top: 40px;
    }

    .page-jilihot-link-login__faq-item {
        background-color: #fff;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-jilihot-link-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-jilihot-link-login__faq-question:hover {
        background-color: #f5f5f5;
    }

    .page-jilihot-link-login__faq-question-title {
        font-size: 1.25em;
        color: #333;
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-jilihot-link-login__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #d40000;
        margin-left: 20px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
    }

    .page-jilihot-link-login__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: #666;
        background-color: #fdfdfd;
    }

    .page-jilihot-link-login__faq-answer p {
        margin: 0;
        padding-bottom: 15px; /* Adjust as needed for spacing */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Active state for FAQ */
    .page-jilihot-link-login__faq-item.active .page-jilihot-link-login__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-jilihot-link-login__faq-item.active .page-jilihot-link-login__faq-toggle {
        transform: rotate(45deg); /* Changes '+' to 'x' visually, or you can use '-' */
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-jilihot-link-login__container {
            padding: 15px;
        }

        .page-jilihot-link-login__section-title {
            font-size: 2em;
            margin-bottom: 15px;
        }

        .page-jilihot-link-login__section-description {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .page-jilihot-link-login__hero-section {
            padding: 40px 15px;
            flex-direction: column;
        }

        .page-jilihot-link-login__hero-title {
            font-size: 2.5em;
            margin-bottom: 15px;
        }

        .page-jilihot-link-login__hero-description {
            font-size: 1.1em;
            margin-bottom: 25px;
        }

        .page-jilihot-link-login__hero-actions {
            flex-direction: column;
            gap: 15px;
            width: 100%;
        }

        .page-jilihot-link-login__hero-button {
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-jilihot-link-login__hero-image-container {
            margin-top: 30px;
        }

        .page-jilihot-link-login__hero-image,
        .page-jilihot-link-login__feature-icon,
        .page-jilihot-link-login__provider-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-jilihot-link-login__features-grid,
        .page-jilihot-link-login__steps-grid,
        .page-jilihot-link-login__game-providers-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        /* List item specific responsive styles */
        .page-jilihot-link-login__features-grid > div,
        .page-jilihot-link-login__steps-grid > div,
        .page-jilihot-link-login__game-providers-grid > div {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px; /* Adjust padding to avoid too narrow content */
            padding-right: 15px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-jilihot-link-login__faq-question {
            padding: 15px 20px;
        }

        .page-jilihot-link-login__faq-question-title {
            font-size: 1.1em;
        }

        .page-jilihot-link-login__faq-toggle {
            font-size: 1.5em;
            margin-left: 10px;
        }

        .page-jilihot-link-login__faq-answer {
            padding: 0 20px;
        }

        .page-jilihot-link-login__faq-item.active .page-jilihot-link-login__faq-answer {
            padding: 15px 20px !important;
        }

        .page-jilihot-link-login__cta-bottom {
            padding: 20px;
        }

        .page-jilihot-link-login__cta-text {
            font-size: 1.2em;
            margin-bottom: 20px;
        }
    }

    @media (max-width: 480px) {
        .page-jilihot-link-login__hero-title {
            font-size: 2em;
        }
        .page-jilihot-link-login__hero-description {
            font-size: 1em;
        }
        .page-jilihot-link-login__section-title {
            font-size: 1.8em;
        }
        .page-jilihot-link-login__feature-title,
        .page-jilihot-link-login__step-title {
            font-size: 1.5em;
        }
    }
  