
    :root {
        --primary-color: #ffcc00; /* Gold/Yellow for 8K8 branding */
        --secondary-color: #333333; /* Dark grey */
        --background-dark: #1a1a1a;
        --background-light: #2c2c2c;
        --text-color-light: #ffffff;
        --text-color-dark: #cccccc;
        --accent-color: #007bff; /* Blue for links/buttons */
    }

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

    .page-8k8-com-login-register__hero-section {
        position: relative;
        padding: 10px 20px 80px; /* Added 10px top padding for fixed nav spacing */
        text-align: center;
        background-color: var(--background-dark);
        overflow: hidden;
    }

    .page-8k8-com-login-register__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-8k8-com-login-register__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login-register__hero-title {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-register__hero-description {
        font-size: 1.2em;
        color: var(--text-color-light);
        margin-bottom: 30px;
    }

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

    .page-8k8-com-login-register__cta-button:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

    .page-8k8-com-login-register__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-com-login-register__section--dark {
        background-color: var(--background-dark);
    }

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

    .page-8k8-com-login-register__section-title {
        font-size: 2.2em;
        color: var(--primary-color);
        margin-bottom: 40px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login-register__card {
        background-color: var(--background-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        text-align: left;
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        border: 1px solid rgba(255, 204, 0, 0.2);
    }

    .page-8k8-com-login-register__card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-com-login-register__card-icon {
        width: 250px; /* Min size */
        height: 250px; /* Min size */
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
        border: 2px solid var(--primary-color);
        max-width: 100%;
        height: auto;
    }

    .page-8k8-com-login-register__card-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-8k8-com-login-register__card-description {
        color: var(--text-color-dark);
        font-size: 1em;
        text-align: center;
    }

    .page-8k8-com-login-register__steps-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
        text-align: left;
    }

    .page-8k8-com-login-register__step-item {
        background-color: var(--background-light);
        margin-bottom: 20px;
        padding: 25px;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

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

    .page-8k8-com-login-register__step-content h3 {
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .page-8k8-com-login-register__step-content p {
        color: var(--text-color-dark);
        margin-bottom: 0;
    }

    .page-8k8-com-login-register__app-promo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 50px 20px;
        background-color: var(--background-dark);
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-top: 50px;
    }

    .page-8k8-com-login-register__app-image {
        width: 300px; /* Min size */
        height: 300px; /* Min size */
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-com-login-register__app-text {
        text-align: left;
        max-width: 600px;
    }

    .page-8k8-com-login-register__app-text h2 {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .page-8k8-com-login-register__app-text p {
        color: var(--text-color-dark);
        margin-bottom: 25px;
    }

    .page-8k8-com-login-register__download-button {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color-light);
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-com-login-register__download-button:hover {
        background-color: #0056b3;
    }

    .page-8k8-com-login-register__faq-section {
        padding: 60px 20px;
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-com-login-register__faq-title {
        font-size: 2.2em;
        color: var(--primary-color);
        margin-bottom: 40px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-register__faq-item {
        background-color: var(--background-light);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 204, 0, 0.1);
    }

    .page-8k8-com-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: var(--background-dark);
        color: var(--primary-color);
        border-bottom: 1px solid rgba(255, 204, 0, 0.1);
    }

    .page-8k8-com-login-register__faq-question:hover {
        background-color: #2a2a2a;
    }

    .page-8k8-com-login-register__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click */
        color: var(--primary-color); /* Ensure contrast */
    }

    .page-8k8-com-login-register__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        margin-left: 15px;
        color: var(--primary-color);
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-com-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: var(--background-light);
        color: var(--text-color-dark);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-8k8-com-login-register__faq-answer p {
        margin: 0;
        padding-bottom: 20px;
    }

    .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-answer {
        max-height: 2000px !important;
        padding: 20px 25px !important;
        opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-com-login-register__hero-section {
            padding-bottom: 60px;
        }

        .page-8k8-com-login-register__hero-content {
            padding: 30px 15px;
        }

        .page-8k8-com-login-register__hero-title {
            font-size: 2em;
        }

        .page-8k8-com-login-register__hero-description {
            font-size: 1em;
        }

        .page-8k8-com-login-register__section {
            padding: 40px 15px;
        }

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

        .page-8k8-com-login-register__content-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8k8-com-login-register__card {
            padding: 20px;
        }

        .page-8k8-com-login-register__card-icon {
            width: 200px; /* Adjusted min size for mobile */
            height: 200px; /* Adjusted min size for mobile */
        }

        .page-8k8-com-login-register__step-item {
            flex-direction: column;
            align-items: center;
            padding: 20px;
        }

        .page-8k8-com-login-register__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .page-8k8-com-login-register__step-content h3 {
            text-align: center;
        }

        .page-8k8-com-login-register__step-content p {
            text-align: center;
        }

        .page-8k8-com-login-register__app-promo {
            flex-direction: column;
            gap: 20px;
            padding: 30px 15px;
        }

        .page-8k8-com-login-register__app-image {
            width: 250px; /* Adjusted min size for mobile */
            height: 250px; /* Adjusted min size for mobile */
        }

        .page-8k8-com-login-register__app-text {
            text-align: center;
        }

        .page-8k8-com-login-register__app-text h2 {
            font-size: 1.5em;
        }

        .page-8k8-com-login-register__faq-section {
            padding: 40px 15px;
        }

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

        .page-8k8-com-login-register__faq-question h3 {
            font-size: 1em;
        }

        .page-8k8-com-login-register__faq-answer {
            padding: 0 20px;
        }

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

        /* List item specific mobile styles */
        .page-8k8-com-login-register__steps-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-com-login-register__step-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-com-login-register__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;
        }
    }

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