/* 搜神集样式 */
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; }

/* 搜索结果卡片 */
.novel-card {
    transition: all 0.2s ease;
}
.novel-card:hover {
    transform: translateY(-2px);
    border-color: #f59e0b;
}

/* 阅读器 */
.reader-content p {
    margin-bottom: 1.2em;
    text-indent: 2em;
}
.reader-content {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Serif SC', serif;
    font-size: 18px;
    line-height: 2;
    word-break: break-all;
}

/* 滚动条 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* 加载动画 */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
