
    /* Fixed nav bar offset - applying to main wrapper if shared.css doesn't handle body padding */
    .page-www-8k8-com-login-register {
        padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined */
        background-color: #1a1a1a;
        color: #f0f0f0;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
    }

    /* General Styling */
    .page-www-8k8-com-login-register__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-register__section {
        padding: 40px 0;
        text-align: center;
        margin-bottom: 20px;
        background-color: #2a2a2a;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login-register__section--dark {
        background-color: #1f1f1f;
    }

    .page-www-8k8-com-login-register__heading {
        color: #ffcc00; /* Gold */
        margin-bottom: 20px;
        font-size: 2.5em;
        font-weight: bold;
    }

    .page-www-8k8-com-login-register__subheading {
        color: #e0e0e0;
        margin-bottom: 15px;
        font-size: 1.8em;
    }

    .page-www-8k8-com-login-register__text {
        color: #cccccc;
        font-size: 1.1em;
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-www-8k8-com-login-register__button {
        display: inline-block;
        background-color: #ffcc00; /* Gold */
        color: #1a1a1a;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

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

    /* Hero Section */
    .page-www-8k8-com-login-register__hero-section {
        padding: 10px 0 60px 0; /* Adjusted padding-top as per fixed nav bar offset rule */
        background: url('[GALLERY:hero:1920x1080:casino,login,register,philippines,gaming]') no-repeat center center/cover;
        color: #ffffff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-www-8k8-com-login-register__hero-content {
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-www-8k8-com-login-register__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #ffcc00;
        line-height: 1.2;
    }

    .page-www-8k8-com-login-register__hero-description {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Floating Buttons */
    .page-www-8k8-com-login-register__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-www-8k8-com-login-register__floating-button {
        background-color: #007bff; /* Blue for contrast */
        color: white;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        text-align: center;
    }

    .page-www-8k8-com-login-register__floating-button--register {
        background-color: #28a745; /* Green */
    }

    .page-www-8k8-com-login-register__floating-button--login {
        background-color: #007bff; /* Blue */
    }

    .page-www-8k8-com-login-register__floating-button:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Content Cards */
    .page-www-8k8-com-login-register__card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-www-8k8-com-login-register__card {
        background-color: #333333;
        border-radius: 10px;
        padding: 25px;
        text-align: left;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

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

    .page-www-8k8-com-login-register__card-title {
        color: #ffcc00;
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .page-www-8k8-com-login-register__card-text {
        color: #cccccc;
        font-size: 1em;
    }

    .page-www-8k8-com-login-register__card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box; /* Responsive image */
    }

    /* Steps Section */
    .page-www-8k8-com-login-register__steps-list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }

    .page-www-8k8-com-login-register__step-item {
        background-color: #333333;
        border-radius: 10px;
        padding: 25px;
        width: 300px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-www-8k8-com-login-register__step-number {
        background-color: #ffcc00;
        color: #1a1a1a;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8em;
        font-weight: bold;
        margin: 0 auto 20px auto;
    }

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

    .page-www-8k8-com-login-register__step-description {
        color: #cccccc;
        font-size: 1em;
    }

    /* Game Providers / Payment Methods */
    .page-www-8k8-com-login-register__logo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-www-8k8-com-login-register__logo-item {
        background-color: #444444;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        box-sizing: border-box; /* Crucial for responsive lists */
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px; /* Ensure logos have enough space */
    }

    .page-www-8k8-com-login-register__logo-image {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        filter: brightness(1.2); /* Allowed for visibility, not color change */
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box; /* Responsive image */
    }

    /* FAQ Section */
    .page-www-8k8-com-login-register__faq-section {
        text-align: left;
    }

    .page-www-8k8-com-login-register__faq-item {
        background-color: #333333;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8-com-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #444444;
        color: #ffcc00;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

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

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

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

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
        transform: rotate(45deg); /* Visually change + to X or - */
    }

    .page-www-8k8-com-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px; /* 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: #cccccc;
        background-color: #3a3a3a;
        font-size: 1em;
    }

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

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-www-8k8-com-login-register__hero-title {
            font-size: 3em;
        }
        .page-www-8k8-com-login-register__hero-description {
            font-size: 1.2em;
        }
        .page-www-8k8-com-login-register__heading {
            font-size: 2em;
        }
        .page-www-8k8-com-login-register__subheading {
            font-size: 1.5em;
        }
    }

    @media (max-width: 768px) {
        .page-www-8k8-com-login-register {
            padding-top: var(--header-offset, 100px); /* Adjust for smaller header on mobile */
        }
        .page-www-8k8-com-login-register__container {
            padding: 15px;
        }
        .page-www-8k8-com-login-register__hero-title {
            font-size: 2.5em;
        }
        .page-www-8k8-com-login-register__hero-description {
            font-size: 1em;
        }
        .page-www-8k8-com-login-register__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-www-8k8-com-login-register__card-grid {
            grid-template-columns: 1fr;
        }

        /* List item responsive requirements */
        .page-www-8k8-com-login-register__steps-list,
        .page-www-8k8-com-login-register__logo-grid {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            flex-direction: column; /* Stack items vertically for single column */
            gap: 15px; /* Adjust gap for mobile */
        }

        .page-www-8k8-com-login-register__step-item,
        .page-www-8k8-com-login-register__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-www-8k8-com-login-register__logo-item {
            min-height: 80px; /* Smaller min-height for mobile logos */
        }

        /* Image responsiveness */
        .page-www-8k8-com-login-register__card-image,
        .page-www-8k8-com-login-register__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-www-8k8-com-login-register__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Buttons side-by-side on smaller screens */
            gap: 8px;
            width: calc(100% - 30px); /* Adjust width */
            justify-content: center;
        }

        .page-www-8k8-com-login-register__floating-button {
            flex: 1; /* Distribute space evenly */
            padding: 10px 15px;
            font-size: 0.95em;
        }

        .page-www-8k8-com-login-register__faq-question {
            padding: 12px 15px;
        }
        .page-www-8k8-com-login-register__faq-question h3 {
            font-size: 1.1em;
        }
        .page-www-8k8-com-login-register__faq-answer {
            padding: 15px 15px;
        }
        .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-answer {
            padding: 15px 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-www-8k8-com-login-register__hero-title {
            font-size: 2em;
        }
        .page-www-8k8-com-login-register__hero-description {
            font-size: 0.9em;
        }
        .page-www-8k8-com-login-register__heading {
            font-size: 1.8em;
        }
        .page-www-8k8-com-login-register__subheading {
            font-size: 1.3em;
        }
        .page-www-8k8-com-login-register__floating-buttons {
            flex-direction: column; /* Stack buttons again on very small screens */
            width: auto;
            right: 10px;
            left: 10px;
        }
    }
  