.eight-pop-mask {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.76);
    padding: 24px;
    box-sizing: border-box;
}

.eight-pop-mask.is-open {
    display: flex;
}

.eight-pop-card {
    width: 456px;
    max-width: 100%;
    height: auto;
    padding: 32px;
    background: rgba(23, 23, 23, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.48);
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    display: flex;
    box-sizing: border-box;
}

.eight-pop-icon {
    width: 78px;
    height: 78px;
    border-radius: 112px;
    object-fit: cover;
    display: block;
}

.eight-pop-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 26px;
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
}

.eight-pop-desc {
    align-self: stretch;
    text-align: center;
    color: rgba(255, 255, 255, 0.60);
    font-size: 15px;
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word;
}

.eight-pop-actions {
    align-self: stretch;
    height: 50px;
    overflow: hidden;
    justify-content: flex-start;
    align-items: stretch;
    gap: 12px;
    display: flex;
}

.eight-pop-btn {
    flex: 1 1 0;
    height: 50px;
    overflow: hidden;
    border: none;
    border-radius: 14px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    font-size: 16px;
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    word-wrap: break-word;
    box-sizing: border-box;
}

.eight-pop-btn--exit {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.90);
}

.eight-pop-btn--confirm {
    background: #FADC44;
    color: #171717;
}

.eight-pop-hint {
    text-align: center;
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    font-family: "Noto Sans SC", "PingFang SC", sans-serif;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .eight-pop-mask {
        padding: 16px;
    }

    .eight-pop-card {
        width: 300px;
        max-width: calc(100% - 32px);
        padding: 28px 24px 24px;
        gap: 16px;
        border-radius: 24px;
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.48);
    }

    .eight-pop-icon {
        width: 78px;
        height: 78px;
    }

    .eight-pop-title {
        font-size: 22px;
    }

    .eight-pop-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .eight-pop-actions {
        width: 252px;
        max-width: 100%;
        height: auto;
        flex-direction: column-reverse;
        align-self: center;
        gap: 16px;
    }

    .eight-pop-btn {
        width: 252px;
        max-width: 100%;
        flex: none;
        height: 48px;
        font-size: 16px;
    }

    .eight-pop-hint {
        font-size: 12px;
    }
}
