
    :root {
        --page-8k8-login-account-primary-color: #007bff; /* Blue */
        --page-8k8-login-account-secondary-color: #6c757d; /* Gray */
        --page-8k8-login-account-accent-color: #ffc107; /* Yellow */
        --page-8k8-login-account-text-color: #343a40; /* Dark text */
        --page-8k8-login-account-light-text-color: #ffffff; /* White text */
        --page-8k8-login-account-background-color: #f8f9fa; /* Light background */
        --page-8k8-login-account-card-background: #ffffff; /* Card background */
        --page-8k8-login-account-border-color: #dee2e6; /* Border color */
    }

    .page-8k8-login-account {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-8k8-login-account-text-color);
        background-color: var(--page-8k8-login-account-background-color);
        padding-bottom: 40px;
    }

    .page-8k8-login-account__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-8k8-login-account__section {
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-login-account__section--light {
        background-color: var(--page-8k8-login-account-background-color);
    }

    .page-8k8-login-account__section--dark {
        background-color: var(--page-8k8-login-account-primary-color);
        color: var(--page-8k8-login-account-light-text-color);
    }

    .page-8k8-login-account__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('[GALLERY:hero:1920x1080:online casino,login,gaming]') no-repeat center center/cover;
        color: var(--page-8k8-login-account-light-text-color);
        padding: 10px 0 100px; /* Added 10px padding-top for fixed header offset */
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        flex-direction: column;
    }

    .page-8k8-login-account__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-login-account__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        max-width: 800px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-account__button {
        display: inline-block;
        background-color: var(--page-8k8-login-account-accent-color);
        color: var(--page-8k8-login-account-text-color);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
    }

    .page-8k8-login-account__button:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-8k8-login-account__heading {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--page-8k8-login-account-primary-color);
    }

    .page-8k8-login-account__sub-heading {
        font-size: 1.8em;
        margin-bottom: 25px;
        color: var(--page-8k8-login-account-text-color);
    }

    .page-8k8-login-account__text-content {
        max-width: 800px;
        margin: 0 auto 30px;
        text-align: left;
    }

    .page-8k8-login-account__features-grid,
    .page-8k8-login-account__steps-list,
    .page-8k8-login-account__providers-grid {
        display: grid;
        gap: 30px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .page-8k8-login-account__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .page-8k8-login-account__feature-item {
        background-color: var(--page-8k8-login-account-card-background);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
    }

    .page-8k8-login-account__feature-icon {
        width: 80px; /* Min size 200x200px, but this is a container for the image */
        height: 80px;
        margin-bottom: 20px;
        background-color: var(--page-8k8-login-account-primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--page-8k8-login-account-light-text-color);
        font-size: 2em;
        font-weight: bold;
        overflow: hidden; /* Ensure image fits */
    }
    .page-8k8-login-account__feature-icon img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-login-account__feature-title {
        font-size: 1.5em;
        margin-bottom: 15px;
        color: var(--page-8k8-login-account-primary-color);
    }

    .page-8k8-login-account__steps-list {
        grid-template-columns: 1fr;
        counter-reset: step-counter;
    }

    .page-8k8-login-account__step-item {
        background-color: var(--page-8k8-login-account-card-background);
        padding: 25px 30px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-align: left;
        display: flex;
        align-items: flex-start;
        box-sizing: border-box;
        position: relative;
    }

    .page-8k8-login-account__step-item::before {
        counter-increment: step-counter;
        content: counter(step-counter);
        background-color: var(--page-8k8-login-account-accent-color);
        color: var(--page-8k8-login-account-text-color);
        font-size: 1.2em;
        font-weight: bold;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        box-sizing: border-box;
    }

    .page-8k8-login-account__step-content {
        flex-grow: 1;
    }

    .page-8k8-login-account__step-title {
        font-size: 1.3em;
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--page-8k8-login-account-primary-color);
    }

    .page-8k8-login-account__image-wrapper {
        margin: 40px auto;
        max-width: 800px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        box-sizing: border-box;
    }

    .page-8k8-login-account__image-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .page-8k8-login-account__providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .page-8k8-login-account__provider-logo {
        background-color: var(--page-8k8-login-account-card-background);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 120px;
        box-sizing: border-box;
    }

    .page-8k8-login-account__provider-logo img {
        max-width: 100%;
        max-height: 80px;
        height: auto;
        display: block;
    }

    /* FAQ Section Styles */
    .page-8k8-login-account__faq-section {
        background-color: var(--page-8k8-login-account-card-background);
        padding: 60px 0;
        text-align: center;
        border-top: 1px solid var(--page-8k8-login-account-border-color);
    }

    .page-8k8-login-account__faq-list {
        max-width: 900px;
        margin: 40px auto 0;
        list-style: none;
        padding: 0;
    }

    .page-8k8-login-account__faq-item {
        border: 1px solid var(--page-8k8-login-account-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }

    .page-8k8-login-account__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        color: var(--page-8k8-login-account-primary-color);
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-login-account__faq-question:hover {
        background-color: #e9e9e9;
    }

    .page-8k8-login-account__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-login-account__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click on parent */
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-toggle {
        transform: rotate(45deg); /* Rotates the '+' to 'x' or use '-' directly */
    }

    .page-8k8-login-account__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        text-align: left;
        box-sizing: border-box;
        color: var(--page-8k8-login-account-text-color);
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .page-8k8-login-account__hero-title {
            font-size: 2.8em;
        }

        .page-8k8-login-account__hero-subtitle {
            font-size: 1.3em;
        }

        .page-8k8-login-account__heading {
            font-size: 2em;
        }

        .page-8k8-login-account__sub-heading {
            font-size: 1.5em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-login-account__section {
            padding: 40px 0;
        }

        .page-8k8-login-account__hero-section {
            min-height: 400px;
            padding-top: 10px; /* Ensure consistency */
        }

        .page-8k8-login-account__hero-title {
            font-size: 2.2em;
        }

        .page-8k8-login-account__hero-subtitle {
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .page-8k8-login-account__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-login-account__heading {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8k8-login-account__sub-heading {
            font-size: 1.3em;
            margin-bottom: 20px;
        }

        /* List item responsive styles */
        .page-8k8-login-account__features-grid,
        .page-8k8-login-account__steps-list,
        .page-8k8-login-account__providers-grid {
            grid-template-columns: 1fr; /* Stack items */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-8k8-login-account__feature-item,
        .page-8k8-login-account__step-item,
        .page-8k8-login-account__provider-logo {
            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-8k8-login-account__feature-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            min-height: 60px;
            font-size: 1.5em;
        }

        .page-8k8-login-account__feature-title {
            font-size: 1.3em;
        }

        .page-8k8-login-account__step-item::before {
            width: 35px;
            height: 35px;
            min-width: 35px;
            min-height: 35px;
            font-size: 1em;
            margin-right: 15px;
        }

        .page-8k8-login-account__step-title {
            font-size: 1.1em;
        }

        .page-8k8-login-account__image-wrapper {
            margin: 30px auto;
        }

        .page-8k8-login-account__image-wrapper img {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8k8-login-account__faq-question {
            padding: 15px 20px;
        }

        .page-8k8-login-account__faq-question h3 {
            font-size: 1.1em;
        }

        .page-8k8-login-account__faq-toggle {
            font-size: 1.5em;
            width: 25px;
            height: 25px;
        }

        .page-8k8-login-account__faq-answer {
            padding: 15px 20px !important;
            font-size: 0.95em;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-login-account__hero-title {
            font-size: 1.8em;
        }

        .page-8k8-login-account__hero-subtitle {
            font-size: 1em;
        }

        .page-8k8-login-account__heading {
            font-size: 1.5em;
        }

        .page-8k8-login-account__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  