
    /* Base styles for the page */
    .page-www-8k8-com-login-register {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding-top: 10px; /* Small padding, relying on body for header offset */
    }

    /* Hero Section */
    .page-www-8k8-com-login-register__hero-section {
        position: relative;
        color: #fff;
        text-align: center;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        overflow: hidden;
    }

    .page-www-8k8-com-login-register__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Allowed for background images to improve text readability */
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
        box-sizing: border-box; /* Image container */
    }

    .page-www-8k8-com-login-register__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-www-8k8-com-login-register__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffd700; /* Gold color for highlights */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8-com-login-register__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 700px;
        color: #eee;
    }

    .page-www-8k8-com-login-register__hero-button-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-www-8k8-com-login-register__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #007bff; /* Blue for primary action */
        color: #fff;
        text-decoration: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-www-8k8-com-login-register__button--secondary {
        background-color: #28a745; /* Green for secondary action */
    }

    .page-www-8k8-com-login-register__button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-www-8k8-com-login-register__button--secondary:hover {
        background-color: #218838;
    }

    /* General Section Styling */
    .page-www-8k8-com-login-register__section {
        padding: 60px 20px;
        margin: 0 auto;
        max-width: 1200px;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        text-align: center;
    }

    .page-www-8k8-com-login-register__section-title {
        font-size: 2.2em;
        color: #333;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-www-8k8-com-login-register__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffd700;
        border-radius: 2px;
    }

    .page-www-8k8-com-login-register__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: #555;
        text-align: left;
    }

    .page-www-8k8-com-login-register__text-content p {
        margin-bottom: 1em;
    }

    /* Steps/List Styling */
    .page-www-8k8-com-login-register__steps-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .page-www-8k8-com-login-register__step-item {
        background-color: #f0f8ff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-www-8k8-com-login-register__step-number {
        font-size: 2em;
        color: #007bff;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-www-8k8-com-login-register__step-title {
        font-size: 1.4em;
        color: #333;
        margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__step-description {
        color: #555;
    }

    /* Game Showcase */
    .page-www-8k8-com-login-register__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 0;
        margin: 0;
    }

    .page-www-8k8-com-login-register__game-card {
        background-color: #fefefe;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
        text-align: center;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-www-8k8-com-login-register__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
        box-sizing: border-box; /* Image container */
    }

    .page-www-8k8-com-login-register__game-info {
        padding: 20px;
    }

    .page-www-8k8-com-login-register__game-title {
        font-size: 1.3em;
        color: #333;
        margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__game-provider {
        font-size: 0.9em;
        color: #777;
    }

    /* Payment Methods */
    .page-www-8k8-com-login-register__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        padding: 0;
        margin: 0;
    }

    .page-www-8k8-com-login-register__payment-item {
        background-color: #f0f0f0;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-www-8k8-com-login-register__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-www-8k8-com-login-register__payment-logo {
        max-width: 100px;
        height: auto;
        margin-bottom: 10px;
        max-width: 100%; /* Image responsiveness */
        height: auto; /* Image responsiveness */
        box-sizing: border-box; /* Image container */
    }

    .page-www-8k8-com-login-register__payment-name {
        font-size: 1em;
        color: #333;
        font-weight: bold;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-register__faq-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: left;
    }

    .page-www-8k8-com-login-register__faq-item {
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-www-8k8-com-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #eaf6ff;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        font-weight: bold;
        color: #007bff;
        transition: background-color 0.3s ease;
    }

    .page-www-8k8-com-login-register__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #007bff;
        pointer-events: none; /* Prevents text selection from interfering with click */
    }

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

    .page-www-8k8-com-login-register__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        color: #007bff;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevents icon from interfering with click */
    }

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
        transform: rotate(45deg); /* Plus becomes an X-like shape, or could be a minus */
    }

    .page-www-8k8-com-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        background-color: #f9f9f9;
        color: #555;
    }

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

    /* Call to Action Section */
    .page-www-8k8-com-login-register__cta-section {
        background-color: #007bff;
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 1200px;
        margin: 0 auto 30px auto;
    }

    .page-www-8k8-com-login-register__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        color: #ffd700;
    }

    .page-www-8k8-com-login-register__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .page-www-8k8-com-login-register__hero-section {
            padding: 60px 15px;
            min-height: 350px;
        }

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

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

        .page-www-8k8-com-login-register__hero-button-group {
            flex-direction: column;
            gap: 15px;
        }

        .page-www-8k8-com-login-register__button {
            width: 100%;
            max-width: 280px;
            padding: 12px 20px;
            font-size: 1em;
        }

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

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

        .page-www-8k8-com-login-register__text-content {
            font-size: 1em;
        }

        /* List item mobile responsiveness */
        .page-www-8k8-com-login-register__steps-list,
        .page-www-8k8-com-login-register__game-grid,
        .page-www-8k8-com-login-register__payment-methods-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-www-8k8-com-login-register__step-item,
        .page-www-8k8-com-login-register__game-card,
        .page-www-8k8-com-login-register__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !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-www-8k8-com-login-register__game-image,
        .page-www-8k8-com-login-register__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-www-8k8-com-login-register__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }

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

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

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

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