
    /* Base styles for the page-yy777-com-login-2 component */
    .page-yy777-com-login-2 {
        font-family: 'Arial', sans-serif;
        color: #e0e0e0;
        background-color: #1a1a1a;
        line-height: 1.6;
        padding-bottom: 40px;
        padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    /* Hero Section */
    .page-yy777-com-login-2__hero-section {
        position: relative;
        background-color: #0d0d0d;
        color: #ffffff;
        text-align: center;
        padding: 80px 20px 60px;
        overflow: hidden;
        border-bottom: 3px solid #ffcc00;
        padding-top: 10px; /* Small top padding assuming body has --header-offset padding */
    }

    .page-yy777-com-login-2__hero-background {
        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-yy777-com-login-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-yy777-com-login-2__hero-title {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #ffcc00;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-yy777-com-login-2__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

    .page-yy777-com-login-2__cta-button {
        display: inline-block;
        background-color: #007bff; /* A vibrant blue for CTA */
        color: #ffffff;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-yy777-com-login-2__cta-button:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Section Styling */
    .page-yy777-com-login-2__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-yy777-com-login-2__section-title {
        font-size: 2.2em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(255, 204, 0, 0.3);
    }

    .page-yy777-com-login-2__section-text {
        font-size: 1.1em;
        color: #cccccc;
        text-align: center;
        margin-bottom: 40px;
    }

    /* Login Steps */
    .page-yy777-com-login-2__steps-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-yy777-com-login-2__step-card {
        background-color: #2a2a2a;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        flex: 1 1 calc(33% - 40px);
        max-width: calc(33% - 40px);
        min-width: 280px;
        box-sizing: border-box;
        border: 1px solid #3a3a3a;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-yy777-com-login-2__step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
    }

    .page-yy777-com-login-2__step-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: cover;
    }

    .page-yy777-com-login-2__step-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-yy777-com-login-2__step-description {
        font-size: 1em;
        color: #b0b0b0;
    }

    /* Benefits Section */
    .page-yy777-com-login-2__benefits-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-yy777-com-login-2__benefit-item {
        background-color: #2a2a2a;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        border-left: 5px solid #007bff;
        box-sizing: border-box;
    }

    .page-yy777-com-login-2__benefit-icon {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        object-fit: cover;
    }

    .page-yy777-com-login-2__benefit-content {
        flex-grow: 1;
    }

    .page-yy777-com-login-2__benefit-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-yy777-com-login-2__benefit-description {
        font-size: 0.95em;
        color: #b0b0b0;
    }

    /* FAQ Section */
    .page-yy777-com-login-2__faq-container {
        max-width: 800px;
        margin: 40px auto;
        background-color: #222222;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .page-yy777-com-login-2__faq-item {
        border-bottom: 1px solid #333333;
    }

    .page-yy777-com-login-2__faq-item:last-child {
        border-bottom: none;
    }

    .page-yy777-com-login-2__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #2a2a2a;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-yy777-com-login-2__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-yy777-com-login-2__faq-question h3 {
        margin: 0;
        font-size: 1.25em;
        color: #ffffff;
        pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-yy777-com-login-2__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent text selection from interfering with click */
    }

    .page-yy777-com-login-2__faq-item.active .page-yy777-com-login-2__faq-toggle {
        transform: rotate(45deg);
    }

    .page-yy777-com-login-2__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #1a1a1a;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        color: #b0b0b0;
        font-size: 1em;
    }

    .page-yy777-com-login-2__faq-item.active .page-yy777-com-login-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-yy777-com-login-2__faq-answer p {
        margin-bottom: 15px;
    }

    .page-yy777-com-login-2__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Additional CTA at the bottom */
    .page-yy777-com-login-2__bottom-cta {
        text-align: center;
        padding: 60px 20px;
        background-color: #0d0d0d;
        border-top: 3px solid #007bff;
        margin-top: 60px;
    }

    .page-yy777-com-login-2__bottom-cta-title {
        font-size: 2.5em;
        color: #ffcc00;
        margin-bottom: 20px;
    }

    .page-yy777-com-login-2__bottom-cta-text {
        font-size: 1.2em;
        color: #f0f0f0;
        margin-bottom: 30px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
        .page-yy777-com-login-2__hero-title {
            font-size: 2.5em;
        }

        .page-yy777-com-login-2__hero-subtitle {
            font-size: 1.2em;
        }

        .page-yy777-com-login-2__step-card {
            flex: 1 1 calc(50% - 30px);
            max-width: calc(50% - 30px);
        }
    }

    @media (max-width: 768px) {
        .page-yy777-com-login-2 {
            padding-top: var(--header-offset, 122px) !important;
        }
        .page-yy777-com-login-2__hero-section {
            padding: 60px 15px 40px;
        }

        .page-yy777-com-login-2__hero-title {
            font-size: 2em;
        }

        .page-yy777-com-login-2__hero-subtitle {
            font-size: 1em;
        }

        .page-yy777-com-login-2__cta-button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-yy777-com-login-2__section {
            padding: 30px 15px;
        }

        .page-yy777-com-login-2__section-title {
            font-size: 1.8em;
            margin-bottom: 20px;
        }

        .page-yy777-com-login-2__section-text {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .page-yy777-com-login-2__steps-container {
            gap: 20px;
        }

        .page-yy777-com-login-2__step-card {
            flex: 1 1 100% !important;
            max-width: 100% !important;
            min-width: unset;
            padding: 25px;
            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-yy777-com-login-2__step-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
        }

        .page-yy777-com-login-2__step-title {
            font-size: 1.3em;
        }

        .page-yy777-com-login-2__benefit-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            border-left: none;
            border-top: 5px solid #007bff;
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !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-yy777-com-login-2__benefits-list {
            padding: 0 !important;
            margin: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .page-yy777-com-login-2__benefit-icon {
            margin-bottom: 15px;
        }

        .page-yy777-com-login-2__benefit-title {
            font-size: 1.2em;
        }

        .page-yy777-com-login-2__faq-question {
            padding: 15px 20px;
        }

        .page-yy777-com-login-2__faq-question h3 {
            font-size: 1.1em;
        }

        .page-yy777-com-login-2__faq-toggle {
            font-size: 1.5em;
        }

        .page-yy777-com-login-2__faq-answer {
            padding: 0 20px;
        }

        .page-yy777-com-login-2__faq-item.active .page-yy777-com-login-2__faq-answer {
            padding: 15px 20px !important;
        }

        .page-yy777-com-login-2__bottom-cta {
            padding: 40px 15px;
            margin-top: 40px;
        }

        .page-yy777-com-login-2__bottom-cta-title {
            font-size: 2em;
        }

        .page-yy777-com-login-2__bottom-cta-text {
            font-size: 1em;
        }

        /* Image responsive */
        .page-yy777-com-login-2__hero-background,
        .page-yy777-com-login-2__step-icon,
        .page-yy777-com-login-2__benefit-icon {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-yy777-com-login-2__image-container {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  