
    /* Page-specific CSS for 8k8 login */
    :root {
        --primary-color: #e50000; /* A vibrant red, common in gaming/casino themes */
        --secondary-color: #ff9900; /* Complementary orange/gold for highlights */
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --text-color-light: #f0f0f0;
        --text-color-dark: #cccccc;
        --border-color: #444;
        --spacing-unit: 20px;
    }

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

    .page-8k8-login__section {
        padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-login__hero-section {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 500px;
        color: #fff;
        padding-top: 10px; /* Small decorative padding, assuming body handles main header offset */
        padding-bottom: calc(var(--spacing-unit) * 3);
    }

    .page-8k8-login__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        filter: brightness(0.5); /* Darken image for text readability */
    }

    .page-8k8-login__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: var(--spacing-unit);
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
    }

    .page-8k8-login__hero-title {
        font-size: 3em;
        margin-bottom: var(--spacing-unit);
        color: var(--secondary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-login__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: calc(var(--spacing-unit) * 1.5);
    }

    .page-8k8-login__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none; /* Ensure it's a button, not a link visually */
        cursor: pointer;
    }

    .page-8k8-login__button:hover {
        background-color: #c00000;
        transform: translateY(-2px);
    }

    .page-8k8-login__section-title {
        font-size: 2.5em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: calc(var(--spacing-unit) * 2);
        position: relative;
        padding-bottom: 10px;
    }

    .page-8k8-login__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--secondary-color);
        border-radius: 2px;
    }

    .page-8k8-login__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-unit);
        margin-top: calc(var(--spacing-unit) * 2);
    }

    .page-8k8-login__card {
        background-color: var(--background-light);
        border-radius: 8px;
        padding: var(--spacing-unit);
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-login__card-icon {
        width: 100px;
        height: 100px;
        margin-bottom: var(--spacing-unit);
        object-fit: contain;
    }

    .page-8k8-login__card-title {
        font-size: 1.5em;
        color: var(--secondary-color);
        margin-bottom: 10px;
    }

    .page-8k8-login__card-description {
        font-size: 1em;
        color: var(--text-color-dark);
    }

    .page-8k8-login__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: var(--spacing-unit);
        border-radius: 8px;
    }

    .page-8k8-login__image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 8px;
    }

    .page-8k8-login__steps-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: var(--spacing-unit);
    }

    .page-8k8-login__step-item {
        background-color: var(--background-light);
        border-left: 5px solid var(--primary-color);
        padding: var(--spacing-unit);
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__step-number {
        background-color: var(--secondary-color);
        color: var(--background-dark);
        font-weight: bold;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2em;
        flex-shrink: 0;
        margin-right: var(--spacing-unit);
    }

    .page-8k8-login__step-content h3 {
        margin-top: 0;
        color: var(--secondary-color);
        font-size: 1.3em;
    }

    .page-8k8-login__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-unit);
    }

    .page-8k8-login__promo-card {
        background-color: var(--background-light);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-login__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .page-8k8-login__promo-content {
        padding: var(--spacing-unit);
    }

    .page-8k8-login__promo-title {
        font-size: 1.4em;
        color: var(--secondary-color);
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-8k8-login__promo-description {
        font-size: 0.95em;
        color: var(--text-color-dark);
        margin-bottom: var(--spacing-unit);
    }

    .page-8k8-login__provider-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-unit);
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-8k8-login__provider-item {
        background-color: var(--background-light);
        padding: 15px 20px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        font-weight: bold;
        color: var(--text-color-light);
        white-space: nowrap;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-unit);
        justify-content: center;
    }

    .page-8k8-login__payment-method {
        background-color: var(--background-light);
        padding: var(--spacing-unit);
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__payment-icon {
        width: 100px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .page-8k8-login__payment-name {
        font-weight: bold;
        color: var(--text-color-light);
    }

    /* FAQ Section */
    .page-8k8-login__faq-section {
        background-color: var(--background-dark);
    }

    .page-8k8-login__faq-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-8k8-login__faq-item {
        background-color: var(--background-light);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: var(--primary-color);
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8k8-login__faq-question:hover {
        background-color: #c00000;
    }

    .page-8k8-login__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-login__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        pointer-events: none; /* Prevent toggle from blocking click on parent */
        transition: transform 0.3s ease;
    }

    .page-8k8-login__faq-item.active .page-8k8-login__faq-toggle {
        transform: rotate(45deg); /* Change + to X or a dash */
    }

    .page-8k8-login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding matches question horizontal 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: var(--text-color-dark);
        font-size: 0.95em;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-login__hero-title {
            font-size: 2.2em;
        }

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

        .page-8k8-login__section-title {
            font-size: 2em;
        }

        .page-8k8-login__grid,
        .page-8k8-login__promo-grid,
        .page-8k8-login__payment-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-login__section {
            padding: var(--spacing-unit);
        }

        /* List item responsive requirements */
        .page-8k8-login__card,
        .page-8k8-login__step-item,
        .page-8k8-login__promo-card,
        .page-8k8-login__provider-item,
        .page-8k8-login__payment-method,
        .page-8k8-login__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            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__steps-list,
        .page-8k8-login__provider-list,
        .page-8k8-login__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8k8-login__faq-answer {
            padding: 0 15px !important; /* Adjust padding for smaller screens */
        }

        .page-8k8-login__faq-item.active .page-8k8-login__faq-answer {
            padding: 15px 15px !important; /* Adjust padding for smaller screens */
        }
    }
    @media (max-width: 480px) {
        .page-8k8-login__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-login__section-title {
            font-size: 1.8em;
        }
    }
  