/* 在模块未解锁时隐藏文章内容 */
.mod-adunlock:not(.unlocked) ~ .item-page .article-body,
.mod-adunlock:not(.unlocked) ~ .item-page .article-content,
.mod-adunlock:not(.unlocked) ~ .item-page [itemprop="articleBody"] {
    display: none !important;
}

/* 添加解锁提示 */
.mod-adunlock:not(.unlocked) ~ .item-page::before {
    content: "🔒 Premium Content Locked - Please view the advertisement below to unlock this article";
    display: block;
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}