body {
    background: #eaeaea;
    font-family: 'Inter', Arial, sans-serif;
}

.container {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 4px 16px rgba(19, 43, 80, .08);
    padding: 24px 32px;
}

header h1 {
    text-align: center;
    margin-top: 0;
    font-weight: 600;
    font-size: 2rem;
}

.author {
    text-align: center;
    color: #7b7b7b;
    font-size: 1rem;
    margin-bottom: 24px;
}

.chapter h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.chapter {
    margin-bottom: 28px;
}

.chapter p {
    font-size: 1.05rem;
    color: #373737;
    margin-bottom: 12px;
}

.chapter-content {
    white-space: pre-line !important;
    line-height: 1.6 !important;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 8px 0;
}

.navigation a {
    background: #f1f1f1;
    border: none;
    border-radius: 6px;
    color: #193a54;
    padding: 8px 18px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background .2s;
}

.navigation a:disabled {
    background: #eaeaea;
    color: #b3b3b3;
    cursor: not-allowed;
}

.navigation span {
    color: #7b7b7b;
    font-size: 1rem;
}

.subscribe {
    background: #eef6fc;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    margin-top: 18px;
}

.subscribe strong {
    font-size: 1.05rem;
}

.subscribe a {
    background: #4da0ee;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 24px;
    margin-top: 10px;
    box-shadow: 0 2px 6px rgba(77, 160, 238, 0.1);
    cursor: pointer;
    transition: background .2s;
}

.subscribe a:hover {
    background: #3790d7;
}

.novel-title a {
    display: inline-block;

    color: inherit;
    text-decoration: none;

    transition: transform 0.2s ease-in-out;
}

.novel-title a:hover {
    transform: scale(1.05);
}
