.loreContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.loreHeader {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.loreHeader h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #8B0000);
    margin: 20px auto;
}

.loreIntro {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff0000;
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 5px;
}

.loreIntro p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.loreSection {
    margin-bottom: 60px;
    padding: 30px;
    background: rgba(27, 27, 27, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.loreSection h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #ff0000;
}

.loreSection h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ff6666;
}

.loreSection p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.loreSection ul {
    margin: 20px 0;
    padding-left: 40px;
}

.loreSection li {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #e0e0e0;
    position: relative;
}

.loreSection li::marker {
    color: #ff0000;
}

.loreSection strong {
    color: #ff6666;
    font-weight: 600;
}

.loreConclusion {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(255, 0, 0, 0.1));
    border: 2px solid #ff0000;
}

.choiceBox {
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #ff0000;
    padding: 25px;
    margin: 30px 0;
    border-radius: 5px;
}

.choiceTitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
    color: #ff0000;
    margin-bottom: 15px;
    font-weight: 600;
}

.choices {
    list-style: none;
    padding-left: 0;
}

.choices li {
    font-size: 1.2em;
    padding: 10px 0 10px 30px;
    position: relative;
    color: #fff;
}

.choices li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-size: 1.4em;
}

.finalNote {
    font-style: italic;
    font-size: 1.2em;
    text-align: center;
    color: #ff6666;
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loreHeader h1 {
        font-size: 2em;
    }

    .loreSection h2 {
        font-size: 1.8em;
    }

    .loreSection h3 {
        font-size: 1.4em;
    }

    .loreIntro p,
    .loreSection p,
    .loreSection li {
        font-size: 1em;
    }

    .loreContainer {
        padding: 20px 10px;
    }

    .loreSection {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .loreHeader h1 {
        font-size: 1.5em;
    }

    .loreSection h2 {
        font-size: 1.5em;
    }

    .loreSection h3 {
        font-size: 1.2em;
    }
}
