
    /* Page-specific CSS for 8k8.com register page */
    :root {
        --page-8k8-4-primary-color: #ffcc00; /* Gold/Yellow */
        --page-8k8-4-secondary-color: #333333; /* Dark Grey */
        --page-8k8-4-background-dark: #1a1a1a; /* Very Dark Grey */
        --page-8k8-4-text-light: #ffffff; /* White */
        --page-8k8-4-text-dark: #000000; /* Black */
        --page-8k8-4-accent-red: #e74c3c; /* Red for emphasis */
        --page-8k8-4-border-color: #444444;
    }

    .page-8k8-4 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-4-text-light);
        background-color: var(--page-8k8-4-background-dark);
        line-height: 1.6;
        padding-top: 10px; /* Small decorative padding, body already handles header offset */
    }

    .page-8k8-4__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-4__section {
        padding: 60px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-4__section--dark {
        background-color: var(--page-8k8-4-secondary-color);
    }

    .page-8k8-4__hero-section {
        background-color: var(--page-8k8-4-background-dark);
        padding: 80px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-4__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        filter: brightness(0.4); /* Allowed for background darkening */
    }

    .page-8k8-4__hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }

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

    .page-8k8-4__hero-subtitle {
        font-size: 1.5em;
        color: var(--page-8k8-4-text-light);
        margin-bottom: 30px;
    }

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

    .page-8k8-4__button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    .page-8k8-4__heading {
        font-size: 2.5em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 10px;
    }

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

    .page-8k8-4__text {
        font-size: 1.1em;
        color: var(--page-8k8-4-text-light);
        margin-bottom: 20px;
    }

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

    .page-8k8-4__card {
        background-color: var(--page-8k8-4-background-dark);
        border: 1px solid var(--page-8k8-4-border-color);
        border-radius: 8px;
        padding: 30px;
        text-align: left;
        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;
    }

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

    .page-8k8-4__card-icon {
        width: 100px; /* Display size, source image is 200x200 */
        height: 100px; /* Display size, source image is 200x200 */
        margin-bottom: 20px;
        object-fit: contain;
    }

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

    .page-8k8-4__card-description {
        font-size: 1em;
        color: var(--page-8k8-4-text-light);
    }

    .page-8k8-4__steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-4__step-item {
        background-color: var(--page-8k8-4-background-dark);
        border: 1px solid var(--page-8k8-4-border-color);
        border-radius: 8px;
        padding: 25px;
        display: flex;
        align-items: flex-start;
        text-align: left;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }

    .page-8k8-4__step-item:hover {
        background-color: #2a2a2a;
    }

    .page-8k8-4__step-number {
        font-size: 2em;
        font-weight: bold;
        color: var(--page-8k8-4-primary-color);
        margin-right: 20px;
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--page-8k8-4-primary-color);
        border-radius: 50%;
    }

    .page-8k8-4__step-content h3 {
        font-size: 1.5em;
        color: var(--page-8k8-4-primary-color);
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-8k8-4__step-content p {
        font-size: 1em;
        color: var(--page-8k8-4-text-light);
        margin-bottom: 0;
    }

    .page-8k8-4__promo-banner {
        background: linear-gradient(45deg, var(--page-8k8-4-primary-color), #ff6600);
        padding: 50px 20px;
        border-radius: 10px;
        margin-top: 60px;
        color: var(--page-8k8-4-text-dark);
        text-align: center;
    }

    .page-8k8-4__promo-banner h2 {
        font-size: 2.8em;
        margin-bottom: 15px;
    }

    .page-8k8-4__promo-banner p {
        font-size: 1.3em;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .page-8k8-4__faq-section {
        background-color: var(--page-8k8-4-background-dark);
        padding: 60px 0;
        text-align: center;
    }

    .page-8k8-4__faq-list {
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: left;
    }

    .page-8k8-4__faq-item {
        background-color: var(--page-8k8-4-secondary-color);
        border: 1px solid var(--page-8k8-4-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: background-color 0.3s ease;
    }

    .page-8k8-4__faq-item:hover {
        background-color: #444444;
    }

    .page-8k8-4__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        font-size: 1.2em;
        font-weight: bold;
        color: var(--page-8k8-4-primary-color);
    }

    .page-8k8-4__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-8k8-4-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
        transform: rotate(45deg); /* Plus sign rotates to form an X or similar */
    }

    .page-8k8-4__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial 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(--page-8k8-4-text-light);
        font-size: 1em;
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important; /* Padding for expanded state */
        opacity: 1;
    }
    
    .page-8k8-4__payment-providers {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-content: center;
    }

    .page-8k8-4__payment-item,
    .page-8k8-4__provider-item {
        background-color: var(--page-8k8-4-secondary-color);
        border: 1px solid var(--page-8k8-4-border-color);
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        transition: transform 0.2s ease;
    }

    .page-8k8-4__payment-item:hover,
    .page-8k8-4__provider-item:hover {
        transform: translateY(-5px);
    }

    .page-8k8-4__payment-item img,
    .page-8k8-4__provider-item img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 10px;
        max-height: 80px; /* Adjust based on actual image sizes */
    }

    .page-8k8-4__payment-item span,
    .page-8k8-4__provider-item span {
        font-weight: bold;
        color: var(--page-8k8-4-text-light);
        font-size: 0.9em;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-8k8-4__hero-title {
            font-size: 3em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-4__heading {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-4__container {
            padding: 15px;
        }
        .page-8k8-4__section {
            padding: 40px 0;
        }
        .page-8k8-4__hero-section {
            padding: 60px 0;
            min-height: 400px;
        }
        .page-8k8-4__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-4__button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-8k8-4__heading {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-4__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-8k8-4__card {
            padding: 25px;
        }
        .page-8k8-4__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
        }
        .page-8k8-4__step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }
        .page-8k8-4__promo-banner {
            padding: 40px 15px;
        }
        .page-8k8-4__promo-banner h2 {
            font-size: 2em;
        }
        .page-8k8-4__promo-banner p {
            font-size: 1em;
        }
        .page-8k8-4__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-4__faq-answer {
            padding: 0 20px;
            font-size: 0.95em;
        }
        .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-4__payment-providers {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
        }

        /* List item responsive requirements */
        .page-8k8-4__grid .page-8k8-4__card,
        .page-8k8-4__steps .page-8k8-4__step-item,
        .page-8k8-4__faq-list .page-8k8-4__faq-item,
        .page-8k8-4__payment-providers .page-8k8-4__payment-item,
        .page-8k8-4__payment-providers .page-8k8-4__provider-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;
        }

        .page-8k8-4__grid,
        .page-8k8-4__steps,
        .page-8k8-4__faq-list,
        .page-8k8-4__payment-providers {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-4__hero-title {
            font-size: 2em;
        }
        .page-8k8-4__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-4__heading {
            font-size: 1.5em;
        }
        .page-8k8-4__promo-banner h2 {
            font-size: 1.8em;
        }
        .page-8k8-4__promo-banner p {
            font-size: 0.9em;
        }
        .page-8k8-4__faq-question {
            font-size: 1em;
        }
        .page-8k8-4__faq-question h3 {
            font-size: 1em;
        }
        .page-8k8-4__payment-providers {
            grid-template-columns: repeat(2, 1fr);
        }
    }
  