* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #000;
    background: #fff;
}

/* ── Landing Page ── */

.landing {
    max-width: 900px;
    margin: 0 auto;
}

.landing-art {
    width: 100%;
    display: block;
}

.landing-overlay {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5em 20px;
}

.landing-overlay p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1em;
}

.landing-overlay p:last-of-type {
    margin-bottom: 1.5em;
}

.book-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    padding: 12px 28px;
    transition: background 0.2s, color 0.2s;
}

.book-link:hover {
    background: #000;
    color: #fff;
}

/* ── Book Page ── */

.book-page {
    position: relative;
}

.book-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    flex-direction: column;
}

.book-bg img {
    width: 100%;
    flex: 1;
    object-fit: contain;
    object-position: center;
    opacity: 0.15;
}

.book-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 30px;
}

.book-content h1 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.book-content p {
    font-size: 1.2rem;
    line-height: 2.1;
    margin-bottom: 2em;
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.book-content .dialogue {
    margin-left: 0;
}

.book-content .footnote {
    font-size: 0.9rem;
    color: #444;
    border-top: 1px solid #ccc;
    margin-top: 2em;
    padding-top: 1em;
    line-height: 1.6;
}

.back-link {
    display: inline-block;
    margin-bottom: 2em;
    font-size: 0.95rem;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.back-link:hover {
    color: #555;
    border-color: #555;
}
