/**
 * 小说主题自定义样式
 */

/* 女频角标样式 - 更新为文字样式 */
.novel-title .img-badge,
.article-title .img-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

/* 旧的图片角标样式 - 保留但不使用 */
.novel-title .badge-status img,
.article-title .badge-status img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    display: none; /* 隐藏图片 */
}

/* 新的女频角标样式 - 类似已完结标签 */
.novel-title .badge-status,
.article-title .badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6b81;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: bold;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(255,107,129,0.3);
    position: relative;
    top: -2px;
    margin-left: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 2px 4px rgba(255,107,129,0.3); }
    50% { box-shadow: 0 2px 8px rgba(255,107,129,0.5); }
    100% { box-shadow: 0 2px 4px rgba(255,107,129,0.3); }
}

.novel-title .badge-status:before,
.article-title .badge-status:before {
    content: "女频";
    display: inline-block;
    letter-spacing: 0.5px;
    transform: scale(0.95);
}

.novel-cover-container {
    position: relative;
}

/* 移除封面右上角的女频角标样式，现在显示在标题后面 */

/* 点赞动画效果 */
.liked-animation {
    animation: pulse 1s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.liked-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
}