
    /* CSS for page-jilihot-cc-login */
    .page-jilihot-cc-login {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text for dark background */
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        /* Fallback/Default for header offset if shared.css doesn't set body padding-top */
        padding-top: var(--header-offset, 122px);
    }

    /* General container styling */
    .page-jilihot-cc-login__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-jilihot-cc-login__hero-section {
        position: relative;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        color: #ffffff;
        text-align: center;
        padding: 60px 20px; /* Internal padding for content, not for header offset */
        overflow: hidden;
    }

    .page-jilihot-cc-login__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Allowed for background images to improve text readability */
    }

    .page-jilihot-cc-login__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-jilihot-cc-login__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold accent */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-cc-login__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    .page-jilihot-cc-login__cta-button {
        display: inline-block;
        background-color: #e60026; /* Red accent */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-jilihot-cc-login__cta-button:hover {
        background-color: #cc0020;
    }

    /* Section styling */
    .page-jilihot-cc-login__section {
        padding: 60px 20px;
        text-align: center;
        background-color: #1a1a2e;
    }

    .page-jilihot-cc-login__section--alt {
        background-color: #2c2c4a;
    }

    .page-jilihot-cc-login__section-title {
        font-size: 2.2em;
        margin-bottom: 40px;
        color: #ffcc00;
        position: relative;
        padding-bottom: 10px;
    }

    .page-jilihot-cc-login__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #e60026;
    }

    .page-jilihot-cc-login__text-content {
        max-width: 900px;
        margin: 0 auto 40px auto;
        text-align: left;
        font-size: 1.1em;
        color: #e0e0e0;
    }

    /* How to Login Steps */
    .page-jilihot-cc-login__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-jilihot-cc-login__step-card {
        background-color: #2c2c4a;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
        border: 1px solid #3a3a5a;
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-cc-login__step-card:hover {
        transform: translateY(-5px);
        background-color: #3a3a5a;
    }

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

    .page-jilihot-cc-login__step-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-jilihot-cc-login__step-description {
        font-size: 1em;
        color: #d0d0d0;
    }

    /* Game Showcase */
    .page-jilihot-cc-login__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-jilihot-cc-login__game-card {
        background-color: #2c2c4a;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        border: 1px solid #3a3a5a;
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-cc-login__game-card:hover {
        transform: translateY(-5px);
    }

    .page-jilihot-cc-login__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
    }

    .page-jilihot-cc-login__game-info {
        padding: 20px;
        text-align: left;
    }

    .page-jilihot-cc-login__game-title {
        font-size: 1.3em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-jilihot-cc-login__game-provider {
        font-size: 0.9em;
        color: #a0a0a0;
    }

    /* Promotions */
    .page-jilihot-cc-login__promo-card {
        background-color: #e60026;
        color: #ffffff;
        padding: 30px;
        border-radius: 10px;
        margin: 40px auto 0 auto;
        max-width: 800px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .page-jilihot-cc-login__promo-title {
        font-size: 2em;
        margin-bottom: 15px;
        color: #ffcc00;
    }

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

    .page-jilihot-cc-login__promo-button {
        display: inline-block;
        background-color: #ffcc00;
        color: #e60026;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-jilihot-cc-login__promo-button:hover {
        background-color: #e0b300;
    }

    /* Payment Methods */
    .page-jilihot-cc-login__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-jilihot-cc-login__payment-item {
        background-color: #2c2c4a;
        padding: 15px 25px;
        border-radius: 8px;
        font-size: 1.1em;
        color: #ffcc00;
        border: 1px solid #3a3a5a;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Required for list items */
    }

    /* FAQ Section */
    .page-jilihot-cc-login__faq-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
        text-align: center;
    }

    .page-jilihot-cc-login__faq-item {
        background-color: #2c2c4a;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: left;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        border: 1px solid #3a3a5a;
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-cc-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #3a3a5a;
        color: #ffcc00;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-jilihot-cc-login__faq-question:hover {
        background-color: #4a4a6a;
    }

    .page-jilihot-cc-login__faq-question h3 {
        margin: 0;
        color: #ffcc00;
        font-size: 1.2em;
        pointer-events: none; /* Prevent h3 from intercepting click */
    }

    .page-jilihot-cc-login__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e60026;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from intercepting click */
    }

    .page-jilihot-cc-login__faq-item.active .page-jilihot-cc-login__faq-toggle {
        transform: rotate(45deg); /* Changes '+' to 'X' or similar */
    }

    .page-jilihot-cc-login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: #e0e0e0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1em;
    }

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

    /* Call to Action at the bottom */
    .page-jilihot-cc-login__bottom-cta {
        padding: 60px 20px;
        background-color: #e60026;
        color: #ffffff;
        text-align: center;
    }

    .page-jilihot-cc-login__bottom-cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #ffcc00;
    }

    .page-jilihot-cc-login__bottom-cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-jilihot-cc-login__hero-title {
            font-size: 2em;
        }

        .page-jilihot-cc-login__hero-description {
            font-size: 1em;
        }

        .page-jilihot-cc-login__section-title {
            font-size: 1.8em;
        }

        .page-jilihot-cc-login__text-content {
            font-size: 1em;
        }

        .page-jilihot-cc-login__steps-grid,
        .page-jilihot-cc-login__game-grid {
            grid-template-columns: 1fr;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-jilihot-cc-login__step-card,
        .page-jilihot-cc-login__game-card,
        .page-jilihot-cc-login__payment-item,
        .page-jilihot-cc-login__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-jilihot-cc-login__game-image {
            height: 180px;
        }

        .page-jilihot-cc-login__promo-title {
            font-size: 1.5em;
        }

        .page-jilihot-cc-login__promo-description {
            font-size: 1em;
        }

        .page-jilihot-cc-login__payment-item {
            font-size: 0.9em;
            padding: 10px 15px;
        }

        .page-jilihot-cc-login__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }

        .page-jilihot-cc-login__faq-question h3 {
            font-size: 1.1em;
        }

        .page-jilihot-cc-login__faq-answer {
            padding: 15px 20px !important;
            font-size: 0.95em;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        
        .page-jilihot-cc-login__bottom-cta-title {
            font-size: 1.8em;
        }

        .page-jilihot-cc-login__bottom-cta-description {
            font-size: 1em;
        }

        /* Ensure images are responsive */
        .page-jilihot-cc-login__game-image,
        .page-jilihot-cc-login__hero-background {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-jilihot-cc-login__hero-title {
            font-size: 1.8em;
        }
        .page-jilihot-cc-login__section-title {
            font-size: 1.6em;
        }
        .page-jilihot-cc-login__cta-button,
        .page-jilihot-cc-login__promo-button {
            width: 100%;
            padding: 12px 0;
        }
    }
  