/* ===== GUIA DE CRAFT ===== */

.guia-box {
    color: #e6e6e6;
}

.guia-title {
    font-size: 24px;
    color: #ffb84d;
    margin-bottom: 10px;
}

.guia-subtitle {
    font-size: 18px;
    color: #f5c77a;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.guia-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guia-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.guia-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.guia-alerta {
    border: 1px solid #d8a24a;
    background: rgba(0,0,0,0.6);
    padding: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    border-radius: 6px;
    color: #ffd27a;
}

.guia-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.guia-btn {
    background: linear-gradient(180deg, #2b2b2b, #151515);
    border: 1px solid #d8a24a;
    color: #ffd27a;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.guia-btn:hover {
    background: #d8a24a;
    color: #000;
    transform: translateY(-2px);
}
/* ===== MODAL RPG PRISTON TALE ===== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-box {
    background: linear-gradient(180deg, #1b1b1b, #0d0d0d);
    border: 2px solid #d4a84f;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 25px;
    border-radius: 10px;
    color: #f1e3c6;
    position: relative;
    font-family: "Trebuchet MS", serif;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 18px;
    color: #ffd27a;
}

.modal-title {
    text-align: center;
    color: #ffcc66;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.modal-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #7a5c2e;
}

.recipe-box {
    background: rgba(0,0,0,0.6);
    border: 1px solid #7a5c2e;
    padding: 15px;
    margin: 10px 0;
    border-radius: 6px;
}

.recipe-box.supreme {
    border-color: #ffcc66;
    box-shadow: 0 0 10px rgba(255,200,100,0.3);
}

.recipe-box h4 {
    color: #ffd27a;
    margin-bottom: 8px;
}

.result-box {
    margin-top: 10px;
    padding: 10px;
    background: rgba(30,60,30,0.5);
    border: 1px solid #4caf50;
    border-radius: 5px;
    color: #9eff9e;
    font-weight: bold;
}

.modal-alert {
    background: rgba(80,40,0,0.6);
    border: 1px solid #d8a24a;
    padding: 15px;
    border-radius: 6px;
    color: #ffd27a;
    margin-top: 15px;
}
