.quests-panel {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 15px;
}

.quest-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    transition: border-color 0.3s;
}

.quest-item.completed {
    border-color: var(--gold);
    background: rgba(241, 196, 15, 0.05);
}

.quest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.quest-title {
    color: var(--accent);
    font-weight: bold;
    font-size: 13px;
}

.quest-progress-text {
    font-size: 11px;
    color: #888;
}

.quest-bar-container {
    height: 6px;
    background: #222;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.quest-bar-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.3s ease-out;
}

.quest-item.completed .quest-bar-fill {
    background: var(--gold);
}

.quest-desc {
    font-size: 11px;
    color: #bbb;
    margin-bottom: 8px;
}

.quest-claim-btn {
    width: 100%;
    padding: 6px;
    font-size: 11px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
}

.quest-claim-btn:hover {
    filter: brightness(1.1);
}
