* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Georgia', serif; } 
/* 使用衬线字体，更有小说感 */

body {
    background-color: #f4f4f4;
    display: flex; justify-content: center;
}

.container {
    width: 100%;
    max-width: 480px; /* 手机模拟宽度 */
    background: #fff;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* 导航栏 - 依然保持 */
.navbar {
    position: absolute; top: 0; left: 0; width: 100%;
    padding: 15px 20px;
    display: flex; justify-content: space-between;
    color: white; z-index: 10;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    font-family: sans-serif; font-weight: bold;
}

/* === 首屏大图 === */
.hero-section {
    width: 100%;
    cursor: pointer; 
    position: relative;
    background-color: #222;
}

.poster-wrapper { width: 100%; font-size: 0; /* 消除图片底部空隙 */ }
.promo-img { width: 100%; height: auto; display: block; }

/* 浮动按钮 */
.floating-btn {
    position: absolute; bottom: 50px; left: 50%;
    transform: translateX(-50%);
    background: #ffcc00; color: #000;
    padding: 12px 30px; border-radius: 50px;
    font-family: sans-serif; font-weight: 900; font-size: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 2px solid #fff;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

/* === 小说内容 === */
.novel-content { padding: 30px 20px; background: #fff; }

.chapter-block { margin-bottom: 30px; }

.story-header { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.tag { background: #d63031; color: white; padding: 3px 8px; border-radius: 3px; font-family: sans-serif; font-size: 10px; text-transform: uppercase; }
.story-header h2 { font-family: sans-serif; font-size: 24px; margin: 10px 0 5px; color: #2d3436; }
.author { color: #b2bec3; font-family: sans-serif; font-size: 12px; }

.chapter-block h2 {
    font-family: sans-serif; font-size: 20px; 
    color: #2d3436; margin-bottom: 15px; margin-top: 10px;
    border-left: 4px solid #ffcc00; padding-left: 10px;
}

.text-body p {
    font-size: 17px; line-height: 1.7; color: #444; 
    margin-bottom: 18px; text-align: justify;
}

/* === 伪装成内容的广告位 === */
.ad-break {
    background: #fffbf0; border: 1px dashed #ffcc00;
    padding: 15px; margin: 25px 0; border-radius: 8px;
    text-align: center; cursor: pointer;
}
.ad-break p { margin: 0; font-family: sans-serif; font-size: 14px; color: #555; }
.ad-break span { color: #d63031; font-weight: bold; text-decoration: underline; }

/* 底部下一章按钮 */
.next-btn {
    width: 100%; padding: 18px;
    background: #2d3436; color: white;
    border: none; border-radius: 8px;
    font-family: sans-serif; font-size: 16px; font-weight: bold; 
    cursor: pointer; margin-top: 10px;
}

.footer { 
    text-align: center; padding: 30px 20px; 
    color: #b2bec3; font-family: sans-serif; font-size: 11px; 
    background: #f9f9f9; border-top: 1px solid #eee;
}