@import url("../../assets/css/roseonbr.css");


.quest-container {
    max-width: 1280px;
    margin: 0 auto;
/*    background: #311b92;*/
/*    border-radius: 4px;*/
    padding: 25px;
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);*/
    color: var(--primary-text);
}

.headerQuests {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quest-title {
    text-align: center;
    color: #f8bbd0;
    font-family: "Bungee", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    filter: drop-shadow(1px 1px 1px black);
    padding-bottom: 10px;
}

.image-frame {
    border: 8px solid transparent;
    max-width: 800px;
    text-align: center;
    border-image: linear-gradient(45deg, #fff59d, #4e342e, #fff59d);
    border-image-slice: 1;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.quest-image {
    max-width: 800px;
    width: 100%;
    display: block;
}

.dialogue-container {
    background-color: rgba(30, 30, 60, 0.7);
    border-left: 4px solid #fff59d;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 8px 8px 0;
}

.npc-name {
    color: #fff59d;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 18px;
}

.dialogue-text {
    line-height: 1.6;
}

.quest-steps {
    margin-top: 20px;
    padding-left: 20px;
}

    .quest-steps li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 10px;
    }

.rewards {
    margin-top: 25px;
    background: rgba(233, 30, 99, 0.1);
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #fff59d;
}

.rewards-title {
    color: #fff59d;
    font-size: 20px;
    margin-bottom: 10px;
}