/* Page Lore */
.lore-main {
    padding: 2rem;
    overflow-y: auto;
}

.lore-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    margin-left: 0.5rem;
}

.lore-content {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Bannière du chapitre */
.lore-banner {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.lore-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lore-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lore-chapter-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Séparateur */
.lore-separator {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
}

.lore-separator-image {
    width: 100%;
    max-width: 1520px;
    height: 3px;
    object-fit: contain;
}

/* Texte du lore */
.lore-text {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.lore-text p {
    margin-bottom: 1rem;
}

.lore-text p:last-child {
    margin-bottom: 0;
}

/* Pagination */
.lore-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.lore-pagination-btn {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.lore-arrow-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.lore-pagination-btn:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.lore-pagination-btn:active:not(:disabled) {
    transform: translateY(0);
}

.lore-pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lore-pagination-info {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #FFFFFF;
    min-width: 60px;
    text-align: center;
}

