
    /* CSS for page-plus777-app-login-register */
    :root {
        --plus777-primary: #FFD700; /* Gold */
        --plus777-secondary: #000000; /* Black */
        --plus777-accent: #FF4500; /* OrangeRed */
        --plus777-text-light: #FFFFFF;
        --plus777-text-dark: #333333;
        --plus777-bg-dark: #1a1a1a;
        --plus777-bg-light: #f5f5f5;
    }

    .page-plus777-app-login-register {
        font-family: 'Arial', sans-serif;
        color: var(--plus777-text-light);
        background-color: var(--plus777-bg-dark);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-plus777-app-login-register__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-plus777-app-login-register__hero-section {
        background-color: var(--plus777-secondary);
        color: var(--plus777-primary);
        padding: 60px 20px 40px; /* Adjusted padding-top to account for header-offset */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        overflow: hidden;
        padding-top: 10px; /* Small top padding as per instruction, relying on body padding for header offset */
    }

    .page-plus777-app-login-register__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        max-width: 100%;
        height: auto;
    }

    .page-plus777-app-login-register__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-plus777-app-login-register__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: var(--plus777-primary);
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .page-plus777-app-login-register__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: var(--plus777-text-light);
    }

    .page-plus777-app-login-register__promo-text {
        font-size: 1.1em;
        font-weight: bold;
        color: var(--plus777-accent);
        margin-bottom: 25px;
        animation: page-plus777-app-login-register__blink 1.5s infinite;
    }

    @keyframes page-plus777-app-login-register__blink {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }

    .page-plus777-app-login-register__cta-group {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 30px;
    }

    .page-plus777-app-login-register__cta-button {
        background-color: var(--plus777-primary);
        color: var(--plus777-secondary);
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        display: inline-block;
        border: none;
    }

    .page-plus777-app-login-register__cta-button:hover {
        background-color: #FFC107; /* Slightly darker gold */
        transform: translateY(-3px);
    }

    .page-plus777-app-login-register__section-title {
        font-size: 2.2em;
        color: var(--plus777-primary);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-plus777-app-login-register__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 80px;
        height: 3px;
        background-color: var(--plus777-accent);
    }

    .page-plus777-app-login-register__content-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--plus777-text-light);
    }

    .page-plus777-app-login-register__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-plus777-app-login-register__feature-item {
        background-color: #2a2a2a;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

    .page-plus777-app-login-register__feature-item:hover {
        transform: translateY(-5px);
    }

    .page-plus777-app-login-register__feature-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-plus777-app-login-register__feature-title {
        font-size: 1.4em;
        color: var(--plus777-primary);
        margin-bottom: 15px;
    }

    .page-plus777-app-login-register__feature-description {
        color: var(--plus777-text-light);
        font-size: 0.95em;
    }

    .page-plus777-app-login-register__steps-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        text-align: left;
    }

    .page-plus777-app-login-register__step-item {
        background-color: #2a2a2a;
        padding: 25px 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        border-left: 5px solid var(--plus777-primary);
        box-sizing: border-box; /* Required for list items */
        word-wrap: break-word; /* Required for list items */
        overflow-wrap: break-word; /* Required for list items */
        word-break: break-word; /* Required for list items */
    }

    .page-plus777-app-login-register__step-number {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--plus777-accent);
        flex-shrink: 0;
        line-height: 1;
    }

    .page-plus777-app-login-register__step-content {
        flex-grow: 1;
    }

    .page-plus777-app-login-register__step-title {
        font-size: 1.3em;
        color: var(--plus777-primary);
        margin-bottom: 8px;
    }

    .page-plus777-app-login-register__step-description {
        color: var(--plus777-text-light);
        font-size: 1em;
    }

    .page-plus777-app-login-register__payment-grid,
    .page-plus777-app-login-register__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-plus777-app-login-register__payment-item,
    .page-plus777-app-login-register__provider-item {
        background-color: #2a2a2a;
        padding: 20px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 215, 0, 0.1);
        box-sizing: border-box; /* Required for list items */
        word-wrap: break-word; /* Required for list items */
        overflow-wrap: break-word; /* Required for list items */
        word-break: break-word; /* Required for list items */
    }

    .page-plus777-app-login-register__payment-logo,
    .page-plus777-app-login-register__provider-logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        height: auto;
    }

    .page-plus777-app-login-register__payment-name,
    .page-plus777-app-login-register__provider-name {
        font-size: 0.95em;
        font-weight: bold;
        color: var(--plus777-text-light);
        text-align: center;
    }

    .page-plus777-app-login-register__faq-section {
        background-color: var(--plus777-bg-dark);
        color: var(--plus777-text-light);
    }

    .page-plus777-app-login-register__faq-list {
        margin-top: 40px;
        text-align: left;
    }

    .page-plus777-app-login-register__faq-item {
        background-color: #2a2a2a;
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 215, 0, 0.1);
    }

    .page-plus777-app-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #333333;
        transition: background-color 0.3s ease;
    }

    .page-plus777-app-login-register__faq-question:hover {
        background-color: #444444;
    }

    .page-plus777-app-login-register__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--plus777-primary);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-plus777-app-login-register__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--plus777-accent);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-plus777-app-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        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(--plus777-text-light);
        font-size: 1em;
        text-align: left;
    }

    .page-plus777-app-login-register__faq-item.active .page-plus777-app-login-register__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-plus777-app-login-register__faq-item.active .page-plus777-app-login-register__faq-toggle {
        transform: rotate(45deg); /* Changes + to X or - */
    }

    .page-plus777-app-login-register__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        gap: 10px;
    }

    .page-plus777-app-login-register__floating-button {
        flex: 1;
        max-width: 48%;
        background-color: var(--plus777-accent);
        color: var(--plus777-text-light);
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        display: block;
        border: none;
    }

    .page-plus777-app-login-register__floating-button--login {
        background-color: var(--plus777-primary);
        color: var(--plus777-secondary);
    }

    .page-plus777-app-login-register__floating-button:hover {
        transform: translateY(-2px);
    }

    .page-plus777-app-login-register__floating-button--login:hover {
        background-color: #FFC107;
    }

    .page-plus777-app-login-register__floating-button--register:hover {
        background-color: #E63900;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-plus777-app-login-register__hero-title {
            font-size: 2em;
        }

        .page-plus777-app-login-register__hero-subtitle {
            font-size: 1.1em;
        }

        .page-plus777-app-login-register__section {
            padding: 30px 15px;
        }

        .page-plus777-app-login-register__section-title {
            font-size: 1.8em;
        }

        .page-plus777-app-login-register__cta-group {
            flex-direction: column;
            gap: 15px;
        }

        .page-plus777-app-login-register__cta-button {
            width: 100%;
            max-width: 300px;
        }

        .page-plus777-app-login-register__features-grid {
            grid-template-columns: 1fr;
        }

        .page-plus777-app-login-register__feature-item {
            padding: 25px;
        }

        .page-plus777-app-login-register__feature-icon {
            width: 80px;
            height: 80px;
        }

        .page-plus777-app-login-register__steps-list {
            padding: 0 !important; /* List container specific */
            width: 100% !important; /* List container specific */
            max-width: 100% !important; /* List container specific */
            margin-left: 0 !important; /* List container specific */
            margin-right: 0 !important; /* List container specific */
            box-sizing: border-box !important; /* List container specific */
        }
        .page-plus777-app-login-register__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            border-left: none;
            border-top: 5px solid var(--plus777-primary);
            box-sizing: border-box !important; /* List item specific */
            width: 100% !important; /* List item specific */
            max-width: 100% !important; /* List item specific */
            margin-left: 0 !important; /* List item specific */
            margin-right: 0 !important; /* List item specific */
        }
        .page-plus777-app-login-register__step-number {
            margin-bottom: 10px;
        }

        .page-plus777-app-login-register__payment-grid,
        .page-plus777-app-login-register__providers-grid {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            padding: 0 !important; /* List container specific */
            width: 100% !important; /* List container specific */
            max-width: 100% !important; /* List container specific */
            margin-left: 0 !important; /* List container specific */
            margin-right: 0 !important; /* List container specific */
            box-sizing: border-box !important; /* List container specific */
        }
        .page-plus777-app-login-register__payment-item,
        .page-plus777-app-login-register__provider-item {
            padding: 15px;
            box-sizing: border-box !important; /* List item specific */
            width: 100% !important; /* List item specific */
            max-width: 100% !important; /* List item specific */
            margin-left: 0 !important; /* List item specific */
            margin-right: 0 !important; /* List item specific */
        }

        .page-plus777-app-login-register__payment-logo,
        .page-plus777-app-login-register__provider-logo {
            width: 80px;
            height: 40px;
        }

        .page-plus777-app-login-register__faq-question {
            padding: 15px 20px;
        }

        .page-plus777-app-login-register__faq-question h3 {
            font-size: 1.1em;
        }

        .page-plus777-app-login-register__faq-answer {
            padding: 0 20px;
        }

        .page-plus777-app-login-register__faq-item.active .page-plus777-app-login-register__faq-answer {
            padding: 15px 20px !important;
        }

        .page-plus777-app-login-register__floating-buttons {
            padding: 8px 0;
            gap: 5px;
        }

        .page-plus777-app-login-register__floating-button {
            padding: 10px 10px;
            font-size: 1em;
        }
    }

    @media (max-width: 480px) {
        .page-plus777-app-login-register__hero-title {
            font-size: 1.8em;
        }
        .page-plus777-app-login-register__floating-buttons {
            flex-direction: column;
            gap: 5px;
            padding: 5px;
        }
        .page-plus777-app-login-register__floating-button {
            max-width: 95%; /* Adjust for small screens */
            margin: 0 auto;
        }
        .page-plus777-app-login-register {
            padding-bottom: 120px; /* More space for stacked buttons */
        }
    }
  