/* AI写小说网站 - 自定义样式 */

/* 全局 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
}

/* 步骤导航 */
.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

/* 生成动画 */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
}
.generating { animation: pulse-glow 2s infinite; }

/* Markdown内容渲染 */
.prose h1, .prose h2, .prose h3 { font-weight: bold; margin: 1em 0 0.5em; }
.prose h1 { font-size: 1.5em; }
.prose h2 { font-size: 1.3em; }
.prose h3 { font-size: 1.1em; }
.prose p { margin: 0.5em 0; line-height: 1.8; }
.prose blockquote { border-left: 3px solid #6366f1; padding-left: 1em; color: #666; margin: 1em 0; }

/* 快速标签悬浮 */
.quick-tag:hover { transform: translateY(-1px); }

/* 充值卡片 */
.plan-card { transition: all 0.2s ease; }
.plan-card:hover { transform: translateY(-2px); }

/* 小说列表封面 */
.novel-cover {
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* 响应式 */
@media (max-width: 640px) {
    .step-item span { font-size: 0.7rem; }
    .step-item > div { width: 2rem; height: 2rem; font-size: 0.8rem; }
}
