
    /* Base styles for the page-jiliwin-vip-login scope */
    .page-jiliwin-vip-login {
        font-family: 'Arial', sans-serif;
        color: #333; /* Dark gray for good contrast */
        line-height: 1.6;
        background-color: #f9f9f9; /* Light background */
        padding-bottom: 40px; /* Space above footer */
    }

    /* Fixed Nav Spacing: Assuming body already has padding-top from shared.css */
    /* Add a small decorative padding-top to the first section */
    .page-jiliwin-vip-login__hero-section {
        padding-top: 10px; /* Decorative top spacing, assuming body has padding-top */
    }

    /* General section styling */
    .page-jiliwin-vip-login__section-title {
        font-size: 2.5em;
        color: #0056b3; /* Jiliwin brand color - blue */
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        padding: 20px 15px 0; /* Adjusted padding for mobile */
    }

    .page-jiliwin-vip-login__section-description {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 15px;
    }

    .page-jiliwin-vip-login__highlight {
        color: #0056b3; /* Jiliwin brand color */
        font-weight: bold;
    }

    /* Hero Section */
    .page-jiliwin-vip-login__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #e0f7fa, #bbdefb); /* Light blue gradient */
        position: relative;
        overflow: hidden;
        margin-bottom: 40px;
    }

    .page-jiliwin-vip-login__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-jiliwin-vip-login__hero-title {
        font-size: 3.5em;
        color: #003366; /* Darker blue */
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-jiliwin-vip-login__hero-description {
        font-size: 1.3em;
        color: #003366;
        margin-bottom: 30px;
    }

    .page-jiliwin-vip-login__cta-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-jiliwin-vip-login__cta-button {
        display: inline-block;
        background-color: #007bff; /* Primary blue */
        color: #fff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-jiliwin-vip-login__cta-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
        transform: translateY(-2px);
    }

    .page-jiliwin-vip-login__cta-button--secondary {
        background-color: #6c757d; /* Gray secondary button */
    }

    .page-jiliwin-vip-login__cta-button--secondary:hover {
        background-color: #5a6268;
    }

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

    .page-jiliwin-vip-login__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Why Choose Jiliwin VIP Section */
    .page-jiliwin-vip-login__why-vip-section {
        padding: 60px 20px;
        background-color: #fff;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-jiliwin-vip-login__feature-item {
        background-color: #f0f8ff; /* Very light blue */
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-jiliwin-vip-login__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-jiliwin-vip-login__feature-icon {
        width: 200px; /* Minimum size */
        height: auto;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive image */
        display: block;
        margin-left: auto;
        margin-right: auto;
        border-radius: 8px;
    }

    .page-jiliwin-vip-login__feature-title {
        font-size: 1.6em;
        color: #0056b3;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-jiliwin-vip-login__feature-text {
        font-size: 1em;
        color: #555;
    }

    /* How to Get VIP Access Section */
    .page-jiliwin-vip-login__how-to-section {
        padding: 60px 20px;
        background-color: #e6f7ff; /* Lighter blue background */
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-jiliwin-vip-login__step-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-jiliwin-vip-login__step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: #007bff;
        color: #fff;
        font-size: 2em;
        font-weight: bold;
        border-radius: 50%;
        margin-bottom: 20px;
    }

    .page-jiliwin-vip-login__step-title {
        font-size: 1.5em;
        color: #0056b3;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-jiliwin-vip-login__step-text {
        font-size: 1em;
        color: #555;
    }

    /* Featured Games Section */
    .page-jiliwin-vip-login__featured-games-section {
        padding: 60px 20px;
        background-color: #f9f9f9;
        margin-bottom: 40px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-jiliwin-vip-login__game-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-jiliwin-vip-login__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-jiliwin-vip-login__game-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Responsive image */
    }

    .page-jiliwin-vip-login__game-title {
        font-size: 1.4em;
        color: #0056b3;
        margin: 20px 15px 10px;
        font-weight: bold;
    }

    .page-jiliwin-vip-login__game-text {
        font-size: 0.95em;
        color: #555;
        padding: 0 15px 20px;
    }

    /* Testimonial Section */
    .page-jiliwin-vip-login__testimonial-section {
        padding: 60px 20px;
        background-color: #f0f8ff;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-jiliwin-vip-login__testimonial-card {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        margin-bottom: 25px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        text-align: center;
    }

    .page-jiliwin-vip-login__testimonial-quote {
        font-size: 1.2em;
        font-style: italic;
        color: #333;
        margin-bottom: 15px;
    }

    .page-jiliwin-vip-login__testimonial-author {
        font-weight: bold;
        color: #0056b3;
        font-size: 1em;
    }

    /* FAQ Section */
    .page-jiliwin-vip-login__faq-section {
        padding: 60px 20px;
        background-color: #fff;
        margin-bottom: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-jiliwin-vip-login__faq-container {
        margin-top: 40px;
    }

    .page-jiliwin-vip-login__faq-item {
        border: 1px solid #eee;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        background-color: #fcfcfc;
    }

    .page-jiliwin-vip-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #007bff; /* Jiliwin brand color */
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .page-jiliwin-vip-login__faq-question:hover {
        background-color: #0056b3;
    }

    .page-jiliwin-vip-login__faq-question-text {
        margin: 0;
        color: #fff;
        pointer-events: none; /* Prevent text from blocking click event on parent */
        flex-grow: 1;
        text-align: left;
    }

    .page-jiliwin-vip-login__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        pointer-events: none; /* Prevent icon from blocking click event on parent */
        transition: transform 0.3s ease;
    }

    .page-jiliwin-vip-login__faq-item.active .page-jiliwin-vip-login__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }

    .page-jiliwin-vip-login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        background-color: #fff;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-jiliwin-vip-login__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Add some space below paragraph if multiple */
    }

    /* Call to Action Bottom Section */
    .page-jiliwin-vip-login__cta-bottom-section {
        padding: 60px 20px;
        background: linear-gradient(135deg, #bbdefb, #e0f7fa); /* Light blue gradient */
        text-align: center;
        border-radius: 10px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-jiliwin-vip-login__cta-button--large {
        padding: 18px 40px;
        font-size: 1.3em;
        background-color: #007bff;
        color: #fff;
    }

    .page-jiliwin-vip-login__cta-button--large:hover {
        background-color: #0056b3;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-jiliwin-vip-login__hero-title {
            font-size: 3em;
        }
        .page-jiliwin-vip-login__hero-description {
            font-size: 1.2em;
        }
        .page-jiliwin-vip-login__section-title {
            font-size: 2em;
        }
        .page-jiliwin-vip-login__section-description {
            font-size: 1em;
        }
    }

    @media (max-width: 768px) {
        .page-jiliwin-vip-login__hero-section {
            padding: 40px 15px;
        }
        .page-jiliwin-vip-login__hero-title {
            font-size: 2.5em;
        }
        .page-jiliwin-vip-login__hero-description {
            font-size: 1.1em;
        }
        .page-jiliwin-vip-login__cta-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-jiliwin-vip-login__cta-button {
            width: 100%;
            max-width: 300px; /* Limit button width on small screens */
            margin-left: auto;
            margin-right: auto;
        }

        .page-jiliwin-vip-login__why-vip-section,
        .page-jiliwin-vip-login__how-to-section,
        .page-jiliwin-vip-login__featured-games-section,
        .page-jiliwin-vip-login__testimonial-section,
        .page-jiliwin-vip-login__faq-section,
        .page-jiliwin-vip-login__cta-bottom-section {
            padding: 40px 15px;
        }

        .page-jiliwin-vip-login__features-grid,
        .page-jiliwin-vip-login__steps-container,
        .page-jiliwin-vip-login__game-grid {
            grid-template-columns: 1fr; /* Single column layout for grids */
        }

        /* List item responsive requirements */
        .page-jiliwin-vip-login__feature-item,
        .page-jiliwin-vip-login__step-item,
        .page-jiliwin-vip-login__game-card {
            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 */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-jiliwin-vip-login__feature-icon {
            width: 150px; /* Adjust icon size for mobile */
        }

        .page-jiliwin-vip-login__game-image {
            height: 200px; /* Adjust image height for mobile */
        }

        .page-jiliwin-vip-login__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-jiliwin-vip-login__faq-answer {
            padding: 0 20px;
        }
        .page-jiliwin-vip-login__faq-item.active .page-jiliwin-vip-login__faq-answer {
            padding: 15px 20px !important;
        }
        .page-jiliwin-vip-login__faq-question-text {
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-jiliwin-vip-login__hero-title {
            font-size: 2em;
        }
        .page-jiliwin-vip-login__hero-description {
            font-size: 1em;
        }
        .page-jiliwin-vip-login__section-title {
            font-size: 1.8em;
        }
        .page-jiliwin-vip-login__cta-button--large {
            font-size: 1.1em;
            padding: 15px 30px;
        }
    }
  