/* Lore Page Styles */
.lore-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lore-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lore-chapter {
    margin-bottom: 3rem;
}

.chapter-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #c0a080;
    margin-bottom: 1rem;
    border-bottom: 2px solid #c0a080;
    padding-bottom: 0.5rem;
}

.lore-text {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-align: justify;
    margin-bottom: 1.5rem;
}

.lore-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.lore-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #ffd700;
    border-left: 3px solid #ffd700;
    padding-left: 1rem;
    margin: 2rem 0;
}

.lore-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #c0a080;
}

.nav-button {
    padding: 0.5rem 1rem;
    background: #c0a080;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

/* Scrollbar Styling */
.lore-container::-webkit-scrollbar {
    width: 8px;
}

.lore-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

.lore-container::-webkit-scrollbar-thumb {
    background: #c0a080;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lore-container {
        margin: 1rem;
        padding: 1rem;
    }
    
    .lore-title {
        font-size: 2rem;
    }
    
    .chapter-title {
        font-size: 1.5rem;
    }
    
    .lore-text {
        font-size: 1rem;
    }
}
