
/* Radial gradient background with blue/purple vignette effect */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: radial-gradient(ellipse at center, #e8f0ff 0%, #b8c8e8 60%, #8898c8 100%);
    min-height: 100vh;
}

/* Persistent header bar */
header {
    background-color: #e0e0e0;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.site-title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.site-title:hover {
    text-decoration: underline;
}

.header-links {
    display: flex;
    gap: 10px;
}

.github-btn {
    background-color: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
}

.github-btn:hover {
    background-color: #555;
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
}

.discord-btn:hover {
    background-color: #4752C4;
}

/* Main content container with white background and blue glow */
.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 30px 40px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(100, 120, 180, 0.4);
    min-height: calc(100vh - 150px);
}

/* Typography */
h1 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #333;
}

/* Standard blue links */
a {
    color: #0000EE;
    text-decoration: underline;
}

a:visited {
    color: #551A8B;
}

a:hover {
    color: #0000EE;
}

/* Yellow disclaimer box */
.disclaimer {
    background-color: #FFF8DC;
    border: 1px solid #DDD8BC;
    padding: 15px;
    margin: 20px 0;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Homepage links section */
.home-links {
    text-align: center;
    margin-bottom: 20px;
}

.home-links a {
    margin: 0 10px;
}

/* Volume list on homepage */
.volume-list {
    margin-top: 20px;
}

.volume-list a {
    display: block;
    margin: 8px 0;
    font-size: 1.1em;
}

/* Chapter list on volume pages */
.chapter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.chapter-list li {
    margin: 4px 0;
}

.chapter-list a {
    font-size: 0.95em;
}

/* Chapter navigation bar */
.chapter-nav {
    background-color: #f0f0f0;
    padding: 8px 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #ddd;
}

.chapter-nav a {
    margin: 0 15px;
}

/* Chapter content */
.content {
    text-align: left;
}

.content p {
    margin-bottom: 1em;
    text-align: justify;
}

/* Back link styling */
.back-link {
    margin-top: 30px;
    display: block;
}
