/* === LORE SECTION (Мир NATURERAGE) === */
.lore-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
    background: rgba(15, 17, 21, 0.3);
}

.lore-content {
    max-width: 900px;
    margin: 0 auto;
}

.lore-text {
    color: #c1c9d2;
    font-size: 1.125rem;
    line-height: 1.8;
    background: rgba(26, 28, 34, 0.6);
    border: 1px solid rgba(139, 144, 154, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.lore-text p {
    margin-bottom: 2rem;
}

.lore-text p:last-child {
    margin-bottom: 0;
}

.lore-text strong {
    color: #d6940d;
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* === Responsive === */
@media (max-width: 1365px) {
    .lore-section {
        min-height: auto;
        height: auto;
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .lore-section {
        padding: 3rem 0;
    }
    
    .lore-text {
        font-size: 1rem;
        padding: 2rem;
    }
    
    .lore-text strong {
        font-size: 1.15rem;
    }
    
    .lore-text p {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lore-section {
        padding: 2rem 0;
    }
    
    .lore-text {
        font-size: 0.95rem;
        padding: 1.5rem;
    }
    
    .lore-text strong {
        font-size: 1.1rem;
    }
}
