
    :root {
      --primary-color: #007bff; /* A vibrant blue for calls to action */
      --secondary-color: #6c757d; /* A muted grey for secondary elements */
      --accent-color: #ffc107; /* A bright yellow for highlights */
      --dark-background: #1a1a1a; /* Dark background for sections */
      --light-text: #f8f9fa; /* Light text on dark backgrounds */
      --card-background: #2c2c2c; /* Slightly lighter dark for cards */
      --border-color: #444; /* Border color for separation */
      --success-color: #28a745; /* Green for success messages */
      --danger-color: #dc3545; /* Red for error messages */
      --header-offset: 122px; /* Default offset, will be overridden by shared.css */
    }

    body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--light-text);
        background-color: var(--dark-background);
        margin: 0;
        padding-top: var(--header-offset); /* Ensure content is below fixed header */
        text-align: center;
    }

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

    .page-8k8-login__section {
        padding: 60px 0;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden; /* For images within */
        position: relative;
    }

    .page-8k8-login__section--dark {
        background-color: var(--card-background);
    }

    .page-8k8-login__section-title {
        font-size: 2.8em;
        color: var(--accent-color);
        margin-bottom: 30px;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login__section-subtitle {
        font-size: 1.5em;
        color: var(--light-text);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-login__hero-section {
        position: relative;
        overflow: hidden;
        padding-top: 10px; /* Small decorative padding, actual offset is on body */
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 60vh; /* Ensure hero section has a minimum height */
    }

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

    .page-8k8-login__hero-content {
        position: relative;
        z-index: 1;
        color: var(--light-text);
        max-width: 900px;
        padding: 20px;
    }

    .page-8k8-login__hero-title {
        font-size: 3.8em;
        margin-bottom: 20px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--accent-color);
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-login__hero-description {
        font-size: 1.4em;
        margin-bottom: 40px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-login__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--light-text);
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-login__button:hover {
        background-color: #0056b3; /* Darker shade of primary */
        transform: translateY(-2px);
    }

    .page-8k8-login__button--secondary {
        background-color: var(--accent-color);
        color: var(--dark-background);
        margin-left: 20px;
    }

    .page-8k8-login__button--secondary:hover {
        background-color: #e0a800; /* Darker shade of accent */
    }

    /* Info Cards */
    .page-8k8-login__cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .page-8k8-login__card {
        background-color: var(--card-background);
        border-radius: 10px;
        padding: 30px;
        text-align: left;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid var(--border-color);
    }

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

    .page-8k8-login__card-icon {
        width: 250px; /* Min size */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        display: block;
        max-width: 100%;
        object-fit: cover;
    }

    .page-8k8-login__card-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

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

    /* Steps Section */
    .page-8k8-login__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        list-style: none;
        padding: 0;
        margin-top: 50px;
    }

    .page-8k8-login__step-item {
        background-color: var(--card-background);
        border-radius: 10px;
        padding: 30px;
        width: calc(33% - 40px); /* For 3 items per row on desktop */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        text-align: center;
        border: 1px solid var(--border-color);
        box-sizing: border-box; /* Crucial for responsive lists */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-login__step-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login__step-number {
        font-size: 2.5em;
        color: var(--accent-color);
        font-weight: bold;
        margin-bottom: 15px;
        background-color: var(--primary-color);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px auto;
        color: var(--light-text);
    }

    .page-8k8-login__step-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-login__step-description {
        font-size: 1.1em;
        color: var(--light-text);
    }

    /* Payment Methods / Game Providers */
    .page-8k8-login__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Adjusted for mobile */
        gap: 20px;
        margin-top: 50px;
        justify-items: center;
    }

    .page-8k8-login__logo-item {
        background-color: var(--card-background);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100px;
        box-sizing: border-box;
        border: 1px solid var(--border-color);
        transition: transform 0.2s ease;
    }

    .page-8k8-login__logo-item:hover {
        transform: scale(1.05);
    }

    .page-8k8-login__logo-image {
        max-width: 100%;
        max-height: 80px;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /* FAQ Section */
    .page-8k8-login__faq-section {
        background-color: var(--dark-background);
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-login__faq-list {
        list-style: none;
        padding: 0;
        margin: 50px auto 0 auto;
        max-width: 800px;
    }

    .page-8k8-login__faq-item {
        background-color: var(--card-background);
        margin-bottom: 15px;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

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

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

    .page-8k8-login__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        font-size: 1em; /* Adjust to fit parent, as parent is 1.3em */
    }

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

    .page-8k8-login__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        opacity: 0;
        color: var(--light-text);
        background-color: var(--card-background);
        text-align: left;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8k8-login__faq-item.active .page-8k8-login__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    /* General text styles */
    .page-8k8-login p {
        margin-bottom: 1em;
    }

    .page-8k8-login a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .page-8k8-login a:hover {
        text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8k8-login__section {
            padding: 40px 0;
        }

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

        .page-8k8-login__section-subtitle {
            font-size: 1.2em;
        }

        .page-8k8-login__hero-title {
            font-size: 2.5em;
        }

        .page-8k8-login__hero-description {
            font-size: 1.1em;
        }

        .page-8k8-login__button {
            padding: 12px 25px;
            font-size: 1em;
            display: block;
            width: fit-content;
            margin: 15px auto;
        }

        .page-8k8-login__button--secondary {
            margin-left: 0; /* Remove margin for stacking buttons */
        }

        .page-8k8-login__cards-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-login__card {
            padding: 20px;
        }

        .page-8k8-login__card-title {
            font-size: 1.5em;
        }

        .page-8k8-login__step-item {
            width: 100% !important; /* Force full width on mobile */
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding */
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8k8-login__steps-list,
        .page-8k8-login__logo-grid,
        .page-8k8-login__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-8k8-login__logo-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* More compact for mobile */
        }

        .page-8k8-login__logo-item {
            padding: 15px;
        }

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

        .page-8k8-login__faq-answer {
            padding: 0 20px;
        }

        .page-8k8-login__faq-item.active .page-8k8-login__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-login__hero-section {
            min-height: 50vh;
        }
    }

    /* Ensure all images are responsive */
    .page-8k8-login img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
        box-sizing: border-box; /* Important for responsive images in containers */
    }
    .page-8k8-login__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    @media (max-width: 768px) {
        .page-8k8-login img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-login__image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }
  