.epic-saga {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.grimoire-desk {
    perspective: 1500px;
}
.grimoire-spread {
    display: flex;
    background: var(--ancient-scroll-bg);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 50px rgba(139, 115, 49, 0.2);
    border: 5px solid var(--leather-dye);
    position: relative;
    color: var(--ink-black);
}
.grimoire-spread::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 40px;
    margin-left: -20px;
    background: linear-gradient(to right, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0.2) 20%, 
        rgba(0,0,0,0.4) 50%, 
        rgba(0,0,0,0.2) 80%, 
        rgba(0,0,0,0) 100%);
    z-index: 10;
}
.grimoire-page-verso, .grimoire-page-recto {
    flex: 1;
    padding: 4rem 3rem;
    position: relative;
}
.grimoire-page-verso h1 {
    font-family: var(--runic-heading);
    font-size: 4rem;
    color: var(--leather-dye);
    line-height: 1.1;
    margin-bottom: 2rem;
}
.grimoire-page-verso p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}
.cast-spell-btn {
    display: inline-block;
    background: var(--leather-dye);
    color: var(--treasure-bright);
    padding: 15px 30px;
    font-family: var(--runic-heading);
    font-size: 1.2rem;
    border: 2px solid var(--treasure-bright);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.cast-spell-btn:hover {
    background: var(--treasure-bright);
    color: var(--leather-dye);
    box-shadow: 0 5px 25px rgba(200, 169, 81, 0.5);
}
.grimoire-illumination {
    text-align: center;
}
.grimoire-illumination img {
    width: 80%;
    border: 4px solid var(--leather-dye);
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.grimoire-illumination h4 {
    font-family: var(--runic-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.enchanted-anchor {
    color: #800000;
    font-style: italic;
    font-weight: bold;
}
.enchanted-anchor:hover {
    color: var(--leather-dye);
}
.papyrus-roll {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10"><rect width="10" height="10" fill="%23eaddc5"/></svg>') repeat;
    background-color: var(--ancient-scroll-bg);
    padding: 3rem;
    border-radius: 5px;
    border: 3px solid var(--treasure-tarnished);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    color: var(--ink-black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.papyrus-roll::before, .papyrus-roll::after {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    height: 30px;
    background: var(--leather-dye);
    border-radius: 15px;
}
.papyrus-roll::before { top: -15px; }
.papyrus-roll::after { bottom: -15px; }
.charter-decrees {
    list-style: none;
    margin-top: 2rem;
}
.charter-decrees li {
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}
.charter-decrees li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--treasure-tarnished);
}
@media (max-width: 900px) {
    .grimoire-spread { flex-direction: column; }
    .grimoire-spread::after { display: none; }
}
