
    /* Page-specific CSS for jilihot-casino-login-register */
    :root {
        --jilihot-primary-color: #ffcc00; /* Gold/Yellow */
        --jilihot-secondary-color: #e60000; /* Red */
        --jilihot-dark-bg: #1a1a1a;
        --jilihot-light-text: #ffffff;
        --jilihot-gray-text: #cccccc;
        --jilihot-border-color: #333333;
        --jilihot-button-hover: #ffdb4d;
        --jilihot-section-padding: 60px 20px;
        --jilihot-mobile-padding: 30px 15px;
    }

    .page-jilihot-casino-login-register {
        font-family: 'Arial', sans-serif;
        background-color: var(--jilihot-dark-bg);
        color: var(--jilihot-light-text);
        line-height: 1.6;
    }

    .page-jilihot-casino-login-register__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .page-jilihot-casino-login-register__hero-section {
        background-color: #000;
        text-align: center;
        padding: 10px 0 60px 0; /* Rely on body padding for header offset, add small top padding for aesthetic */
        position: relative;
        overflow: hidden;
    }

    .page-jilihot-casino-login-register__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        z-index: 0;
    }

    .page-jilihot-casino-login-register__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-jilihot-casino-login-register__hero-title {
        font-size: 3.5em;
        color: var(--jilihot-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .page-jilihot-casino-login-register__hero-description {
        font-size: 1.3em;
        color: var(--jilihot-gray-text);
        margin-bottom: 30px;
    }

    .page-jilihot-casino-login-register__cta-button {
        display: inline-block;
        background-color: var(--jilihot-secondary-color);
        color: var(--jilihot-light-text);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none; /* Ensure it's a button or div, not an <a> */
        cursor: pointer;
    }

    .page-jilihot-casino-login-register__cta-button:hover {
        background-color: #cc0000;
    }

    .page-jilihot-casino-login-register__section {
        padding: var(--jilihot-section-padding);
        text-align: center;
        border-bottom: 1px solid var(--jilihot-border-color);
    }

    .page-jilihot-casino-login-register__section:last-of-type {
        border-bottom: none;
    }

    .page-jilihot-casino-login-register__section-title {
        font-size: 2.5em;
        color: var(--jilihot-primary-color);
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-jilihot-casino-login-register__section-text {
        font-size: 1.1em;
        color: var(--jilihot-gray-text);
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    .page-jilihot-casino-login-register__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-jilihot-casino-login-register__step-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 10px;
        text-align: left;
        border: 1px solid var(--jilihot-border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Required for list items */
    }

    .page-jilihot-casino-login-register__step-number {
        font-size: 2em;
        color: var(--jilihot-secondary-color);
        font-weight: bold;
        margin-bottom: 15px;
    }

    .page-jilihot-casino-login-register__step-title {
        font-size: 1.5em;
        color: var(--jilihot-primary-color);
        margin-bottom: 10px;
    }

    .page-jilihot-casino-login-register__step-description {
        color: var(--jilihot-gray-text);
        font-size: 1em;
    }

    .page-jilihot-casino-login-register__image-wrapper {
        margin: 40px auto;
        max-width: 800px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        width: 100%; /* Required for images and containers */
        max-width: 100%; /* Required for images and containers */
        box-sizing: border-box; /* Required for images and containers */
    }

    .page-jilihot-casino-login-register__image {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%; /* Required for images */
        box-sizing: border-box; /* Required for images */
    }

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

    .page-jilihot-casino-login-register__card {
        background-color: #2a2a2a;
        padding: 25px;
        border-radius: 10px;
        text-align: center;
        border: 1px solid var(--jilihot-border-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* For responsiveness */
    }

    .page-jilihot-casino-login-register__card-icon {
        margin-bottom: 15px;
        width: 100%; /* Enforce image responsiveness */
        max-width: 100%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        min-width: 200px; /* Min image size enforcement */
        min-height: 200px;
        object-fit: cover; /* Ensure image fills the space without distortion */
        box-sizing: border-box;
    }

    .page-jilihot-casino-login-register__card-title {
        font-size: 1.4em;
        color: var(--jilihot-primary-color);
        margin-bottom: 10px;
    }

    .page-jilihot-casino-login-register__card-description {
        color: var(--jilihot-gray-text);
        font-size: 0.95em;
    }

    .page-jilihot-casino-login-register__promo-link {
        display: inline-block;
        background-color: var(--jilihot-primary-color);
        color: var(--jilihot-dark-bg);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 20px;
        transition: background-color 0.3s ease;
    }

    .page-jilihot-casino-login-register__promo-link:hover {
        background-color: var(--jilihot-button-hover);
    }

    /* FAQ Section */
    .page-jilihot-casino-login-register__faq-section {
        padding: var(--jilihot-section-padding);
        text-align: center;
    }

    .page-jilihot-casino-login-register__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
        list-style: none; /* Ensure no default list styling */
        padding: 0; /* Remove default padding */
        width: 100%; /* For mobile responsiveness */
        max-width: 100%; /* For mobile responsiveness */
        box-sizing: border-box; /* For mobile responsiveness */
    }

    .page-jilihot-casino-login-register__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid var(--jilihot-border-color);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Required for list items */
        width: 100%; /* For mobile responsiveness */
    }

    .page-jilihot-casino-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #333333;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-jilihot-casino-login-register__faq-question:hover {
        background-color: #444444;
    }

    .page-jilihot-casino-login-register__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--jilihot-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        word-wrap: break-word; /* Ensure text wraps */
        overflow-wrap: break-word;
    }

    .page-jilihot-casino-login-register__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--jilihot-secondary-color);
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-jilihot-casino-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--jilihot-gray-text);
        font-size: 1em;
        text-align: left;
        box-sizing: border-box; /* For responsiveness */
    }

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

    .page-jilihot-casino-login-register__faq-item.active .page-jilihot-casino-login-register__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
        color: var(--jilihot-primary-color);
    }

    /* Floating Login/Register Buttons */
    .page-jilihot-casino-login-register__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-jilihot-casino-login-register__floating-button {
        background-color: var(--jilihot-secondary-color);
        color: var(--jilihot-light-text);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease;
        border: none; /* Use button tag or div */
        cursor: pointer;
    }

    .page-jilihot-casino-login-register__floating-button:hover {
        background-color: #cc0000;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-jilihot-casino-login-register__hero-title {
            font-size: 2.5em;
        }

        .page-jilihot-casino-login-register__hero-description {
            font-size: 1.1em;
        }

        .page-jilihot-casino-login-register__section {
            padding: var(--jilihot-mobile-padding);
        }

        .page-jilihot-casino-login-register__section-title {
            font-size: 2em;
        }

        .page-jilihot-casino-login-register__section-text {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .page-jilihot-casino-login-register__steps-grid,
        .page-jilihot-casino-login-register__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-jilihot-casino-login-register__step-item,
        .page-jilihot-casino-login-register__card {
            padding: 20px;
            width: 100% !important; /* Mobile list item width */
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-jilihot-casino-login-register__image-wrapper,
        .page-jilihot-casino-login-register__image,
        .page-jilihot-casino-login-register__card-icon {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-jilihot-casino-login-register__faq-list {
            padding: 0 10px !important; /* Adjust padding for mobile list container */
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-jilihot-casino-login-register__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-jilihot-casino-login-register__faq-question {
            padding: 15px;
        }

        .page-jilihot-casino-login-register__faq-question h3 {
            font-size: 1.1em;
            word-break: break-word !important; /* Ensure long text breaks */
        }

        .page-jilihot-casino-login-register__faq-toggle {
            font-size: 1.5em;
        }

        .page-jilihot-casino-login-register__faq-answer {
            padding: 15px !important; /* Adjusted for mobile */
            word-break: break-word !important; /* Ensure long text breaks */
        }

        .page-jilihot-casino-login-register__floating-buttons {
            bottom: 15px;
            right: 15px;
        }

        .page-jilihot-casino-login-register__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
    @media (max-width: 480px) {
        .page-jilihot-casino-login-register__hero-title {
            font-size: 2em;
        }
    }
  